All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firestore.v1.CommitRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 3.29.1
Show newest version
/*
 * 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 CommitRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.firestore.v1.CommitRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Required. The database name. In the format:
   * `projects/{project_id}/databases/{database_id}`.
   * 
* * string database = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The database. */ java.lang.String getDatabase(); /** * * *
   * Required. The database name. In the format:
   * `projects/{project_id}/databases/{database_id}`.
   * 
* * string database = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for database. */ com.google.protobuf.ByteString getDatabaseBytes(); /** * * *
   * The writes to apply.
   *
   * Always executed atomically and in order.
   * 
* * repeated .google.firestore.v1.Write writes = 2; */ java.util.List getWritesList(); /** * * *
   * The writes to apply.
   *
   * Always executed atomically and in order.
   * 
* * repeated .google.firestore.v1.Write writes = 2; */ com.google.firestore.v1.Write getWrites(int index); /** * * *
   * The writes to apply.
   *
   * Always executed atomically and in order.
   * 
* * repeated .google.firestore.v1.Write writes = 2; */ int getWritesCount(); /** * * *
   * The writes to apply.
   *
   * Always executed atomically and in order.
   * 
* * repeated .google.firestore.v1.Write writes = 2; */ java.util.List getWritesOrBuilderList(); /** * * *
   * The writes to apply.
   *
   * Always executed atomically and in order.
   * 
* * repeated .google.firestore.v1.Write writes = 2; */ com.google.firestore.v1.WriteOrBuilder getWritesOrBuilder(int index); /** * * *
   * If set, applies all writes in this transaction, and commits it.
   * 
* * bytes transaction = 3; * * @return The transaction. */ com.google.protobuf.ByteString getTransaction(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy