| Name |
Type |
Description |
Notes |
| name |
str |
The environment variable name to be set in the container |
|
| value_from |
str |
The key of the secret in the environment's 'app-secrets' store |
|
from quantcdn.models.container_secrets_inner import ContainerSecretsInner
# TODO update the JSON string below
json = "{}"
# create an instance of ContainerSecretsInner from a JSON string
container_secrets_inner_instance = ContainerSecretsInner.from_json(json)
# print the JSON string representation of the object
print(ContainerSecretsInner.to_json())
# convert the object into a dict
container_secrets_inner_dict = container_secrets_inner_instance.to_dict()
# create an instance of ContainerSecretsInner from a dict
container_secrets_inner_from_dict = ContainerSecretsInner.from_dict(container_secrets_inner_dict)
[Back to Model list] [Back to API list] [Back to README]