Interface SyncErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SyncError
,SyncError.Builder
public interface SyncErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCode()
An ACM defined error codecom.google.protobuf.ByteString
getCodeBytes()
An ACM defined error codeString
getErrorMessage()
A description of the errorcom.google.protobuf.ByteString
getErrorMessageBytes()
A description of the errorErrorResource
getErrorResources(int index)
A list of config(s) associated with the error, if anyint
getErrorResourcesCount()
A list of config(s) associated with the error, if anyList<ErrorResource>
getErrorResourcesList()
A list of config(s) associated with the error, if anyErrorResourceOrBuilder
getErrorResourcesOrBuilder(int index)
A list of config(s) associated with the error, if anyList<? extends ErrorResourceOrBuilder>
getErrorResourcesOrBuilderList()
A list of config(s) associated with the error, if any-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCode
String getCode()
An ACM defined error code
string code = 1;
- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()
An ACM defined error code
string code = 1;
- Returns:
- The bytes for code.
-
getErrorMessage
String getErrorMessage()
A description of the error
string error_message = 2;
- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()
A description of the error
string error_message = 2;
- Returns:
- The bytes for errorMessage.
-
getErrorResourcesList
List<ErrorResource> getErrorResourcesList()
A list of config(s) associated with the error, if any
repeated .google.cloud.gkehub.configmanagement.v1beta.ErrorResource error_resources = 3;
-
getErrorResources
ErrorResource getErrorResources(int index)
A list of config(s) associated with the error, if any
repeated .google.cloud.gkehub.configmanagement.v1beta.ErrorResource error_resources = 3;
-
getErrorResourcesCount
int getErrorResourcesCount()
A list of config(s) associated with the error, if any
repeated .google.cloud.gkehub.configmanagement.v1beta.ErrorResource error_resources = 3;
-
getErrorResourcesOrBuilderList
List<? extends ErrorResourceOrBuilder> getErrorResourcesOrBuilderList()
A list of config(s) associated with the error, if any
repeated .google.cloud.gkehub.configmanagement.v1beta.ErrorResource error_resources = 3;
-
getErrorResourcesOrBuilder
ErrorResourceOrBuilder getErrorResourcesOrBuilder(int index)
A list of config(s) associated with the error, if any
repeated .google.cloud.gkehub.configmanagement.v1beta.ErrorResource error_resources = 3;
-
-