Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.72 KB

V1beta1BatchCheckPermissionBody.md

File metadata and controls

29 lines (21 loc) · 1.72 KB

V1beta1BatchCheckPermissionBody

Properties

Name Type Description Notes
permission str the permission name to check. <br/> Example: `get` or `list`
resource str `namespace:uuid` or `namespace:name` of the org or project, and `namespace:urn` of a resource under a project. In case of an org/project either provide the complete namespace (app/organization) or Frontier can also parse aliases for the same as `org` or `project`. <br/> Example: `organization:92f69c3a-334b-4f25-90b8-4d4f3be6b825` or `app/project:project-name` or `compute/instance:92f69c3a-334b-4f25-90b8-4d4f3be6b825` [optional]

Example

from frontier_api.models.v1beta1_batch_check_permission_body import V1beta1BatchCheckPermissionBody

# TODO update the JSON string below
json = "{}"
# create an instance of V1beta1BatchCheckPermissionBody from a JSON string
v1beta1_batch_check_permission_body_instance = V1beta1BatchCheckPermissionBody.from_json(json)
# print the JSON string representation of the object
print V1beta1BatchCheckPermissionBody.to_json()

# convert the object into a dict
v1beta1_batch_check_permission_body_dict = v1beta1_batch_check_permission_body_instance.to_dict()
# create an instance of V1beta1BatchCheckPermissionBody from a dict
v1beta1_batch_check_permission_body_form_dict = v1beta1_batch_check_permission_body.from_dict(v1beta1_batch_check_permission_body_dict)

[Back to Model list] [Back to API list] [Back to README]