| Name | Type | Description | Notes |
|---|---|---|---|
| action_filter | ScopeBinding | [optional] | |
| application_ids | List[ScopeBinding] | ||
| business_perspective_ids | List[ScopeBinding] | ||
| infra_dfq_filter | ScopeBinding | ||
| kubernetes_cluster_uuids | List[ScopeBinding] | ||
| kubernetes_namespace_uids | List[ScopeBinding] | ||
| mobile_app_ids | List[ScopeBinding] | ||
| permissions | List[str] | ||
| restricted_application_filter | ApiRestrictedApplicationFilter | [optional] | |
| slo_ids | List[ScopeBinding] | ||
| synthetic_credential_keys | List[ScopeBinding] | ||
| synthetic_test_ids | List[ScopeBinding] | ||
| website_ids | List[ScopeBinding] |
from instana_client.models.api_permission_set import ApiPermissionSet
# TODO update the JSON string below
json = "{}"
# create an instance of ApiPermissionSet from a JSON string
api_permission_set_instance = ApiPermissionSet.from_json(json)
# print the JSON string representation of the object
print(ApiPermissionSet.to_json())
# convert the object into a dict
api_permission_set_dict = api_permission_set_instance.to_dict()
# create an instance of ApiPermissionSet from a dict
api_permission_set_from_dict = ApiPermissionSet.from_dict(api_permission_set_dict)