Class: Google::Apis::RunV1alpha1::RouteCondition

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

RouteCondition defines a readiness condition for a Route.

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) ⇒ RouteCondition

Returns a new instance of RouteCondition.



3600
3601
3602
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3600

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

Instance Attribute Details

#last_transition_timeString

Last time the condition transitioned from one status to another. +optional Corresponds to the JSON property lastTransitionTime

Returns:

  • (String)


3566
3567
3568
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3566

def last_transition_time
  @last_transition_time
end

#messageString

Human-readable message indicating details about last transition. +optional Corresponds to the JSON property message

Returns:

  • (String)


3572
3573
3574
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3572

def message
  @message
end

#reasonString

One-word CamelCase reason for the condition's last transition. +optional Corresponds to the JSON property reason

Returns:

  • (String)


3578
3579
3580
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3578

def reason
  @reason
end

#severityString

How to interpret failures of this condition, one of Error, Warning, Info +optional Corresponds to the JSON property severity

Returns:

  • (String)


3584
3585
3586
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3584

def severity
  @severity
end

#statusString

Status of the condition, one of "True", "False", "Unknown". Corresponds to the JSON property status

Returns:

  • (String)


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

def status
  @status
end

#typeString

RouteConditionType is used to communicate the status of the reconciliation process. See also: https://github.com/knative/serving/blob/master/docs/spec/errors.md#error- conditions-and-reporting Types include: "Ready". Corresponds to the JSON property type

Returns:

  • (String)


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

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

def update!(**args)
  @last_transition_time = args[:last_transition_time] if args.key?(:last_transition_time)
  @message = args[:message] if args.key?(:message)
  @reason = args[:reason] if args.key?(:reason)
  @severity = args[:severity] if args.key?(:severity)
  @status = args[:status] if args.key?(:status)
  @type = args[:type] if args.key?(:type)
end