Interface ListOrgDataExchangesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListOrgDataExchangesRequest
,ListOrgDataExchangesRequest.Builder
public interface ListOrgDataExchangesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getOrganization()
Required.com.google.protobuf.ByteString
getOrganizationBytes()
Required.int
getPageSize()
The maximum number of results to return in a single response page.String
getPageToken()
Page token, returned by a previous call, to request the next page of results.com.google.protobuf.ByteString
getPageTokenBytes()
Page token, returned by a previous call, to request the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOrganization
String getOrganization()
Required. The organization resource path of the projects containing DataExchanges. e.g. `organizations/myorg/locations/US`.
string organization = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The organization.
-
getOrganizationBytes
com.google.protobuf.ByteString getOrganizationBytes()
Required. The organization resource path of the projects containing DataExchanges. e.g. `organizations/myorg/locations/US`.
string organization = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for organization.
-
getPageSize
int getPageSize()
The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection.
int32 page_size = 2;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
Page token, returned by a previous call, to request the next page of results.
string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Page token, returned by a previous call, to request the next page of results.
string page_token = 3;
- Returns:
- The bytes for pageToken.
-
-