Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.58 KB

File metadata and controls

33 lines (26 loc) · 1.58 KB

V1VolumeProjection

Projection that may be projected along with other supported volume types. Exactly one of these fields must be set.

Properties

Name Type Description Notes
cluster_trust_bundle V1ClusterTrustBundleProjection [optional]
config_map V1ConfigMapProjection [optional]
downward_api V1DownwardAPIProjection [optional]
pod_certificate V1PodCertificateProjection [optional]
secret V1SecretProjection [optional]
service_account_token V1ServiceAccountTokenProjection [optional]

Example

from kubernetes.client.models.v1_volume_projection import V1VolumeProjection

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

# convert the object into a dict
v1_volume_projection_dict = v1_volume_projection_instance.to_dict()
# create an instance of V1VolumeProjection from a dict
v1_volume_projection_from_dict = V1VolumeProjection.from_dict(v1_volume_projection_dict)

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