Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.21 KB

File metadata and controls

29 lines (22 loc) · 1.21 KB

V1NonResourceAttributes

NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface

Properties

Name Type Description Notes
path str path is the URL path of the request [optional]
verb str verb is the standard HTTP verb [optional]

Example

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)

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