com.google.bigtable.v2.ReadModifyWriteRuleOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
PROTO library for proto-google-cloud-bigtable-v2
/*
* 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/bigtable/v2/data.proto
// Protobuf Java Version: 3.25.4
package com.google.bigtable.v2;
public interface ReadModifyWriteRuleOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.ReadModifyWriteRule)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of the family to which the read/modify/write should be applied.
* Must match `[-_.a-zA-Z0-9]+`
*
*
* string family_name = 1;
*
* @return The familyName.
*/
java.lang.String getFamilyName();
/**
*
*
*
* The name of the family to which the read/modify/write should be applied.
* Must match `[-_.a-zA-Z0-9]+`
*
*
* string family_name = 1;
*
* @return The bytes for familyName.
*/
com.google.protobuf.ByteString getFamilyNameBytes();
/**
*
*
*
* The qualifier of the column to which the read/modify/write should be
* applied.
* Can be any byte string, including the empty string.
*
*
* bytes column_qualifier = 2;
*
* @return The columnQualifier.
*/
com.google.protobuf.ByteString getColumnQualifier();
/**
*
*
*
* Rule specifying that `append_value` be appended to the existing value.
* If the targeted cell is unset, it will be treated as containing the
* empty string.
*
*
* bytes append_value = 3;
*
* @return Whether the appendValue field is set.
*/
boolean hasAppendValue();
/**
*
*
*
* Rule specifying that `append_value` be appended to the existing value.
* If the targeted cell is unset, it will be treated as containing the
* empty string.
*
*
* bytes append_value = 3;
*
* @return The appendValue.
*/
com.google.protobuf.ByteString getAppendValue();
/**
*
*
*
* Rule specifying that `increment_amount` be added to the existing value.
* If the targeted cell is unset, it will be treated as containing a zero.
* Otherwise, the targeted cell must contain an 8-byte value (interpreted
* as a 64-bit big-endian signed integer), or the entire request will fail.
*
*
* int64 increment_amount = 4;
*
* @return Whether the incrementAmount field is set.
*/
boolean hasIncrementAmount();
/**
*
*
*
* Rule specifying that `increment_amount` be added to the existing value.
* If the targeted cell is unset, it will be treated as containing a zero.
* Otherwise, the targeted cell must contain an 8-byte value (interpreted
* as a 64-bit big-endian signed integer), or the entire request will fail.
*
*
* int64 increment_amount = 4;
*
* @return The incrementAmount.
*/
long getIncrementAmount();
com.google.bigtable.v2.ReadModifyWriteRule.RuleCase getRuleCase();
}