-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
652f0d1
commit 9df5eaf
Showing
1,862 changed files
with
194,213 additions
and
13,374 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# APIGetFeaturesByFiltersRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**scope** | [**TenantFeatureScope**](TenantFeatureScope.md) | | [optional] | ||
**entity_id** | **List[str]** | | [optional] | ||
**feature_name** | **str** | | [optional] | ||
**is_enabled** | **bool** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.api_get_features_by_filters_request import APIGetFeaturesByFiltersRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of APIGetFeaturesByFiltersRequest from a JSON string | ||
api_get_features_by_filters_request_instance = APIGetFeaturesByFiltersRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(APIGetFeaturesByFiltersRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
api_get_features_by_filters_request_dict = api_get_features_by_filters_request_instance.to_dict() | ||
# create an instance of APIGetFeaturesByFiltersRequest from a dict | ||
api_get_features_by_filters_request_form_dict = api_get_features_by_filters_request.from_dict(api_get_features_by_filters_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# APIUpdateFeatureStatusEnabledRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **str** | | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.api_update_feature_status_enabled_request import APIUpdateFeatureStatusEnabledRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of APIUpdateFeatureStatusEnabledRequest from a JSON string | ||
api_update_feature_status_enabled_request_instance = APIUpdateFeatureStatusEnabledRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(APIUpdateFeatureStatusEnabledRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
api_update_feature_status_enabled_request_dict = api_update_feature_status_enabled_request_instance.to_dict() | ||
# create an instance of APIUpdateFeatureStatusEnabledRequest from a dict | ||
api_update_feature_status_enabled_request_form_dict = api_update_feature_status_enabled_request.from_dict(api_update_feature_status_enabled_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# APIUpdateFeatureStatusUpdateResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**feature** | [**TenantFeature**](TenantFeature.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.api_update_feature_status_update_response import APIUpdateFeatureStatusUpdateResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of APIUpdateFeatureStatusUpdateResponse from a JSON string | ||
api_update_feature_status_update_response_instance = APIUpdateFeatureStatusUpdateResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(APIUpdateFeatureStatusUpdateResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
api_update_feature_status_update_response_dict = api_update_feature_status_update_response_instance.to_dict() | ||
# create an instance of APIUpdateFeatureStatusUpdateResponse from a dict | ||
api_update_feature_status_update_response_form_dict = api_update_feature_status_update_response.from_dict(api_update_feature_status_update_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# AccountId | ||
|
||
Account Id managing the resource | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.account_id import AccountId | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AccountId from a JSON string | ||
account_id_instance = AccountId.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AccountId.to_json()) | ||
|
||
# convert the object into a dict | ||
account_id_dict = account_id_instance.to_dict() | ||
# create an instance of AccountId from a dict | ||
account_id_form_dict = account_id.from_dict(account_id_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# AccountName | ||
|
||
Account name | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.account_name import AccountName | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AccountName from a JSON string | ||
account_name_instance = AccountName.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AccountName.to_json()) | ||
|
||
# convert the object into a dict | ||
account_name_dict = account_name_instance.to_dict() | ||
# create an instance of AccountName from a dict | ||
account_name_form_dict = account_name.from_dict(account_name_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# AgentType | ||
|
||
Enum representing the type of agent. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# AuthorRole | ||
|
||
Enum representing the role of a message author. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# CloudMetadataFilters | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**type** | [**List[CloudMetadataType]**](CloudMetadataType.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.cloud_metadata_filters import CloudMetadataFilters | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CloudMetadataFilters from a JSON string | ||
cloud_metadata_filters_instance = CloudMetadataFilters.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CloudMetadataFilters.to_json()) | ||
|
||
# convert the object into a dict | ||
cloud_metadata_filters_dict = cloud_metadata_filters_instance.to_dict() | ||
# create an instance of CloudMetadataFilters from a dict | ||
cloud_metadata_filters_form_dict = cloud_metadata_filters.from_dict(cloud_metadata_filters_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# CloudMetadataType | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# ConnectionStatus | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# ConnectionType | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.