Show / Hide Table of Contents

Class EnvVarSource

Cloud Run fully managed: not supported Cloud Run on GKE: supported EnvVarSource represents a source for the value of an EnvVar.

Inheritance
System.Object
EnvVarSource
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 EnvVarSource : IDirectResponseSchema

Properties

ConfigMapKeyRef

Cloud Run fully managed: not supported Cloud Run on GKE: supported Selects a key of a ConfigMap. +optional

Declaration
[JsonProperty("configMapKeyRef")]
public virtual ConfigMapKeySelector ConfigMapKeyRef { get; set; }
Property Value
Type Description
ConfigMapKeySelector

ETag

The ETag of the item.

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

SecretKeyRef

Cloud Run fully managed: not supported Cloud Run on GKE: supported Selects a key of a secret in the pod's namespace +optional

Declaration
[JsonProperty("secretKeyRef")]
public virtual SecretKeySelector SecretKeyRef { get; set; }
Property Value
Type Description
SecretKeySelector

Implements

IDirectResponseSchema
Back to top