Show / Hide Table of Contents

Class ConfigurationSpec

ConfigurationSpec holds the desired state of the Configuration (from the client).

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

Properties

ETag

The ETag of the item.

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

Generation

Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is the sequence number containing the latest generation of the desired state. Read-only.

Declaration
[JsonProperty("generation")]
public virtual int? Generation { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

RevisionTemplate

RevisionTemplate holds the latest specification for the Revision to be stamped out. The template references the container image, and may also include labels and annotations that should be attached to the Revision. To correlate a Revision, and/or to force a Revision to be created when the spec doesn't otherwise change, a nonce label may be provided in the template metadata. For more details, see: https://github.com/knative/serving/blob/master/docs/client-conventions.md#associate-modifications-with- revisions Cloud Run does not currently support referencing a build that is responsible for materializing the container image from source.

Declaration
[JsonProperty("revisionTemplate")]
public virtual RevisionTemplate RevisionTemplate { get; set; }
Property Value
Type Description
RevisionTemplate

Template

Template holds the latest specification for the Revision to be stamped out.

Declaration
[JsonProperty("template")]
public virtual RevisionTemplate Template { get; set; }
Property Value
Type Description
RevisionTemplate

Implements

IDirectResponseSchema
Back to top