-
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.
Merge pull request #8 from astuto-ai/resource_id_in_resource_catalog
addded identifier key as resource id in service catalog model
- Loading branch information
Showing
32 changed files
with
895 additions
and
64 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
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
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,43 @@ | ||
# TenantPolicyForPolicyWithSetting | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**parent_ptp_id** | **str** | The id of the parent policy template pack. | | ||
**title** | **str** | The title of the policy template. | | ||
**alias** | **str** | The alias of the policy template. | | ||
**description** | **str** | The description of the policy template. | [optional] | ||
**services** | [**List[TenantPolicyForPolicyWithSettingServicesInner]**](TenantPolicyForPolicyWithSettingServicesInner.md) | The list of services display names associated the policy template. | | ||
**execution_type** | [**PolicyExecutionType**](PolicyExecutionType.md) | The execution type of the policy template. | | ||
**details** | [**PolicyTemplateDetailsOutput**](PolicyTemplateDetailsOutput.md) | The details of the policy template. | | ||
**description2** | **str** | The description2 of the policy template. | [optional] | ||
**resource_type** | **str** | The resource type of the policy template. | | ||
**recommendation_details** | [**PolicyTemplateRecommendationDetailsOutput**](PolicyTemplateRecommendationDetailsOutput.md) | The recommendation details for the policy template. | | ||
**policy_template_id** | **str** | The id of the policy template. | | ||
**category** | [**PolicyCategory**](PolicyCategory.md) | The category of the policy template. | | ||
**provider** | [**Provider**](Provider.md) | The cloud provider of the policy template. | | ||
**id** | **str** | The unique identifier of the tenant policy. | | ||
**state** | [**TenantPolicySystemState**](TenantPolicySystemState.md) | The state of the tenant policy. | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.tenant_policy_for_policy_with_setting import TenantPolicyForPolicyWithSetting | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of TenantPolicyForPolicyWithSetting from a JSON string | ||
tenant_policy_for_policy_with_setting_instance = TenantPolicyForPolicyWithSetting.from_json(json) | ||
# print the JSON string representation of the object | ||
print(TenantPolicyForPolicyWithSetting.to_json()) | ||
|
||
# convert the object into a dict | ||
tenant_policy_for_policy_with_setting_dict = tenant_policy_for_policy_with_setting_instance.to_dict() | ||
# create an instance of TenantPolicyForPolicyWithSetting from a dict | ||
tenant_policy_for_policy_with_setting_form_dict = tenant_policy_for_policy_with_setting.from_dict(tenant_policy_for_policy_with_setting_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,35 @@ | ||
# TenantPolicyForPolicyWithSettingServicesInner | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **str** | | | ||
**name** | **str** | | | ||
**product_code** | **str** | | | ||
**display_name** | **str** | | | ||
**description** | **str** | | | ||
**resource_types** | [**List[ResourceType]**](ResourceType.md) | | [optional] [default to []] | ||
**features** | [**Features**](Features.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.tenant_policy_for_policy_with_setting_services_inner import TenantPolicyForPolicyWithSettingServicesInner | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of TenantPolicyForPolicyWithSettingServicesInner from a JSON string | ||
tenant_policy_for_policy_with_setting_services_inner_instance = TenantPolicyForPolicyWithSettingServicesInner.from_json(json) | ||
# print the JSON string representation of the object | ||
print(TenantPolicyForPolicyWithSettingServicesInner.to_json()) | ||
|
||
# convert the object into a dict | ||
tenant_policy_for_policy_with_setting_services_inner_dict = tenant_policy_for_policy_with_setting_services_inner_instance.to_dict() | ||
# create an instance of TenantPolicyForPolicyWithSettingServicesInner from a dict | ||
tenant_policy_for_policy_with_setting_services_inner_form_dict = tenant_policy_for_policy_with_setting_services_inner.from_dict(tenant_policy_for_policy_with_setting_services_inner_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,30 @@ | ||
# TenantVerifyCurBucketAPIRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**cur_bucket_config** | [**CurBucketConfig**](CurBucketConfig.md) | cur bucket config | | ||
**cloud_id** | **str** | cloud id | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.tenant_verify_cur_bucket_api_request import TenantVerifyCurBucketAPIRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of TenantVerifyCurBucketAPIRequest from a JSON string | ||
tenant_verify_cur_bucket_api_request_instance = TenantVerifyCurBucketAPIRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(TenantVerifyCurBucketAPIRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
tenant_verify_cur_bucket_api_request_dict = tenant_verify_cur_bucket_api_request_instance.to_dict() | ||
# create an instance of TenantVerifyCurBucketAPIRequest from a dict | ||
tenant_verify_cur_bucket_api_request_form_dict = tenant_verify_cur_bucket_api_request.from_dict(tenant_verify_cur_bucket_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
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
Oops, something went wrong.