You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the subject to check. <br/> Example: `user:..uuidofuser..`
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`
permission
str
the permission name to check. <br/> Example: `get`, `list`, `compute.instance.create`
Example
fromfrontier_api.models.v1beta1_check_federated_resource_permission_requestimportV1beta1CheckFederatedResourcePermissionRequest# TODO update the JSON string belowjson="{}"# create an instance of V1beta1CheckFederatedResourcePermissionRequest from a JSON stringv1beta1_check_federated_resource_permission_request_instance=V1beta1CheckFederatedResourcePermissionRequest.from_json(json)
# print the JSON string representation of the objectprintV1beta1CheckFederatedResourcePermissionRequest.to_json()
# convert the object into a dictv1beta1_check_federated_resource_permission_request_dict=v1beta1_check_federated_resource_permission_request_instance.to_dict()
# create an instance of V1beta1CheckFederatedResourcePermissionRequest from a dictv1beta1_check_federated_resource_permission_request_form_dict=v1beta1_check_federated_resource_permission_request.from_dict(v1beta1_check_federated_resource_permission_request_dict)