Class: Google::Apis::RunV1alpha1::RouteStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb

Overview

RouteStatus communicates the observed state of the Route (from the controller).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RouteStatus

Returns a new instance of RouteStatus



3598
3599
3600
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3598

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#addressGoogle::Apis::RunV1alpha1::Addressable

Information for connecting over HTTP(s). Corresponds to the JSON property address



3548
3549
3550
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3548

def address
  @address
end

#conditionsArray<Google::Apis::RunV1alpha1::RouteCondition>

Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world. Corresponds to the JSON property conditions



3555
3556
3557
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3555

def conditions
  @conditions
end

#domainString

Deprecated - use url instead. Domain holds the top-level domain that will distribute traffic over the provided targets. Corresponds to the JSON property domain

Returns:

  • (String)


3562
3563
3564
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3562

def domain
  @domain
end

#domain_internalString

Deprecated - use address instead. For Cloud Run, identifical to domain. Corresponds to the JSON property domainInternal

Returns:

  • (String)


3568
3569
3570
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3568

def domain_internal
  @domain_internal
end

#observed_generationFixnum

ObservedGeneration is the 'Generation' of the Route 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. Note that providing a trafficTarget that only has a configurationName will result in a Route that does not increment either its metadata.generation or its observedGeneration, as new "latest ready" revisions from the Configuration are processed without an update to the Route's spec. Corresponds to the JSON property observedGeneration

Returns:

  • (Fixnum)


3581
3582
3583
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3581

def observed_generation
  @observed_generation
end

#trafficArray<Google::Apis::RunV1alpha1::TrafficTarget>

Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed. Corresponds to the JSON property traffic



3589
3590
3591
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3589

def traffic
  @traffic
end

#urlString

URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form https://route-hash-project-hash-cluster-level-suffix.a.run.app Corresponds to the JSON property url

Returns:

  • (String)


3596
3597
3598
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3596

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3603
3604
3605
3606
3607
3608
3609
3610
3611
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3603

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @conditions = args[:conditions] if args.key?(:conditions)
  @domain = args[:domain] if args.key?(:domain)
  @domain_internal = args[:domain_internal] if args.key?(:domain_internal)
  @observed_generation = args[:observed_generation] if args.key?(:observed_generation)
  @traffic = args[:traffic] if args.key?(:traffic)
  @url = args[:url] if args.key?(:url)
end