Show / Hide Table of Contents

Class EnvFromSource

EnvFromSource represents the source of a set of ConfigMaps

Inheritance
System.Object
EnvFromSource
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class EnvFromSource : IDirectResponseSchema

Properties

ConfigMapRef

The ConfigMap to select from +optional

Declaration
[JsonProperty("configMapRef")]
public virtual ConfigMapEnvSource ConfigMapRef { get; set; }
Property Value
Type Description
ConfigMapEnvSource

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Prefix

An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. +optional

Declaration
[JsonProperty("prefix")]
public virtual string Prefix { get; set; }
Property Value
Type Description
System.String

SecretRef

The Secret to select from +optional

Declaration
[JsonProperty("secretRef")]
public virtual SecretEnvSource SecretRef { get; set; }
Property Value
Type Description
SecretEnvSource

Implements

IDirectResponseSchema
Back to top