Class: Google::Apis::ContainerV1::AutopilotCompatibilityIssue

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

Overview

AutopilotCompatibilityIssue contains information about a specific compatibility issue with Autopilot mode.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutopilotCompatibilityIssue

Returns a new instance of AutopilotCompatibilityIssue.



436
437
438
# File 'lib/google/apis/container_v1/classes.rb', line 436

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

Instance Attribute Details

#constraint_typeString

The constraint type of the issue. Corresponds to the JSON property constraintType

Returns:

  • (String)


409
410
411
# File 'lib/google/apis/container_v1/classes.rb', line 409

def constraint_type
  @constraint_type
end

#descriptionString

The description of the issue. Corresponds to the JSON property description

Returns:

  • (String)


414
415
416
# File 'lib/google/apis/container_v1/classes.rb', line 414

def description
  @description
end

#documentation_urlString

A URL to a public documnetation, which addresses resolving this issue. Corresponds to the JSON property documentationUrl

Returns:

  • (String)


419
420
421
# File 'lib/google/apis/container_v1/classes.rb', line 419

def documentation_url
  @documentation_url
end

#incompatibility_typeString

The incompatibility type of this issue. Corresponds to the JSON property incompatibilityType

Returns:

  • (String)


424
425
426
# File 'lib/google/apis/container_v1/classes.rb', line 424

def incompatibility_type
  @incompatibility_type
end

#last_observationString

The last time when this issue was observed. Corresponds to the JSON property lastObservation

Returns:

  • (String)


429
430
431
# File 'lib/google/apis/container_v1/classes.rb', line 429

def last_observation
  @last_observation
end

#subjectsArray<String>

The name of the resources which are subject to this issue. Corresponds to the JSON property subjects

Returns:

  • (Array<String>)


434
435
436
# File 'lib/google/apis/container_v1/classes.rb', line 434

def subjects
  @subjects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



441
442
443
444
445
446
447
448
# File 'lib/google/apis/container_v1/classes.rb', line 441

def update!(**args)
  @constraint_type = args[:constraint_type] if args.key?(:constraint_type)
  @description = args[:description] if args.key?(:description)
  @documentation_url = args[:documentation_url] if args.key?(:documentation_url)
  @incompatibility_type = args[:incompatibility_type] if args.key?(:incompatibility_type)
  @last_observation = args[:last_observation] if args.key?(:last_observation)
  @subjects = args[:subjects] if args.key?(:subjects)
end