Interface Deployment.ResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Deployment.Result
,Deployment.Result.Builder
- Enclosing class:
- Deployment
public static interface Deployment.ResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDeploymentTestResults(int index)
Results of test cases running before the deployment.com.google.protobuf.ByteString
getDeploymentTestResultsBytes(int index)
Results of test cases running before the deployment.int
getDeploymentTestResultsCount()
Results of test cases running before the deployment.List<String>
getDeploymentTestResultsList()
Results of test cases running before the deployment.String
getExperiment()
The name of the experiment triggered by this deployment.com.google.protobuf.ByteString
getExperimentBytes()
The name of the experiment triggered by this deployment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDeploymentTestResultsList
List<String> getDeploymentTestResultsList()
Results of test cases running before the deployment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/<TestCase ID>/results/<TestCaseResult ID>`.
repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- A list containing the deploymentTestResults.
-
getDeploymentTestResultsCount
int getDeploymentTestResultsCount()
Results of test cases running before the deployment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/<TestCase ID>/results/<TestCaseResult ID>`.
repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The count of deploymentTestResults.
-
getDeploymentTestResults
String getDeploymentTestResults(int index)
Results of test cases running before the deployment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/<TestCase ID>/results/<TestCaseResult ID>`.
repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the element to return.- Returns:
- The deploymentTestResults at the given index.
-
getDeploymentTestResultsBytes
com.google.protobuf.ByteString getDeploymentTestResultsBytes(int index)
Results of test cases running before the deployment. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/<TestCase ID>/results/<TestCaseResult ID>`.
repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the deploymentTestResults at the given index.
-
getExperiment
String getExperiment()
The name of the experiment triggered by this deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.
string experiment = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The experiment.
-
getExperimentBytes
com.google.protobuf.ByteString getExperimentBytes()
The name of the experiment triggered by this deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.
string experiment = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for experiment.
-
-