Skip to content

Commit edcf1ee

Browse files
committed
chore: update Python SDK from latest OpenAPI specification
1 parent 09f6928 commit edcf1ee

File tree

299 files changed

+3994
-3865
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

299 files changed

+3994
-3865
lines changed

docs/AttributeType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AttributeType
22

3-
Enumerates the types of attribute. - ATTRIBUTE_TYPE_BOOLEAN: A boolean attribute type. - ATTRIBUTE_TYPE_BOOLEAN_ARRAY: A boolean array attribute type. - ATTRIBUTE_TYPE_STRING: A string attribute type. - ATTRIBUTE_TYPE_STRING_ARRAY: A string array attribute type. - ATTRIBUTE_TYPE_INTEGER: An integer attribute type. - ATTRIBUTE_TYPE_INTEGER_ARRAY: An integer array attribute type. - ATTRIBUTE_TYPE_DOUBLE: A double attribute type. - ATTRIBUTE_TYPE_DOUBLE_ARRAY: A double array attribute type.
3+
Enumerates the types of attribute. - ATTRIBUTE_TYPE_UNSPECIFIED: Not specified attribute type. This is the default value. - ATTRIBUTE_TYPE_BOOLEAN: A boolean attribute type. - ATTRIBUTE_TYPE_BOOLEAN_ARRAY: A boolean array attribute type. - ATTRIBUTE_TYPE_STRING: A string attribute type. - ATTRIBUTE_TYPE_STRING_ARRAY: A string array attribute type. - ATTRIBUTE_TYPE_INTEGER: An integer attribute type. - ATTRIBUTE_TYPE_INTEGER_ARRAY: An integer array attribute type. - ATTRIBUTE_TYPE_DOUBLE: A double attribute type. - ATTRIBUTE_TYPE_DOUBLE_ARRAY: A double array attribute type.
44

55
## Properties
66

docs/CheckResult.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CheckResult
22

3-
Enumerates results of a check operation. - CHECK_RESULT_ALLOWED: Represents a successful check (the check allowed the operation). - CHECK_RESULT_DENIED: Represents a failed check (the check denied the operation).
3+
Enumerates results of a check operation. - CHECK_RESULT_UNSPECIFIED: Not specified check result. This is the default value. - CHECK_RESULT_ALLOWED: Represents a successful check (the check allowed the operation). - CHECK_RESULT_DENIED: Represents a failed check (the check denied the operation).
44

55
## Properties
66

docs/Component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Component
22

3-
CEL component specifier. - COMPONENT_PARSER: Parser. Converts a CEL string to an AST. - COMPONENT_TYPE_CHECKER: Type checker. Checks that references in an AST are defined and types agree. - COMPONENT_RUNTIME: Runtime. Evaluates a parsed and optionally checked CEL AST against a context.
3+
CEL component specifier. - COMPONENT_UNSPECIFIED: Unspecified, default. - COMPONENT_PARSER: Parser. Converts a CEL string to an AST. - COMPONENT_TYPE_CHECKER: Type checker. Checks that references in an AST are defined and types agree. - COMPONENT_RUNTIME: Runtime. Evaluates a parsed and optionally checked CEL AST against a context.
44

55
## Properties
66

docs/DataChangeOperation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DataChangeOperation
22

3-
- OPERATION_CREATE: Creation operation. - OPERATION_DELETE: Deletion operation.
3+
- OPERATION_UNSPECIFIED: Default operation, not specified. - OPERATION_CREATE: Creation operation. - OPERATION_DELETE: Deletion operation.
44

55
## Properties
66

docs/EntityDefinitionReference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# EntityDefinitionReference
22

