Package com.google.cloud.deploy.v1
Interface CloudRunMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CloudRunMetadata
,CloudRunMetadata.Builder
public interface CloudRunMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getRevision()
Output only.com.google.protobuf.ByteString
getRevisionBytes()
Output only.String
getService()
Output only.com.google.protobuf.ByteString
getServiceBytes()
Output only.String
getServiceUrls(int index)
Output only.com.google.protobuf.ByteString
getServiceUrlsBytes(int index)
Output only.int
getServiceUrlsCount()
Output only.List<String>
getServiceUrlsList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getService
String getService()
Output only. The name of the Cloud Run Service that is associated with a `Rollout`. Format is projects/{project}/locations/{location}/services/{service}.
string service = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
- Returns:
- The service.
-
getServiceBytes
com.google.protobuf.ByteString getServiceBytes()
Output only. The name of the Cloud Run Service that is associated with a `Rollout`. Format is projects/{project}/locations/{location}/services/{service}.
string service = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for service.
-
getServiceUrlsList
List<String> getServiceUrlsList()
Output only. The Cloud Run Service urls that are associated with a `Rollout`.
repeated string service_urls = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the serviceUrls.
-
getServiceUrlsCount
int getServiceUrlsCount()
Output only. The Cloud Run Service urls that are associated with a `Rollout`.
repeated string service_urls = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of serviceUrls.
-
getServiceUrls
String getServiceUrls(int index)
Output only. The Cloud Run Service urls that are associated with a `Rollout`.
repeated string service_urls = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The serviceUrls at the given index.
-
getServiceUrlsBytes
com.google.protobuf.ByteString getServiceUrlsBytes(int index)
Output only. The Cloud Run Service urls that are associated with a `Rollout`.
repeated string service_urls = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the serviceUrls at the given index.
-
getRevision
String getRevision()
Output only. The Cloud Run Revision id associated with a `Rollout`.
string revision = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The revision.
-
getRevisionBytes
com.google.protobuf.ByteString getRevisionBytes()
Output only. The Cloud Run Revision id associated with a `Rollout`.
string revision = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for revision.
-
-