Package com.google.cloud.gkehub.v1alpha
Interface ListFeaturesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListFeaturesRequest,ListFeaturesRequest.Builder
public interface ListFeaturesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFilter()Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160.com.google.protobuf.ByteStringgetFilterBytes()Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160.StringgetOrderBy()One or more fields to compare and use to sort the output.com.google.protobuf.ByteStringgetOrderByBytes()One or more fields to compare and use to sort the output.intgetPageSize()When requesting a 'page' of resources, `page_size` specifies number of resources to return.StringgetPageToken()Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.com.google.protobuf.ByteStringgetPageTokenBytes()Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.StringgetParent()The parent (project and location) where the Features will be listed.com.google.protobuf.ByteStringgetParentBytes()The parent (project and location) where the Features will be listed.-
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()
The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*`.
string parent = 1;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*`.
string parent = 1;- Returns:
- The bytes for parent.
-
getPageSize
int getPageSize()
When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned.
int32 page_size = 2;- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.
string page_token = 3;- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.
string page_token = 3;- Returns:
- The bytes for pageToken.
-
getFilter
String getFilter()
Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Examples: - Feature with the name "servicemesh" in project "foo-proj": name = "projects/foo-proj/locations/global/features/servicemesh" - Features that have a label called `foo`: labels.foo:* - Features that have a label called `foo` whose value is `bar`: labels.foo = barstring filter = 4;- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Examples: - Feature with the name "servicemesh" in project "foo-proj": name = "projects/foo-proj/locations/global/features/servicemesh" - Features that have a label called `foo`: labels.foo:* - Features that have a label called `foo` whose value is `bar`: labels.foo = barstring filter = 4;- Returns:
- The bytes for filter.
-
getOrderBy
String getOrderBy()
One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering.
string order_by = 5;- Returns:
- The orderBy.
-
getOrderByBytes
com.google.protobuf.ByteString getOrderByBytes()
One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering.
string order_by = 5;- Returns:
- The bytes for orderBy.
-
-