3-
The Reference enum specifies whether a name pertains to a relation, permission, or attribute. - REFERENCE_RELATION: Indicates that the name refers to a relation. - REFERENCE_PERMISSION: Indicates that the name refers to a permission. - REFERENCE_ATTRIBUTE: Indicates that the name refers to an attribute.
3+
The Reference enum specifies whether a name pertains to a relation, permission, or attribute. - REFERENCE_UNSPECIFIED: Default, unspecified reference. - REFERENCE_RELATION: Indicates that the name refers to a relation. - REFERENCE_PERMISSION: Indicates that the name refers to a permission. - REFERENCE_ATTRIBUTE: Indicates that the name refers to an attribute.
44

55
## Properties
66

docs/NullValue.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# NullValue
2+
3+
`NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value.
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

docs/PrimitiveType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PrimitiveType
22

3-
CEL primitive types. - BOOL: Boolean type. - INT64: Int64 type. Proto-based integer values are widened to int64. - UINT64: Uint64 type. Proto-based unsigned integer values are widened to uint64. - DOUBLE: Double type. Proto-based float values are widened to double values. - STRING: String type. - BYTES: Bytes type.
3+
CEL primitive types. - PRIMITIVE_TYPE_UNSPECIFIED: Unspecified type. - BOOL: Boolean type. - INT64: Int64 type. Proto-based integer values are widened to int64. - UINT64: Uint64 type. Proto-based unsigned integer values are widened to uint64. - DOUBLE: Double type. Proto-based float values are widened to double values. - STRING: String type. - BYTES: Bytes type.
44

55
## Properties
66

docs/RewriteOperation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RewriteOperation
22

3-
Operation enum includes potential rewrite operations. OPERATION_UNION: Represents a union operation. OPERATION_INTERSECTION: Represents an intersection operation. OPERATION_EXCLUSION: Represents an exclusion operation. - OPERATION_UNION: Represents a union operation. - OPERATION_INTERSECTION: Represents an intersection operation. - OPERATION_EXCLUSION: Represents an exclusion operation.
3+
Operation enum includes potential rewrite operations. OPERATION_UNION: Represents a union operation. OPERATION_INTERSECTION: Represents an intersection operation. OPERATION_EXCLUSION: Represents an exclusion operation. - OPERATION_UNSPECIFIED: Default, unspecified operation. - OPERATION_UNION: Represents a union operation. - OPERATION_INTERSECTION: Represents an intersection operation. - OPERATION_EXCLUSION: Represents an exclusion operation.
44

55
## Properties
66

docs/SchemaDefinitionReference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SchemaDefinitionReference
22

3-
The Reference enum helps distinguish whether a name corresponds to an entity or a rule. - REFERENCE_ENTITY: Indicates that the name refers to an entity. - REFERENCE_RULE: Indicates that the name refers to a rule.
3+
The Reference enum helps distinguish whether a name corresponds to an entity or a rule. - REFERENCE_UNSPECIFIED: Default, unspecified reference. - REFERENCE_ENTITY: Indicates that the name refers to an entity. - REFERENCE_RULE: Indicates that the name refers to a rule.
44

55
## Properties
66

docs/WellKnownType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WellKnownType
22

3-
Well-known protobuf types treated with first-class support in CEL. - ANY: Well-known protobuf.Any type. Any types are a polymorphic message type. During type-checking they are treated like `DYN` types, but at runtime they are resolved to a specific message type specified at evaluation time. - TIMESTAMP: Well-known protobuf.Timestamp type, internally referenced as `timestamp`. - DURATION: Well-known protobuf.Duration type, internally referenced as `duration`.
3+
Well-known protobuf types treated with first-class support in CEL. - WELL_KNOWN_TYPE_UNSPECIFIED: Unspecified type. - ANY: Well-known protobuf.Any type. Any types are a polymorphic message type. During type-checking they are treated like `DYN` types, but at runtime they are resolved to a specific message type specified at evaluation time. - TIMESTAMP: Well-known protobuf.Timestamp type, internally referenced as `timestamp`. - DURATION: Well-known protobuf.Duration type, internally referenced as `duration`.
44

55
## Properties
66

0 commit comments

Comments
 (0)