com.google.firestore.v1.ListCollectionIdsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-firestore-v1 Show documentation
Show all versions of proto-google-cloud-firestore-v1 Show documentation
PROTO library for proto-google-cloud-firestore-v1
/*
* 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/firestore/v1/firestore.proto
// Protobuf Java Version: 3.25.4
package com.google.firestore.v1;
public interface ListCollectionIdsRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.ListCollectionIdsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The parent document. In the format:
* `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
* For example:
* `projects/my-project/databases/my-database/documents/chatrooms/my-chatroom`
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The parent.
*/
java.lang.String getParent();
/**
*
*
*
* Required. The parent document. In the format:
* `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
* For example:
* `projects/my-project/databases/my-database/documents/chatrooms/my-chatroom`
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for parent.
*/
com.google.protobuf.ByteString getParentBytes();
/**
*
*
*
* The maximum number of results to return.
*
*
* int32 page_size = 2;
*
* @return The pageSize.
*/
int getPageSize();
/**
*
*
*
* A page token. Must be a value from
* [ListCollectionIdsResponse][google.firestore.v1.ListCollectionIdsResponse].
*
*
* string page_token = 3;
*
* @return The pageToken.
*/
java.lang.String getPageToken();
/**
*
*
*
* A page token. Must be a value from
* [ListCollectionIdsResponse][google.firestore.v1.ListCollectionIdsResponse].
*
*
* string page_token = 3;
*
* @return The bytes for pageToken.
*/
com.google.protobuf.ByteString getPageTokenBytes();
/**
*
*
*
* Reads documents as they were at the given time.
*
* This must be a microsecond precision timestamp within the past one hour,
* or if Point-in-Time Recovery is enabled, can additionally be a whole
* minute timestamp within the past 7 days.
*
*
* .google.protobuf.Timestamp read_time = 4;
*
* @return Whether the readTime field is set.
*/
boolean hasReadTime();
/**
*
*
*
* Reads documents as they were at the given time.
*
* This must be a microsecond precision timestamp within the past one hour,
* or if Point-in-Time Recovery is enabled, can additionally be a whole
* minute timestamp within the past 7 days.
*
*
* .google.protobuf.Timestamp read_time = 4;
*
* @return The readTime.
*/
com.google.protobuf.Timestamp getReadTime();
/**
*
*
*
* Reads documents as they were at the given time.
*
* This must be a microsecond precision timestamp within the past one hour,
* or if Point-in-Time Recovery is enabled, can additionally be a whole
* minute timestamp within the past 7 days.
*
*
* .google.protobuf.Timestamp read_time = 4;
*/
com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder();
com.google.firestore.v1.ListCollectionIdsRequest.ConsistencySelectorCase
getConsistencySelectorCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy