Show / Hide Table of Contents

Class DomainMappingStatus

The current state of the Domain Mapping.

Inheritance
System.Object
DomainMappingStatus
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class DomainMappingStatus : object, IDirectResponseSchema

Properties

Conditions

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

Declaration
public virtual IList<GoogleCloudRunV1Condition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudRunV1Condition>

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
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
public virtual Nullable<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
public virtual IList<ResourceRecord> ResourceRecords { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ResourceRecord>

Implements

IDirectResponseSchema
Back to top