google-area120-tables-v1alpha1 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/area120/tables/v1alpha1/tables_service/client.rb +7 -0
- data/lib/google/area120/tables/v1alpha1/tables_service/rest/client.rb +7 -0
- data/lib/google/area120/tables/v1alpha1/version.rb +1 -1
- data/proto_docs/google/protobuf/struct.rb +12 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce22e9a011f2f3363a01c4bc31729e55280fe05133ba19db11e30260609ad882
|
4
|
+
data.tar.gz: 0b444cf6c86c47a3d3f995a9d6ab65ea546399c6c4ab5f350de8b6cddf6af9cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e78023def6c101cc32b7bf774b4a01ebbaf606205b841713f27ee98c8bd5b815770194aef525782127ce30488b8c01486355097fb835bc819e346ce6b6bd8982
|
7
|
+
data.tar.gz: 5ec94cabb920022d6882b898344e01c32786e5366c93f18d3103dd10c5b623d4da28928c9e4184be342306cdb220439a65b19dffb3c151a18d78e943ced2aebf
|
data/README.md
CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
86
86
|
|
87
87
|
## Supported Ruby Versions
|
88
88
|
|
89
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
90
90
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -1363,6 +1363,13 @@ module Google
|
|
1363
1363
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1364
1364
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1365
1365
|
# * (`nil`) indicating no credentials
|
1366
|
+
#
|
1367
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1368
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1369
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1370
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1371
|
+
# For more information, refer to [Validate credential configurations from external
|
1372
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1366
1373
|
# @return [::Object]
|
1367
1374
|
# @!attribute [rw] scope
|
1368
1375
|
# The OAuth scopes
|
@@ -1286,6 +1286,13 @@ module Google
|
|
1286
1286
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1287
1287
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1288
1288
|
# * (`nil`) indicating no credentials
|
1289
|
+
#
|
1290
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1291
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1292
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1293
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1294
|
+
# For more information, refer to [Validate credential configurations from external
|
1295
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1289
1296
|
# @return [::Object]
|
1290
1297
|
# @!attribute [rw] scope
|
1291
1298
|
# The OAuth scopes
|
@@ -53,21 +53,33 @@ module Google
|
|
53
53
|
# @!attribute [rw] null_value
|
54
54
|
# @return [::Google::Protobuf::NullValue]
|
55
55
|
# Represents a null value.
|
56
|
+
#
|
57
|
+
# Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
56
58
|
# @!attribute [rw] number_value
|
57
59
|
# @return [::Float]
|
58
60
|
# Represents a double value.
|
61
|
+
#
|
62
|
+
# Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
59
63
|
# @!attribute [rw] string_value
|
60
64
|
# @return [::String]
|
61
65
|
# Represents a string value.
|
66
|
+
#
|
67
|
+
# Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
62
68
|
# @!attribute [rw] bool_value
|
63
69
|
# @return [::Boolean]
|
64
70
|
# Represents a boolean value.
|
71
|
+
#
|
72
|
+
# Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
65
73
|
# @!attribute [rw] struct_value
|
66
74
|
# @return [::Google::Protobuf::Struct]
|
67
75
|
# Represents a structured value.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
68
78
|
# @!attribute [rw] list_value
|
69
79
|
# @return [::Google::Protobuf::ListValue]
|
70
80
|
# Represents a repeated `Value`.
|
81
|
+
#
|
82
|
+
# Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
71
83
|
class Value
|
72
84
|
include ::Google::Protobuf::MessageExts
|
73
85
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-area120-tables-v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -84,7 +83,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
84
83
|
licenses:
|
85
84
|
- Apache-2.0
|
86
85
|
metadata: {}
|
87
|
-
post_install_message:
|
88
86
|
rdoc_options: []
|
89
87
|
require_paths:
|
90
88
|
- lib
|
@@ -92,15 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
90
|
requirements:
|
93
91
|
- - ">="
|
94
92
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
93
|
+
version: '3.0'
|
96
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
95
|
requirements:
|
98
96
|
- - ">="
|
99
97
|
- !ruby/object:Gem::Version
|
100
98
|
version: '0'
|
101
99
|
requirements: []
|
102
|
-
rubygems_version: 3.
|
103
|
-
signing_key:
|
100
|
+
rubygems_version: 3.6.2
|
104
101
|
specification_version: 4
|
105
102
|
summary: API Client library for the Area 120 Tables V1alpha1 API
|
106
103
|
test_files: []
|