Package com.google.cloud.config.v1
Interface DeploymentOperationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeploymentOperationMetadata,DeploymentOperationMetadata.Builder
public interface DeploymentOperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplyResultsgetApplyResults()Outputs and artifacts from applying a deployment.ApplyResultsOrBuildergetApplyResultsOrBuilder()Outputs and artifacts from applying a deployment.StringgetBuild()Output only.com.google.protobuf.ByteStringgetBuildBytes()Output only.StringgetLogs()Output only.com.google.protobuf.ByteStringgetLogsBytes()Output only.DeploymentOperationMetadata.DeploymentStepgetStep()The current step the deployment operation is running.intgetStepValue()The current step the deployment operation is running.booleanhasApplyResults()Outputs and artifacts from applying a deployment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStepValue
int getStepValue()
The current step the deployment operation is running.
.google.cloud.config.v1.DeploymentOperationMetadata.DeploymentStep step = 1;- Returns:
- The enum numeric value on the wire for step.
-
getStep
DeploymentOperationMetadata.DeploymentStep getStep()
The current step the deployment operation is running.
.google.cloud.config.v1.DeploymentOperationMetadata.DeploymentStep step = 1;- Returns:
- The step.
-
hasApplyResults
boolean hasApplyResults()
Outputs and artifacts from applying a deployment.
.google.cloud.config.v1.ApplyResults apply_results = 2;- Returns:
- Whether the applyResults field is set.
-
getApplyResults
ApplyResults getApplyResults()
Outputs and artifacts from applying a deployment.
.google.cloud.config.v1.ApplyResults apply_results = 2;- Returns:
- The applyResults.
-
getApplyResultsOrBuilder
ApplyResultsOrBuilder getApplyResultsOrBuilder()
Outputs and artifacts from applying a deployment.
.google.cloud.config.v1.ApplyResults apply_results = 2;
-
getBuild
String getBuild()
Output only. Cloud Build instance UUID associated with this operation.
string build = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The build.
-
getBuildBytes
com.google.protobuf.ByteString getBuildBytes()
Output only. Cloud Build instance UUID associated with this operation.
string build = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for build.
-
getLogs
String getLogs()
Output only. Location of Deployment operations logs in `gs://{bucket}/{object}` format.string logs = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The logs.
-
getLogsBytes
com.google.protobuf.ByteString getLogsBytes()
Output only. Location of Deployment operations logs in `gs://{bucket}/{object}` format.string logs = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for logs.
-
-