Package com.google.cloud.compute.v1
Interface UrlMapValidationResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UrlMapValidationResult
,UrlMapValidationResult.Builder
public interface UrlMapValidationResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getLoadErrors(int index)
repeated string load_errors = 310147300;
com.google.protobuf.ByteString
getLoadErrorsBytes(int index)
repeated string load_errors = 310147300;
int
getLoadErrorsCount()
repeated string load_errors = 310147300;
List<String>
getLoadErrorsList()
repeated string load_errors = 310147300;
boolean
getLoadSucceeded()
Whether the given UrlMap can be successfully loaded.TestFailure
getTestFailures(int index)
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
int
getTestFailuresCount()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
List<TestFailure>
getTestFailuresList()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
TestFailureOrBuilder
getTestFailuresOrBuilder(int index)
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
List<? extends TestFailureOrBuilder>
getTestFailuresOrBuilderList()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
boolean
getTestPassed()
If successfully loaded, this field indicates whether the test passed.boolean
hasLoadSucceeded()
Whether the given UrlMap can be successfully loaded.boolean
hasTestPassed()
If successfully loaded, this field indicates whether the test passed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLoadErrorsList
List<String> getLoadErrorsList()
repeated string load_errors = 310147300;
- Returns:
- A list containing the loadErrors.
-
getLoadErrorsCount
int getLoadErrorsCount()
repeated string load_errors = 310147300;
- Returns:
- The count of loadErrors.
-
getLoadErrors
String getLoadErrors(int index)
repeated string load_errors = 310147300;
- Parameters:
index
- The index of the element to return.- Returns:
- The loadErrors at the given index.
-
getLoadErrorsBytes
com.google.protobuf.ByteString getLoadErrorsBytes(int index)
repeated string load_errors = 310147300;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the loadErrors at the given index.
-
hasLoadSucceeded
boolean hasLoadSucceeded()
Whether the given UrlMap can be successfully loaded. If false, 'loadErrors' indicates the reasons.
optional bool load_succeeded = 128326216;
- Returns:
- Whether the loadSucceeded field is set.
-
getLoadSucceeded
boolean getLoadSucceeded()
Whether the given UrlMap can be successfully loaded. If false, 'loadErrors' indicates the reasons.
optional bool load_succeeded = 128326216;
- Returns:
- The loadSucceeded.
-
getTestFailuresList
List<TestFailure> getTestFailuresList()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
-
getTestFailures
TestFailure getTestFailures(int index)
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
-
getTestFailuresCount
int getTestFailuresCount()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
-
getTestFailuresOrBuilderList
List<? extends TestFailureOrBuilder> getTestFailuresOrBuilderList()
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
-
getTestFailuresOrBuilder
TestFailureOrBuilder getTestFailuresOrBuilder(int index)
repeated .google.cloud.compute.v1.TestFailure test_failures = 505934134;
-
hasTestPassed
boolean hasTestPassed()
If successfully loaded, this field indicates whether the test passed. If false, 'testFailures's indicate the reason of failure.
optional bool test_passed = 192708797;
- Returns:
- Whether the testPassed field is set.
-
getTestPassed
boolean getTestPassed()
If successfully loaded, this field indicates whether the test passed. If false, 'testFailures's indicate the reason of failure.
optional bool test_passed = 192708797;
- Returns:
- The testPassed.
-
-