Skip to content

Commit 8f98fc9

Browse files
author
GitHub Actions Bot
committed
Update python SDK from OpenAPI changes
1 parent a87d29d commit 8f98fc9

File tree

276 files changed

+503
-326
lines changed

Some content is hidden

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

276 files changed

+503
-326
lines changed

docs/Argument.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Argument defines the type of argument in a Call. It can be either a ComputedAttr
77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**computed_attribute** | [**ComputedAttribute**](ComputedAttribute.md) | | [optional]
10-
**context_attribute** | [**ContextAttribute**](ContextAttribute.md) | | [optional]
1110

1211
## Example
1312

docs/LookupEntityBody.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ Name | Type | Description | Notes
1111
**permission** | **str** | Name of the permission to check, required, must start with a letter and can include alphanumeric and underscore, max 64 bytes. | [optional]
1212
**subject** | [**Subject**](Subject.md) | | [optional]
1313
**context** | [**Context**](Context.md) | | [optional]
14-
**page_size** | **int** | page_size is the number of tenants to be returned in the response. The value should be between 1 and 100. | [optional]
14+
**scope** | [**Dict[str, StringArrayValue]**](StringArrayValue.md) | Scope: A map that associates entity types with lists of identifiers. Each entry helps filter requests by specifying which entities are relevant to the operation. | [optional]
15+
**page_size** | **int** | page_size is the number of entities to be returned in the response. The value should be between 1 and 100. | [optional]
1516
**continuous_token** | **str** | continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. | [optional]
1617

1718
## Example

docs/LookupEntityStreamBody.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ Name | Type | Description | Notes
1111
**permission** | **str** | Name of the permission to check, required, must start with a letter and can include alphanumeric and underscore, max 64 bytes. | [optional]
1212
**subject** | [**Subject**](Subject.md) | | [optional]
1313
**context** | [**Context**](Context.md) | | [optional]
14-
**page_size** | **int** | page_size is the number of tenants to be returned in the response. The value should be between 1 and 100. | [optional]
14+
**scope** | [**Dict[str, StringArrayValue]**](StringArrayValue.md) | Scope: A map that associates entity types with lists of identifiers. Each entry helps filter requests by specifying which entities are relevant to the operation. | [optional]
15+
**page_size** | **int** | page_size is the number of entities to be returned in the response. The value should be between 1 and 100. | [optional]
1516
**continuous_token** | **str** | continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. | [optional]
1617

1718
## Example

docs/LookupSubjectBody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**permission** | **str** | Permission to be checked, can be a permission or relation. Required, and must match the pattern \"^([a-zA-Z][a-zA-Z0-9_]{1,62}[a-zA-Z0-9])$\", max 64 bytes. | [optional]
1212
**subject_reference** | [**RelationReference**](RelationReference.md) | | [optional]
1313
**context** | [**Context**](Context.md) | | [optional]
14-
**page_size** | **int** | page_size is the number of tenants to be returned in the response. The value should be between 1 and 100. | [optional]
14+
**page_size** | **int** | page_size is the number of subjects to be returned in the response. The value should be between 1 and 100. | [optional]
1515
**continuous_token** | **str** | continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. | [optional]
1616

1717
## Example

docs/SchemaListBody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SchemaListRequest is the request message for the List method in the Schema servi
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**page_size** | **int** | page_size is the number of tenants to be returned in the response. The value should be between 1 and 100. | [optional]
9+
**page_size** | **int** | page_size is the number of schemas to be returned in the response. The value should be between 1 and 100. | [optional]
1010
**continuous_token** | **str** | continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. | [optional]
1111

1212
## Example

docs/StringArrayValue.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# StringArrayValue
2+
3+
Wrapper for an array of strings.
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**data** | **List[str]** | The array of strings. | [optional]
10+
11+
## Example
12+
13+
```python
14+
from permify.models.string_array_value import StringArrayValue
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of StringArrayValue from a JSON string
19+
string_array_value_instance = StringArrayValue.from_json(json)
20+
# print the JSON string representation of the object
21+
print(StringArrayValue.to_json())
22+
23+
# convert the object into a dict
24+
string_array_value_dict = string_array_value_instance.to_dict()
25+
# create an instance of StringArrayValue from a dict
26+
string_array_value_from_dict = StringArrayValue.from_dict(string_array_value_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+

permify/api/bundle_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.0.7
8+
The version of the OpenAPI document: v1.1.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/data_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.0.7
8+
The version of the OpenAPI document: v1.1.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/health_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.0.7
8+
The version of the OpenAPI document: v1.1.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/permission_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.0.7
8+
The version of the OpenAPI document: v1.1.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)