Interface OperatorStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OperatorState
,OperatorState.Builder
public interface OperatorStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentState
getDeploymentState()
The state of the Operator's deploymentint
getDeploymentStateValue()
The state of the Operator's deploymentInstallError
getErrors(int index)
Install errors.int
getErrorsCount()
Install errors.List<InstallError>
getErrorsList()
Install errors.InstallErrorOrBuilder
getErrorsOrBuilder(int index)
Install errors.List<? extends InstallErrorOrBuilder>
getErrorsOrBuilderList()
Install errors.String
getVersion()
The semenatic version number of the operatorcom.google.protobuf.ByteString
getVersionBytes()
The semenatic version number of the operator-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
The semenatic version number of the operator
string version = 1;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The semenatic version number of the operator
string version = 1;
- Returns:
- The bytes for version.
-
getDeploymentStateValue
int getDeploymentStateValue()
The state of the Operator's deployment
.google.cloud.gkehub.configmanagement.v1alpha.DeploymentState deployment_state = 2;
- Returns:
- The enum numeric value on the wire for deploymentState.
-
getDeploymentState
DeploymentState getDeploymentState()
The state of the Operator's deployment
.google.cloud.gkehub.configmanagement.v1alpha.DeploymentState deployment_state = 2;
- Returns:
- The deploymentState.
-
getErrorsList
List<InstallError> getErrorsList()
Install errors.
repeated .google.cloud.gkehub.configmanagement.v1alpha.InstallError errors = 3;
-
getErrors
InstallError getErrors(int index)
Install errors.
repeated .google.cloud.gkehub.configmanagement.v1alpha.InstallError errors = 3;
-
getErrorsCount
int getErrorsCount()
Install errors.
repeated .google.cloud.gkehub.configmanagement.v1alpha.InstallError errors = 3;
-
getErrorsOrBuilderList
List<? extends InstallErrorOrBuilder> getErrorsOrBuilderList()
Install errors.
repeated .google.cloud.gkehub.configmanagement.v1alpha.InstallError errors = 3;
-
getErrorsOrBuilder
InstallErrorOrBuilder getErrorsOrBuilder(int index)
Install errors.
repeated .google.cloud.gkehub.configmanagement.v1alpha.InstallError errors = 3;
-
-