Interface ListMigrationWorkflowsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMigrationWorkflowsRequest
,ListMigrationWorkflowsRequest.Builder
public interface ListMigrationWorkflowsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getPageSize()
The maximum number of migration workflows to return.String
getPageToken()
A page token, received from previous `ListMigrationWorkflows` call.com.google.protobuf.ByteString
getPageTokenBytes()
A page token, received from previous `ListMigrationWorkflows` call.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.com.google.protobuf.FieldMask
getReadMask()
The list of fields to be retrieved.com.google.protobuf.FieldMaskOrBuilder
getReadMaskOrBuilder()
The list of fields to be retrieved.boolean
hasReadMask()
The list of fields to be retrieved.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The project and location of the migration workflows to list. Example: `projects/123/locations/us`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The project and location of the migration workflows to list. Example: `projects/123/locations/us`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasReadMask
boolean hasReadMask()
The list of fields to be retrieved.
.google.protobuf.FieldMask read_mask = 2;
- Returns:
- Whether the readMask field is set.
-
getReadMask
com.google.protobuf.FieldMask getReadMask()
The list of fields to be retrieved.
.google.protobuf.FieldMask read_mask = 2;
- Returns:
- The readMask.
-
getReadMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getReadMaskOrBuilder()
The list of fields to be retrieved.
.google.protobuf.FieldMask read_mask = 2;
-
getPageSize
int getPageSize()
The maximum number of migration workflows to return. The service may return fewer than this number.
int32 page_size = 3;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
A page token, received from previous `ListMigrationWorkflows` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMigrationWorkflows` must match the call that provided the page token.
string page_token = 4;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
A page token, received from previous `ListMigrationWorkflows` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMigrationWorkflows` must match the call that provided the page token.
string page_token = 4;
- Returns:
- The bytes for pageToken.
-
-