Class: Google::Apis::ContainerV1::AutopilotCompatibilityIssue
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AutopilotCompatibilityIssue
- 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
-
#constraint_type ⇒ String
The constraint type of the issue.
-
#description ⇒ String
The description of the issue.
-
#documentation_url ⇒ String
A URL to a public documentation, which addresses resolving this issue.
-
#incompatibility_type ⇒ String
The incompatibility type of this issue.
-
#last_observation ⇒ String
The last time when this issue was observed.
-
#subjects ⇒ Array<String>
The name of the resources which are subject to this issue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutopilotCompatibilityIssue
constructor
A new instance of AutopilotCompatibilityIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AutopilotCompatibilityIssue
Returns a new instance of AutopilotCompatibilityIssue.
563 564 565 |
# File 'lib/google/apis/container_v1/classes.rb', line 563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#constraint_type ⇒ String
The constraint type of the issue.
Corresponds to the JSON property constraintType
536 537 538 |
# File 'lib/google/apis/container_v1/classes.rb', line 536 def constraint_type @constraint_type end |
#description ⇒ String
The description of the issue.
Corresponds to the JSON property description
541 542 543 |
# File 'lib/google/apis/container_v1/classes.rb', line 541 def description @description end |
#documentation_url ⇒ String
A URL to a public documentation, which addresses resolving this issue.
Corresponds to the JSON property documentationUrl
546 547 548 |
# File 'lib/google/apis/container_v1/classes.rb', line 546 def documentation_url @documentation_url end |
#incompatibility_type ⇒ String
The incompatibility type of this issue.
Corresponds to the JSON property incompatibilityType
551 552 553 |
# File 'lib/google/apis/container_v1/classes.rb', line 551 def incompatibility_type @incompatibility_type end |
#last_observation ⇒ String
The last time when this issue was observed.
Corresponds to the JSON property lastObservation
556 557 558 |
# File 'lib/google/apis/container_v1/classes.rb', line 556 def last_observation @last_observation end |
#subjects ⇒ Array<String>
The name of the resources which are subject to this issue.
Corresponds to the JSON property subjects
561 562 563 |
# File 'lib/google/apis/container_v1/classes.rb', line 561 def subjects @subjects end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
568 569 570 571 572 573 574 575 |
# File 'lib/google/apis/container_v1/classes.rb', line 568 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 |