Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvVar ¶
type EnvVar struct {
// Name of the environment variable
//
// required: true
// example: VAR1
Name string `json:"name"`
// Value of the environment variable
//
// required: false
// example: value1
Value string `json:"value"`
// Metadata for the environment variable
//
// required: false
Metadata *EnvVarMetadata `json:"metadata,omitempty"`
}
EnvVar environment variable with metadata swagger:model EnvVar
type EnvVarMetadata ¶
type EnvVarMetadata struct {
// Value of the environment variable in radixconfig.yaml
//
// required: false
// example: value1
RadixConfigValue string `json:"radixConfigValue"`
}
EnvVarMetadata Environment variable metadata, holding state of creating or changing of value in Radix console swagger:model EnvVarMetadata
type EnvVarParameter ¶
type EnvVarParameter struct {
// Name of the environment variable
//
// required: true
// example: VAR1
Name string `json:"name"`
// Value a new value of the environment variable
//
// required: true
// example: value1
Value string `json:"value"`
}
EnvVarParameter describes an environment variable swagger:model EnvVarParameter
Click to show internal directories.
Click to hide internal directories.