Ayush Shah 8e25b4fd3a
0.4.8 ingestion - 0.6.0 branch (#1512)
* Published 0.4.8 package

* setup.py version change
2021-12-01 20:31:45 -08:00

22 lines
524 B
Python

# generated by datamodel-codegen:
# filename: schema/entity/policies/accessControl/rule.json
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations
from typing import List
from pydantic import BaseModel, Field
from .. import filters
from . import tagBased
class AccessControlRule(BaseModel):
filters: filters.Filters1
actions: List[tagBased.TagBased] = Field(
...,
description='A set of access control enforcements to take on the entities.',
min_length=1,
)