Show / Hide Table of Contents

Class DomainMappingStatus

The current state of the Domain Mapping.

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

Properties

Conditions

Array of observed DomainMappingConditions, indicating the current state of the DomainMapping.

Declaration
[JsonProperty("conditions")]
public virtual IList<DomainMappingCondition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DomainMappingCondition>

ETag

The ETag of the item.

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

MappedRouteName

The name of the route that the mapping currently points to.

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

ObservedGeneration

ObservedGeneration is the 'Generation' of the DomainMapping that was last processed by the controller. Clients polling for completed reconciliation should poll until observedGeneration = metadata.generation and the Ready condition's status is True or False.

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

ResourceRecords

The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.

Declaration
[JsonProperty("resourceRecords")]
public virtual IList<ResourceRecord> ResourceRecords { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ResourceRecord>

Url

Cloud Run fully managed: not supported Cloud Run on GKE: supported Holds the URL that will serve the traffic of the DomainMapping. +optional

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

Implements

IDirectResponseSchema
Back to top