Show / Hide Table of Contents

Class EnvFromSource

Not supported by Cloud Run 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

(Optional) The ConfigMap to select from

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

(Optional) An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

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

SecretRef

(Optional) The Secret to select from

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

Implements

IDirectResponseSchema
In This Article
Back to top