Skip to content

Commit

Permalink
feat: Add bloom filter related proto fields (#1285)
Browse files Browse the repository at this point in the history
* feat: Add bloom filter related proto fields

PiperOrigin-RevId: 529511263

Source-Link: googleapis/googleapis@b071320

Source-Link: googleapis/googleapis-gen@81dcde7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiODFkY2RlNzA4YTZlMzlkYTBmMmY0N2RjOGYxNmVlNWU2ODFhNTU5ZiJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed May 5, 2023
1 parent ff611b1 commit 9b14c1b
Show file tree
Hide file tree
Showing 14 changed files with 2,853 additions and 239 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright 2020 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/bloom_filter.proto

package com.google.firestore.v1;

public interface BitSequenceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.BitSequence)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* The bytes that encode the bit sequence.
* May have a length of zero.
* </pre>
*
* <code>bytes bitmap = 1;</code>
*
* @return The bitmap.
*/
com.google.protobuf.ByteString getBitmap();

/**
*
*
* <pre>
* The number of bits of the last byte in `bitmap` to ignore as "padding".
* If the length of `bitmap` is zero, then this value must be `0`.
* Otherwise, this value must be between 0 and 7, inclusive.
* </pre>
*
* <code>int32 padding = 2;</code>
*
* @return The padding.
*/
int getPadding();
}
Loading

0 comments on commit 9b14c1b

Please sign in to comment.