Package com.google.container.v1
Interface CheckAutopilotCompatibilityResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckAutopilotCompatibilityResponse
,CheckAutopilotCompatibilityResponse.Builder
public interface CheckAutopilotCompatibilityResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutopilotCompatibilityIssue
getIssues(int index)
The list of issues for the given operation.int
getIssuesCount()
The list of issues for the given operation.List<AutopilotCompatibilityIssue>
getIssuesList()
The list of issues for the given operation.AutopilotCompatibilityIssueOrBuilder
getIssuesOrBuilder(int index)
The list of issues for the given operation.List<? extends AutopilotCompatibilityIssueOrBuilder>
getIssuesOrBuilderList()
The list of issues for the given operation.String
getSummary()
The summary of the autopilot compatibility response.com.google.protobuf.ByteString
getSummaryBytes()
The summary of the autopilot compatibility response.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIssuesList
List<AutopilotCompatibilityIssue> getIssuesList()
The list of issues for the given operation.
repeated .google.container.v1.AutopilotCompatibilityIssue issues = 1;
-
getIssues
AutopilotCompatibilityIssue getIssues(int index)
The list of issues for the given operation.
repeated .google.container.v1.AutopilotCompatibilityIssue issues = 1;
-
getIssuesCount
int getIssuesCount()
The list of issues for the given operation.
repeated .google.container.v1.AutopilotCompatibilityIssue issues = 1;
-
getIssuesOrBuilderList
List<? extends AutopilotCompatibilityIssueOrBuilder> getIssuesOrBuilderList()
The list of issues for the given operation.
repeated .google.container.v1.AutopilotCompatibilityIssue issues = 1;
-
getIssuesOrBuilder
AutopilotCompatibilityIssueOrBuilder getIssuesOrBuilder(int index)
The list of issues for the given operation.
repeated .google.container.v1.AutopilotCompatibilityIssue issues = 1;
-
getSummary
String getSummary()
The summary of the autopilot compatibility response.
string summary = 2;
- Returns:
- The summary.
-
getSummaryBytes
com.google.protobuf.ByteString getSummaryBytes()
The summary of the autopilot compatibility response.
string summary = 2;
- Returns:
- The bytes for summary.
-
-