Class: Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb
Overview
CheckAutopilotCompatibilityResponse has a list of compatibility issues.
Instance Attribute Summary collapse
-
#issues ⇒ Array<Google::Apis::ContainerV1beta1::AutopilotCompatibilityIssue>
The list of issues for the given operation.
-
#summary ⇒ String
The summary of the autopilot compatibility response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CheckAutopilotCompatibilityResponse
constructor
A new instance of CheckAutopilotCompatibilityResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CheckAutopilotCompatibilityResponse
Returns a new instance of CheckAutopilotCompatibilityResponse.
825 826 827 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 825 def initialize(**args) update!(**args) end |
Instance Attribute Details
#issues ⇒ Array<Google::Apis::ContainerV1beta1::AutopilotCompatibilityIssue>
The list of issues for the given operation.
Corresponds to the JSON property issues
818 819 820 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 818 def issues @issues end |
#summary ⇒ String
The summary of the autopilot compatibility response.
Corresponds to the JSON property summary
823 824 825 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 823 def summary @summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
830 831 832 833 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 830 def update!(**args) @issues = args[:issues] if args.key?(:issues) @summary = args[:summary] if args.key?(:summary) end |