Class: Google::Apis::ContainerV1beta1::CheckAutopilotCompatibilityResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CheckAutopilotCompatibilityResponse

Returns a new instance of CheckAutopilotCompatibilityResponse.



912
913
914
# File 'lib/google/apis/container_v1beta1/classes.rb', line 912

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

Instance Attribute Details

#issuesArray<Google::Apis::ContainerV1beta1::AutopilotCompatibilityIssue>

The list of issues for the given operation. Corresponds to the JSON property issues



905
906
907
# File 'lib/google/apis/container_v1beta1/classes.rb', line 905

def issues
  @issues
end

#summaryString

The summary of the autopilot compatibility response. Corresponds to the JSON property summary

Returns:

  • (String)


910
911
912
# File 'lib/google/apis/container_v1beta1/classes.rb', line 910

def summary
  @summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



917
918
919
920
# File 'lib/google/apis/container_v1beta1/classes.rb', line 917

def update!(**args)
  @issues = args[:issues] if args.key?(:issues)
  @summary = args[:summary] if args.key?(:summary)
end