NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | path is the URL path of the request | [optional] |
| verb | str | verb is the standard HTTP verb | [optional] |
from kubernetes.client.models.v1_non_resource_attributes import V1NonResourceAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of V1NonResourceAttributes from a JSON string
v1_non_resource_attributes_instance = V1NonResourceAttributes.from_json(json)
# print the JSON string representation of the object
print(V1NonResourceAttributes.to_json())
# convert the object into a dict
v1_non_resource_attributes_dict = v1_non_resource_attributes_instance.to_dict()
# create an instance of V1NonResourceAttributes from a dict
v1_non_resource_attributes_from_dict = V1NonResourceAttributes.from_dict(v1_non_resource_attributes_dict)