Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.19 KB

File metadata and controls

29 lines (22 loc) · 1.19 KB

V1SecretReference

SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

Properties

Name Type Description Notes
name str name is unique within a namespace to reference a secret resource. [optional]
namespace str namespace defines the space within which the secret name must be unique. [optional]

Example

from kubernetes.client.models.v1_secret_reference import V1SecretReference

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

# convert the object into a dict
v1_secret_reference_dict = v1_secret_reference_instance.to_dict()
# create an instance of V1SecretReference from a dict
v1_secret_reference_from_dict = V1SecretReference.from_dict(v1_secret_reference_dict)

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