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 ApplyResults
getApplyResults()
Outputs and artifacts from applying a deployment.ApplyResultsOrBuilder
getApplyResultsOrBuilder()
Outputs and artifacts from applying a deployment.String
getBuild()
Output only.com.google.protobuf.ByteString
getBuildBytes()
Output only.String
getLogs()
Output only.com.google.protobuf.ByteString
getLogsBytes()
Output only.DeploymentOperationMetadata.DeploymentStep
getStep()
The current step the deployment operation is running.int
getStepValue()
The current step the deployment operation is running.boolean
hasApplyResults()
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.
-
-