google-cloud-bigtable-v2 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/bigtable/v2/bigtable_pb.rb +3 -1
- data/lib/google/bigtable/v2/bigtable_services_pb.rb +2 -0
- data/lib/google/bigtable/v2/data_pb.rb +16 -1
- data/lib/google/bigtable/v2/feature_flags_pb.rb +1 -1
- data/lib/google/bigtable/v2/request_stats_pb.rb +1 -1
- data/lib/google/bigtable/v2/response_params_pb.rb +1 -1
- data/lib/google/bigtable/v2/types_pb.rb +68 -0
- data/lib/google/cloud/bigtable/v2/bigtable/client.rb +138 -0
- data/lib/google/cloud/bigtable/v2/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/bigtable/v2/bigtable.rb +76 -0
- data/proto_docs/google/bigtable/v2/data.rb +180 -1
- data/proto_docs/google/bigtable/v2/types.rb +353 -0
- data/proto_docs/google/type/date.rb +53 -0
- metadata +7 -4
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
23
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
24
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
25
|
+
# following:
|
26
|
+
#
|
27
|
+
# * A full date, with non-zero year, month, and day values
|
28
|
+
# * A month and day value, with a zero year, such as an anniversary
|
29
|
+
# * A year on its own, with zero month and day values
|
30
|
+
# * A year and month value, with a zero day, such as a credit card expiration
|
31
|
+
# date
|
32
|
+
#
|
33
|
+
# Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and
|
34
|
+
# `google.protobuf.Timestamp`.
|
35
|
+
# @!attribute [rw] year
|
36
|
+
# @return [::Integer]
|
37
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without
|
38
|
+
# a year.
|
39
|
+
# @!attribute [rw] month
|
40
|
+
# @return [::Integer]
|
41
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a
|
42
|
+
# month and day.
|
43
|
+
# @!attribute [rw] day
|
44
|
+
# @return [::Integer]
|
45
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
|
46
|
+
# to specify a year by itself or a year and month where the day isn't
|
47
|
+
# significant.
|
48
|
+
class Date
|
49
|
+
include ::Google::Protobuf::MessageExts
|
50
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigtable-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- lib/google/bigtable/v2/feature_flags_pb.rb
|
65
65
|
- lib/google/bigtable/v2/request_stats_pb.rb
|
66
66
|
- lib/google/bigtable/v2/response_params_pb.rb
|
67
|
+
- lib/google/bigtable/v2/types_pb.rb
|
67
68
|
- lib/google/cloud/bigtable/v2.rb
|
68
69
|
- lib/google/cloud/bigtable/v2/bigtable.rb
|
69
70
|
- lib/google/cloud/bigtable/v2/bigtable/client.rb
|
@@ -82,11 +83,13 @@ files:
|
|
82
83
|
- proto_docs/google/bigtable/v2/feature_flags.rb
|
83
84
|
- proto_docs/google/bigtable/v2/request_stats.rb
|
84
85
|
- proto_docs/google/bigtable/v2/response_params.rb
|
86
|
+
- proto_docs/google/bigtable/v2/types.rb
|
85
87
|
- proto_docs/google/protobuf/any.rb
|
86
88
|
- proto_docs/google/protobuf/duration.rb
|
87
89
|
- proto_docs/google/protobuf/timestamp.rb
|
88
90
|
- proto_docs/google/protobuf/wrappers.rb
|
89
91
|
- proto_docs/google/rpc/status.rb
|
92
|
+
- proto_docs/google/type/date.rb
|
90
93
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
91
94
|
licenses:
|
92
95
|
- Apache-2.0
|
@@ -109,6 +112,6 @@ requirements: []
|
|
109
112
|
rubygems_version: 3.5.6
|
110
113
|
signing_key:
|
111
114
|
specification_version: 4
|
112
|
-
summary: API for reading and writing the contents of
|
113
|
-
project.
|
115
|
+
summary: API for reading and writing the contents of Bigtable tables associated with
|
116
|
+
a Google Cloud project.
|
114
117
|
test_files: []
|