-
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.
Add policy exclusions and config version
- Loading branch information
Showing
40 changed files
with
3,420 additions
and
193 deletions.
There are no files selected for viewing
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 @@ | ||
# AddTenantPolicyExclusionsAPIRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**exclusions** | [**TenantPolicyExclusions**](TenantPolicyExclusions.md) | The exclusions to add. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.add_tenant_policy_exclusions_api_request import AddTenantPolicyExclusionsAPIRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddTenantPolicyExclusionsAPIRequest from a JSON string | ||
add_tenant_policy_exclusions_api_request_instance = AddTenantPolicyExclusionsAPIRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddTenantPolicyExclusionsAPIRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
add_tenant_policy_exclusions_api_request_dict = add_tenant_policy_exclusions_api_request_instance.to_dict() | ||
# create an instance of AddTenantPolicyExclusionsAPIRequest from a dict | ||
add_tenant_policy_exclusions_api_request_form_dict = add_tenant_policy_exclusions_api_request.from_dict(add_tenant_policy_exclusions_api_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,31 @@ | ||
# AddTenantPolicyExclusionsRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**exclusions** | [**TenantPolicyExclusions**](TenantPolicyExclusions.md) | The exclusions to add. | | ||
**tenant_id** | **str** | The id of the tenant. | | ||
**policy_id** | **str** | The id of the tenant policy. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.add_tenant_policy_exclusions_request import AddTenantPolicyExclusionsRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddTenantPolicyExclusionsRequest from a JSON string | ||
add_tenant_policy_exclusions_request_instance = AddTenantPolicyExclusionsRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddTenantPolicyExclusionsRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
add_tenant_policy_exclusions_request_dict = add_tenant_policy_exclusions_request_instance.to_dict() | ||
# create an instance of AddTenantPolicyExclusionsRequest from a dict | ||
add_tenant_policy_exclusions_request_form_dict = add_tenant_policy_exclusions_request.from_dict(add_tenant_policy_exclusions_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,34 @@ | ||
# AddTenantPolicyExclusionsResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **str** | The unique identifier of the tenant policy setting. | | ||
**policy_id** | **str** | The id of the tenant policy. | | ||
**config_overrides** | **object** | | [optional] | ||
**state** | [**TenantPolicyState**](TenantPolicyState.md) | The state of the policy template. | | ||
**version** | **int** | The version of the tenant policy. | | ||
**exclusions** | [**TenantPolicyExclusions**](TenantPolicyExclusions.md) | The exclusions for the tenant policy. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.add_tenant_policy_exclusions_response import AddTenantPolicyExclusionsResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddTenantPolicyExclusionsResponse from a JSON string | ||
add_tenant_policy_exclusions_response_instance = AddTenantPolicyExclusionsResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddTenantPolicyExclusionsResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
add_tenant_policy_exclusions_response_dict = add_tenant_policy_exclusions_response_instance.to_dict() | ||
# create an instance of AddTenantPolicyExclusionsResponse from a dict | ||
add_tenant_policy_exclusions_response_form_dict = add_tenant_policy_exclusions_response.from_dict(add_tenant_policy_exclusions_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
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 @@ | ||
# OverrideTenantPolicyExclusionsAPIRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**exclusions** | [**TenantPolicyExclusions**](TenantPolicyExclusions.md) | The exclusions to add. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.override_tenant_policy_exclusions_api_request import OverrideTenantPolicyExclusionsAPIRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OverrideTenantPolicyExclusionsAPIRequest from a JSON string | ||
override_tenant_policy_exclusions_api_request_instance = OverrideTenantPolicyExclusionsAPIRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OverrideTenantPolicyExclusionsAPIRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
override_tenant_policy_exclusions_api_request_dict = override_tenant_policy_exclusions_api_request_instance.to_dict() | ||
# create an instance of OverrideTenantPolicyExclusionsAPIRequest from a dict | ||
override_tenant_policy_exclusions_api_request_form_dict = override_tenant_policy_exclusions_api_request.from_dict(override_tenant_policy_exclusions_api_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,31 @@ | ||
# OverrideTenantPolicyExclusionsRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**exclusions** | [**TenantPolicyExclusions**](TenantPolicyExclusions.md) | The exclusions to add. | | ||
**tenant_id** | **str** | The id of the tenant. | | ||
**policy_id** | **str** | The id of the tenant policy. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.override_tenant_policy_exclusions_request import OverrideTenantPolicyExclusionsRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OverrideTenantPolicyExclusionsRequest from a JSON string | ||
override_tenant_policy_exclusions_request_instance = OverrideTenantPolicyExclusionsRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OverrideTenantPolicyExclusionsRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
override_tenant_policy_exclusions_request_dict = override_tenant_policy_exclusions_request_instance.to_dict() | ||
# create an instance of OverrideTenantPolicyExclusionsRequest from a dict | ||
override_tenant_policy_exclusions_request_form_dict = override_tenant_policy_exclusions_request.from_dict(override_tenant_policy_exclusions_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) | ||
|
||
|
Oops, something went wrong.