Interface SearchVersionsRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    SearchVersionsRequest, SearchVersionsRequest.Builder

    public interface SearchVersionsRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getPageSize()
      The maximum number of entries that are requested.
      String getPageToken()
      A pagination token returned from a previous call to SearchVersions that indicates where this listing should continue from.
      com.google.protobuf.ByteString getPageTokenBytes()
      A pagination token returned from a previous call to SearchVersions that indicates where this listing should continue from.
      String getQuery()
      Required.
      com.google.protobuf.ByteString getQueryBytes()
      Required.
      String getResource()
      Required.
      com.google.protobuf.ByteString getResourceBytes()
      Required.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getResource

        String getResource()
         Required. The name of the resource context. See [SearchCatalogsRequest.resource][google.cloud.privatecatalog.v1beta1.SearchCatalogsRequest.resource]
         for details.
         
        string resource = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The resource.
      • getResourceBytes

        com.google.protobuf.ByteString getResourceBytes()
         Required. The name of the resource context. See [SearchCatalogsRequest.resource][google.cloud.privatecatalog.v1beta1.SearchCatalogsRequest.resource]
         for details.
         
        string resource = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for resource.
      • getQuery

        String getQuery()
         Required. The query to filter the versions.
        
         The supported queries are:
         * List versions under a product:
         `parent=catalogs/{catalog}/products/{product}`
         * Get a version by name:
         `name=catalogs/{catalog}/products/{product}/versions/{version}`
         
        string query = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The query.
      • getQueryBytes

        com.google.protobuf.ByteString getQueryBytes()
         Required. The query to filter the versions.
        
         The supported queries are:
         * List versions under a product:
         `parent=catalogs/{catalog}/products/{product}`
         * Get a version by name:
         `name=catalogs/{catalog}/products/{product}/versions/{version}`
         
        string query = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for query.
      • getPageSize

        int getPageSize()
         The maximum number of entries that are requested.
         
        int32 page_size = 3;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         A pagination token returned from a previous call to SearchVersions
         that indicates where this listing should continue from.
         
        string page_token = 4;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         A pagination token returned from a previous call to SearchVersions
         that indicates where this listing should continue from.
         
        string page_token = 4;
        Returns:
        The bytes for pageToken.