Class: Google::Apis::GkehubV1alpha::ServiceMeshCondition

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

Overview

Condition being reported.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceMeshCondition

Returns a new instance of ServiceMeshCondition.



5964
5965
5966
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5964

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

Instance Attribute Details

#codeString

Unique identifier of the condition which describes the condition recognizable to the user. Corresponds to the JSON property code

Returns:

  • (String)


5947
5948
5949
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5947

def code
  @code
end

#detailsString

A short summary about the issue. Corresponds to the JSON property details

Returns:

  • (String)


5952
5953
5954
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5952

def details
  @details
end

Links contains actionable information. Corresponds to the JSON property documentationLink

Returns:

  • (String)


5957
5958
5959
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5957

def documentation_link
  @documentation_link
end

#severityString

Severity level of the condition. Corresponds to the JSON property severity

Returns:

  • (String)


5962
5963
5964
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5962

def severity
  @severity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5969
5970
5971
5972
5973
5974
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5969

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @details = args[:details] if args.key?(:details)
  @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
  @severity = args[:severity] if args.key?(:severity)
end