class Google::Apis::RunV1::DomainMappingStatus
The current state of the Domain Mapping.
Attributes
Array of observed DomainMappingConditions, indicating the current state of the DomainMapping
. Corresponds to the JSON property `conditions` @return [Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>]
The name of the route that the mapping currently points to. Corresponds to the JSON property `mappedRouteName` @return [String]
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. Corresponds to the JSON property `observedGeneration` @return [Fixnum]
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. Corresponds to the JSON property `resourceRecords` @return [Array<Google::Apis::RunV1::ResourceRecord>]
Optional. Cloud Run fully managed: not supported Cloud Run on GKE: supported Holds the URL that will serve the traffic of the DomainMapping
. Corresponds to the JSON property `url` @return [String]
Public Class Methods
# File lib/google/apis/run_v1/classes.rb, line 766 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/run_v1/classes.rb, line 771 def update!(**args) @conditions = args[:conditions] if args.key?(:conditions) @mapped_route_name = args[:mapped_route_name] if args.key?(:mapped_route_name) @observed_generation = args[:observed_generation] if args.key?(:observed_generation) @resource_records = args[:resource_records] if args.key?(:resource_records) @url = args[:url] if args.key?(:url) end