ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
| Name | Type | Description | Notes |
|---|---|---|---|
| field_selector | V1FieldSelectorAttributes | [optional] | |
| group | str | group is the API Group of the Resource. "*" means all. | [optional] |
| label_selector | V1LabelSelectorAttributes | [optional] | |
| name | str | name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all. | [optional] |
| namespace | str | namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview | [optional] |
| resource | str | resource is one of the existing resource types. "*" means all. | [optional] |
| subresource | str | subresource is one of the existing resource types. "" means none. | [optional] |
| verb | str | verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all. | [optional] |
| version | str | version is the API Version of the Resource. "*" means all. | [optional] |
from kubernetes.client.models.v1_resource_attributes import V1ResourceAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of V1ResourceAttributes from a JSON string
v1_resource_attributes_instance = V1ResourceAttributes.from_json(json)
# print the JSON string representation of the object
print(V1ResourceAttributes.to_json())
# convert the object into a dict
v1_resource_attributes_dict = v1_resource_attributes_instance.to_dict()
# create an instance of V1ResourceAttributes from a dict
v1_resource_attributes_from_dict = V1ResourceAttributes.from_dict(v1_resource_attributes_dict)