Interface ListServiceRolloutsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServiceRolloutsRequest
,ListServiceRolloutsRequest.Builder
public interface ListServiceRolloutsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFilter()
Required.com.google.protobuf.ByteString
getFilterBytes()
Required.int
getPageSize()
The max number of items to include in the response list.String
getPageToken()
The token of the page to retrieve.com.google.protobuf.ByteString
getPageTokenBytes()
The token of the page to retrieve.String
getServiceName()
Required.com.google.protobuf.ByteString
getServiceNameBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceName
String getServiceName()
Required. The name of the service. See the [overview](https://cloud.google.com/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
string service_name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The serviceName.
-
getServiceNameBytes
com.google.protobuf.ByteString getServiceNameBytes()
Required. The name of the service. See the [overview](https://cloud.google.com/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
string service_name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for serviceName.
-
getPageToken
String getPageToken()
The token of the page to retrieve.
string page_token = 2;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
The token of the page to retrieve.
string page_token = 2;
- Returns:
- The bytes for pageToken.
-
getPageSize
int getPageSize()
The max number of items to include in the response list. Page size is 50 if not specified. Maximum value is 100.
int32 page_size = 3;
- Returns:
- The pageSize.
-
getFilter
String getFilter()
Required. Use `filter` to return subset of rollouts. The following filters are supported: -- By [status] [google.api.servicemanagement.v1.Rollout.RolloutStatus]. For example, `filter='status=SUCCESS'` -- By [strategy] [google.api.servicemanagement.v1.Rollout.strategy]. For example, `filter='strategy=TrafficPercentStrategy'`
string filter = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Required. Use `filter` to return subset of rollouts. The following filters are supported: -- By [status] [google.api.servicemanagement.v1.Rollout.RolloutStatus]. For example, `filter='status=SUCCESS'` -- By [strategy] [google.api.servicemanagement.v1.Rollout.strategy]. For example, `filter='strategy=TrafficPercentStrategy'`
string filter = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for filter.
-
-