Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.78 KB

File metadata and controls

31 lines (24 loc) · 1.78 KB

V1beta2ResourceClaimConsumerReference

ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.

Properties

Name Type Description Notes
api_group str APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources. [optional]
name str Name is the name of resource being referenced.
resource str Resource is the type of resource being referenced, for example "pods".
uid str UID identifies exactly one incarnation of the resource.

Example

from kubernetes.client.models.v1beta2_resource_claim_consumer_reference import V1beta2ResourceClaimConsumerReference

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

# convert the object into a dict
v1beta2_resource_claim_consumer_reference_dict = v1beta2_resource_claim_consumer_reference_instance.to_dict()
# create an instance of V1beta2ResourceClaimConsumerReference from a dict
v1beta2_resource_claim_consumer_reference_from_dict = V1beta2ResourceClaimConsumerReference.from_dict(v1beta2_resource_claim_consumer_reference_dict)

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