BoundObjectReference is a reference to an object that a token is bound to.
| 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] |
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)