Class: Google::Apis::GkehubV2alpha::ServiceMeshCondition

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v2alpha/classes.rb,
lib/google/apis/gkehub_v2alpha/representations.rb,
lib/google/apis/gkehub_v2alpha/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.



3275
3276
3277
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3275

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)


3258
3259
3260
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3258

def code
  @code
end

#detailsString

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

Returns:

  • (String)


3263
3264
3265
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3263

def details
  @details
end

Links contains actionable information. Corresponds to the JSON property documentationLink

Returns:

  • (String)


3268
3269
3270
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3268

def documentation_link
  @documentation_link
end

#severityString

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

Returns:

  • (String)


3273
3274
3275
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3273

def severity
  @severity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3280
3281
3282
3283
3284
3285
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 3280

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