com.google.cloud.resourcemanager.v3.ListProjectsResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-resourcemanager-v3 Show documentation
Show all versions of proto-google-cloud-resourcemanager-v3 Show documentation
Proto library for google-cloud-resourcemanager
/*
* Copyright 2024 Google LLC
*
* 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: google/cloud/resourcemanager/v3/projects.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.resourcemanager.v3;
public interface ListProjectsResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.resourcemanager.v3.ListProjectsResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The list of Projects under the parent. This list can be paginated.
*
*
* repeated .google.cloud.resourcemanager.v3.Project projects = 1;
*/
java.util.List getProjectsList();
/**
*
*
*
* The list of Projects under the parent. This list can be paginated.
*
*
* repeated .google.cloud.resourcemanager.v3.Project projects = 1;
*/
com.google.cloud.resourcemanager.v3.Project getProjects(int index);
/**
*
*
*
* The list of Projects under the parent. This list can be paginated.
*
*
* repeated .google.cloud.resourcemanager.v3.Project projects = 1;
*/
int getProjectsCount();
/**
*
*
*
* The list of Projects under the parent. This list can be paginated.
*
*
* repeated .google.cloud.resourcemanager.v3.Project projects = 1;
*/
java.util.List extends com.google.cloud.resourcemanager.v3.ProjectOrBuilder>
getProjectsOrBuilderList();
/**
*
*
*
* The list of Projects under the parent. This list can be paginated.
*
*
* repeated .google.cloud.resourcemanager.v3.Project projects = 1;
*/
com.google.cloud.resourcemanager.v3.ProjectOrBuilder getProjectsOrBuilder(int index);
/**
*
*
*
* Pagination token.
*
* If the result set is too large to fit in a single response, this token
* is returned. It encodes the position of the current result cursor.
* Feeding this value into a new list request with the `page_token` parameter
* gives the next page of the results.
*
* When `next_page_token` is not filled in, there is no next page and
* the list returned is the last page in the result set.
*
* Pagination tokens have a limited lifetime.
*
*
* string next_page_token = 2;
*
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
/**
*
*
*
* Pagination token.
*
* If the result set is too large to fit in a single response, this token
* is returned. It encodes the position of the current result cursor.
* Feeding this value into a new list request with the `page_token` parameter
* gives the next page of the results.
*
* When `next_page_token` is not filled in, there is no next page and
* the list returned is the last page in the result set.
*
* Pagination tokens have a limited lifetime.
*
*
* string next_page_token = 2;
*
* @return The bytes for nextPageToken.
*/
com.google.protobuf.ByteString getNextPageTokenBytes();
}