io.grafeas.v1.ListNoteOccurrencesRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafeas Show documentation
Show all versions of grafeas Show documentation
Java idiomatic client for Grafeas.
/*
* Copyright 2019 The Grafeas Authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: grafeas/v1/grafeas.proto
// Protobuf Java Version: 3.25.2
package io.grafeas.v1;
public interface ListNoteOccurrencesRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:grafeas.v1.ListNoteOccurrencesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of the note to list occurrences for in the form of
* `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
*
*
*
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The name of the note to list occurrences for in the form of
* `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
*
*
*
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The filter expression.
*
*
* string filter = 2;
*
* @return The filter.
*/
java.lang.String getFilter();
/**
*
*
*
* The filter expression.
*
*
* string filter = 2;
*
* @return The bytes for filter.
*/
com.google.protobuf.ByteString getFilterBytes();
/**
*
*
*
* Number of occurrences to return in the list.
*
*
* int32 page_size = 3;
*
* @return The pageSize.
*/
int getPageSize();
/**
*
*
*
* Token to provide to skip to a particular spot in the list.
*
*
* string page_token = 4;
*
* @return The pageToken.
*/
java.lang.String getPageToken();
/**
*
*
*
* Token to provide to skip to a particular spot in the list.
*
*
* string page_token = 4;
*
* @return The bytes for pageToken.
*/
com.google.protobuf.ByteString getPageTokenBytes();
}