Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.32 KB

File metadata and controls

31 lines (24 loc) · 1.32 KB

V1BoundObjectReference

BoundObjectReference is a reference to an object that a token is bound to.

Properties

Name Type Description Notes
api_version str apiVersion is API version of the referent. [optional]
kind str kind of the referent. Valid kinds are 'Pod' and 'Secret'. [optional]
name str name of the referent. [optional]
uid str uid of the referent. [optional]

Example

from kubernetes.client.models.v1_bound_object_reference import V1BoundObjectReference

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

# convert the object into a dict
v1_bound_object_reference_dict = v1_bound_object_reference_instance.to_dict()
# create an instance of V1BoundObjectReference from a dict
v1_bound_object_reference_from_dict = V1BoundObjectReference.from_dict(v1_bound_object_reference_dict)

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