Projection that may be projected along with other supported volume types. Exactly one of these fields must be set.
| 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] |
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)