google-area120-tables-v1alpha1 0.8.1 → 0.9.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 +30 -20
- data/lib/google/area120/tables/v1alpha1/tables_service/client.rb +30 -13
- data/lib/google/area120/tables/v1alpha1/tables_service/rest/client.rb +30 -13
- data/lib/google/area120/tables/v1alpha1/tables_service/rest/service_stub.rb +110 -74
- data/lib/google/area120/tables/v1alpha1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52890d2347d33e4418b5cb02f31e913dd20c315dae4f32e8841e50fa47bc814a
|
4
|
+
data.tar.gz: 3c214ef478b722ed0b3591cbf909979b320035d1f08d37622de96b59691fc434
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cef5009399d22813a80e591627d1b08c5a26667748b25e7a735c2d035f83e1461e0a764f59ad29b7647e9e8baeda9453205347cd360b7f65b19c76c4883e03c
|
7
|
+
data.tar.gz: e2878bb71d561cb1070195d3884cb65b34554a9e5a97be9f465448cb5b9f40bbdf3a93a7624fd1ef04a508b776f471144a1c1daf93e15e8cae859bb34032671c
|
data/README.md
CHANGED
@@ -43,33 +43,43 @@ for class and method documentation.
|
|
43
43
|
See also the [Product Documentation](https://tables.area120.google.com/u/0/about#/)
|
44
44
|
for general usage information.
|
45
45
|
|
46
|
-
##
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
## Debug Logging
|
47
|
+
|
48
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
49
|
+
your application's integration with the API. When logging is activated, key
|
50
|
+
events such as requests and responses, along with data payloads and metadata
|
51
|
+
such as headers and client configuration, are logged to the standard error
|
52
|
+
stream.
|
53
|
+
|
54
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
55
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
56
|
+
customers, private keys, or other security data that could be compromising if
|
57
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
58
|
+
the principle of least access. Google also recommends that Client Library Debug
|
59
|
+
Logging be enabled only temporarily during active debugging, and not used
|
60
|
+
permanently in production.
|
61
|
+
|
62
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
63
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
64
|
+
list of client library gem names. This will select the default logging behavior,
|
65
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
66
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
67
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
68
|
+
results in logs appearing alongside your application logs in the
|
69
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
70
|
+
|
71
|
+
You can customize logging by modifying the `logger` configuration when
|
72
|
+
constructing a client object. For example:
|
55
73
|
|
56
74
|
```ruby
|
75
|
+
require "google/area120/tables/v1alpha1"
|
57
76
|
require "logger"
|
58
77
|
|
59
|
-
|
60
|
-
|
61
|
-
def logger
|
62
|
-
LOGGER
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
# Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
67
|
-
module GRPC
|
68
|
-
extend MyLogger
|
78
|
+
client = ::Google::Area120::Tables::V1alpha1::TablesService::Client.new do |config|
|
79
|
+
config.logger = Logger.new "my-app.log"
|
69
80
|
end
|
70
81
|
```
|
71
82
|
|
72
|
-
|
73
83
|
## Google Cloud Samples
|
74
84
|
|
75
85
|
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
@@ -197,8 +197,28 @@ module Google
|
|
197
197
|
universe_domain: @config.universe_domain,
|
198
198
|
channel_args: @config.channel_args,
|
199
199
|
interceptors: @config.interceptors,
|
200
|
-
channel_pool_config: @config.channel_pool
|
200
|
+
channel_pool_config: @config.channel_pool,
|
201
|
+
logger: @config.logger
|
201
202
|
)
|
203
|
+
|
204
|
+
@tables_service_stub.stub_logger&.info do |entry|
|
205
|
+
entry.set_system_name
|
206
|
+
entry.set_service
|
207
|
+
entry.message = "Created client for #{entry.service}"
|
208
|
+
entry.set_credentials_fields credentials
|
209
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
210
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
211
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
##
|
216
|
+
# The logger used for request/response debug logging.
|
217
|
+
#
|
218
|
+
# @return [Logger]
|
219
|
+
#
|
220
|
+
def logger
|
221
|
+
@tables_service_stub.logger
|
202
222
|
end
|
203
223
|
|
204
224
|
# Service calls
|
@@ -284,7 +304,6 @@ module Google
|
|
284
304
|
|
285
305
|
@tables_service_stub.call_rpc :get_table, request, options: options do |response, operation|
|
286
306
|
yield response, operation if block_given?
|
287
|
-
return response
|
288
307
|
end
|
289
308
|
rescue ::GRPC::BadStatus => e
|
290
309
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -377,7 +396,7 @@ module Google
|
|
377
396
|
@tables_service_stub.call_rpc :list_tables, request, options: options do |response, operation|
|
378
397
|
response = ::Gapic::PagedEnumerable.new @tables_service_stub, :list_tables, request, response, operation, options
|
379
398
|
yield response, operation if block_given?
|
380
|
-
|
399
|
+
throw :response, response
|
381
400
|
end
|
382
401
|
rescue ::GRPC::BadStatus => e
|
383
402
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -464,7 +483,6 @@ module Google
|
|
464
483
|
|
465
484
|
@tables_service_stub.call_rpc :get_workspace, request, options: options do |response, operation|
|
466
485
|
yield response, operation if block_given?
|
467
|
-
return response
|
468
486
|
end
|
469
487
|
rescue ::GRPC::BadStatus => e
|
470
488
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -557,7 +575,7 @@ module Google
|
|
557
575
|
@tables_service_stub.call_rpc :list_workspaces, request, options: options do |response, operation|
|
558
576
|
response = ::Gapic::PagedEnumerable.new @tables_service_stub, :list_workspaces, request, response, operation, options
|
559
577
|
yield response, operation if block_given?
|
560
|
-
|
578
|
+
throw :response, response
|
561
579
|
end
|
562
580
|
rescue ::GRPC::BadStatus => e
|
563
581
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -647,7 +665,6 @@ module Google
|
|
647
665
|
|
648
666
|
@tables_service_stub.call_rpc :get_row, request, options: options do |response, operation|
|
649
667
|
yield response, operation if block_given?
|
650
|
-
return response
|
651
668
|
end
|
652
669
|
rescue ::GRPC::BadStatus => e
|
653
670
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -758,7 +775,7 @@ module Google
|
|
758
775
|
@tables_service_stub.call_rpc :list_rows, request, options: options do |response, operation|
|
759
776
|
response = ::Gapic::PagedEnumerable.new @tables_service_stub, :list_rows, request, response, operation, options
|
760
777
|
yield response, operation if block_given?
|
761
|
-
|
778
|
+
throw :response, response
|
762
779
|
end
|
763
780
|
rescue ::GRPC::BadStatus => e
|
764
781
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -850,7 +867,6 @@ module Google
|
|
850
867
|
|
851
868
|
@tables_service_stub.call_rpc :create_row, request, options: options do |response, operation|
|
852
869
|
yield response, operation if block_given?
|
853
|
-
return response
|
854
870
|
end
|
855
871
|
rescue ::GRPC::BadStatus => e
|
856
872
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -941,7 +957,6 @@ module Google
|
|
941
957
|
|
942
958
|
@tables_service_stub.call_rpc :batch_create_rows, request, options: options do |response, operation|
|
943
959
|
yield response, operation if block_given?
|
944
|
-
return response
|
945
960
|
end
|
946
961
|
rescue ::GRPC::BadStatus => e
|
947
962
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1032,7 +1047,6 @@ module Google
|
|
1032
1047
|
|
1033
1048
|
@tables_service_stub.call_rpc :update_row, request, options: options do |response, operation|
|
1034
1049
|
yield response, operation if block_given?
|
1035
|
-
return response
|
1036
1050
|
end
|
1037
1051
|
rescue ::GRPC::BadStatus => e
|
1038
1052
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1123,7 +1137,6 @@ module Google
|
|
1123
1137
|
|
1124
1138
|
@tables_service_stub.call_rpc :batch_update_rows, request, options: options do |response, operation|
|
1125
1139
|
yield response, operation if block_given?
|
1126
|
-
return response
|
1127
1140
|
end
|
1128
1141
|
rescue ::GRPC::BadStatus => e
|
1129
1142
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1210,7 +1223,6 @@ module Google
|
|
1210
1223
|
|
1211
1224
|
@tables_service_stub.call_rpc :delete_row, request, options: options do |response, operation|
|
1212
1225
|
yield response, operation if block_given?
|
1213
|
-
return response
|
1214
1226
|
end
|
1215
1227
|
rescue ::GRPC::BadStatus => e
|
1216
1228
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1302,7 +1314,6 @@ module Google
|
|
1302
1314
|
|
1303
1315
|
@tables_service_stub.call_rpc :batch_delete_rows, request, options: options do |response, operation|
|
1304
1316
|
yield response, operation if block_given?
|
1305
|
-
return response
|
1306
1317
|
end
|
1307
1318
|
rescue ::GRPC::BadStatus => e
|
1308
1319
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1391,6 +1402,11 @@ module Google
|
|
1391
1402
|
# default endpoint URL. The default value of nil uses the environment
|
1392
1403
|
# universe (usually the default "googleapis.com" universe).
|
1393
1404
|
# @return [::String,nil]
|
1405
|
+
# @!attribute [rw] logger
|
1406
|
+
# A custom logger to use for request/response debug logging, or the value
|
1407
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1408
|
+
# explicitly disable logging.
|
1409
|
+
# @return [::Logger,:default,nil]
|
1394
1410
|
#
|
1395
1411
|
class Configuration
|
1396
1412
|
extend ::Gapic::Config
|
@@ -1415,6 +1431,7 @@ module Google
|
|
1415
1431
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1416
1432
|
config_attr :quota_project, nil, ::String, nil
|
1417
1433
|
config_attr :universe_domain, nil, ::String, nil
|
1434
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1418
1435
|
|
1419
1436
|
# @private
|
1420
1437
|
def initialize parent_config = nil
|
@@ -190,8 +190,28 @@ module Google
|
|
190
190
|
endpoint: @config.endpoint,
|
191
191
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
192
192
|
universe_domain: @config.universe_domain,
|
193
|
-
credentials: credentials
|
193
|
+
credentials: credentials,
|
194
|
+
logger: @config.logger
|
194
195
|
)
|
196
|
+
|
197
|
+
@tables_service_stub.logger(stub: true)&.info do |entry|
|
198
|
+
entry.set_system_name
|
199
|
+
entry.set_service
|
200
|
+
entry.message = "Created client for #{entry.service}"
|
201
|
+
entry.set_credentials_fields credentials
|
202
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
203
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
204
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
##
|
209
|
+
# The logger used for request/response debug logging.
|
210
|
+
#
|
211
|
+
# @return [Logger]
|
212
|
+
#
|
213
|
+
def logger
|
214
|
+
@tables_service_stub.logger
|
195
215
|
end
|
196
216
|
|
197
217
|
# Service calls
|
@@ -270,7 +290,6 @@ module Google
|
|
270
290
|
|
271
291
|
@tables_service_stub.get_table request, options do |result, operation|
|
272
292
|
yield result, operation if block_given?
|
273
|
-
return result
|
274
293
|
end
|
275
294
|
rescue ::Gapic::Rest::Error => e
|
276
295
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -364,7 +383,7 @@ module Google
|
|
364
383
|
@tables_service_stub.list_tables request, options do |result, operation|
|
365
384
|
result = ::Gapic::Rest::PagedEnumerable.new @tables_service_stub, :list_tables, "tables", request, result, options
|
366
385
|
yield result, operation if block_given?
|
367
|
-
|
386
|
+
throw :response, result
|
368
387
|
end
|
369
388
|
rescue ::Gapic::Rest::Error => e
|
370
389
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -444,7 +463,6 @@ module Google
|
|
444
463
|
|
445
464
|
@tables_service_stub.get_workspace request, options do |result, operation|
|
446
465
|
yield result, operation if block_given?
|
447
|
-
return result
|
448
466
|
end
|
449
467
|
rescue ::Gapic::Rest::Error => e
|
450
468
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -538,7 +556,7 @@ module Google
|
|
538
556
|
@tables_service_stub.list_workspaces request, options do |result, operation|
|
539
557
|
result = ::Gapic::Rest::PagedEnumerable.new @tables_service_stub, :list_workspaces, "workspaces", request, result, options
|
540
558
|
yield result, operation if block_given?
|
541
|
-
|
559
|
+
throw :response, result
|
542
560
|
end
|
543
561
|
rescue ::Gapic::Rest::Error => e
|
544
562
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -621,7 +639,6 @@ module Google
|
|
621
639
|
|
622
640
|
@tables_service_stub.get_row request, options do |result, operation|
|
623
641
|
yield result, operation if block_given?
|
624
|
-
return result
|
625
642
|
end
|
626
643
|
rescue ::Gapic::Rest::Error => e
|
627
644
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -725,7 +742,7 @@ module Google
|
|
725
742
|
@tables_service_stub.list_rows request, options do |result, operation|
|
726
743
|
result = ::Gapic::Rest::PagedEnumerable.new @tables_service_stub, :list_rows, "rows", request, result, options
|
727
744
|
yield result, operation if block_given?
|
728
|
-
|
745
|
+
throw :response, result
|
729
746
|
end
|
730
747
|
rescue ::Gapic::Rest::Error => e
|
731
748
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -810,7 +827,6 @@ module Google
|
|
810
827
|
|
811
828
|
@tables_service_stub.create_row request, options do |result, operation|
|
812
829
|
yield result, operation if block_given?
|
813
|
-
return result
|
814
830
|
end
|
815
831
|
rescue ::Gapic::Rest::Error => e
|
816
832
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -894,7 +910,6 @@ module Google
|
|
894
910
|
|
895
911
|
@tables_service_stub.batch_create_rows request, options do |result, operation|
|
896
912
|
yield result, operation if block_given?
|
897
|
-
return result
|
898
913
|
end
|
899
914
|
rescue ::Gapic::Rest::Error => e
|
900
915
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -978,7 +993,6 @@ module Google
|
|
978
993
|
|
979
994
|
@tables_service_stub.update_row request, options do |result, operation|
|
980
995
|
yield result, operation if block_given?
|
981
|
-
return result
|
982
996
|
end
|
983
997
|
rescue ::Gapic::Rest::Error => e
|
984
998
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1062,7 +1076,6 @@ module Google
|
|
1062
1076
|
|
1063
1077
|
@tables_service_stub.batch_update_rows request, options do |result, operation|
|
1064
1078
|
yield result, operation if block_given?
|
1065
|
-
return result
|
1066
1079
|
end
|
1067
1080
|
rescue ::Gapic::Rest::Error => e
|
1068
1081
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1142,7 +1155,6 @@ module Google
|
|
1142
1155
|
|
1143
1156
|
@tables_service_stub.delete_row request, options do |result, operation|
|
1144
1157
|
yield result, operation if block_given?
|
1145
|
-
return result
|
1146
1158
|
end
|
1147
1159
|
rescue ::Gapic::Rest::Error => e
|
1148
1160
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1227,7 +1239,6 @@ module Google
|
|
1227
1239
|
|
1228
1240
|
@tables_service_stub.batch_delete_rows request, options do |result, operation|
|
1229
1241
|
yield result, operation if block_given?
|
1230
|
-
return result
|
1231
1242
|
end
|
1232
1243
|
rescue ::Gapic::Rest::Error => e
|
1233
1244
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1307,6 +1318,11 @@ module Google
|
|
1307
1318
|
# default endpoint URL. The default value of nil uses the environment
|
1308
1319
|
# universe (usually the default "googleapis.com" universe).
|
1309
1320
|
# @return [::String,nil]
|
1321
|
+
# @!attribute [rw] logger
|
1322
|
+
# A custom logger to use for request/response debug logging, or the value
|
1323
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1324
|
+
# explicitly disable logging.
|
1325
|
+
# @return [::Logger,:default,nil]
|
1310
1326
|
#
|
1311
1327
|
class Configuration
|
1312
1328
|
extend ::Gapic::Config
|
@@ -1328,6 +1344,7 @@ module Google
|
|
1328
1344
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1329
1345
|
config_attr :quota_project, nil, ::String, nil
|
1330
1346
|
config_attr :universe_domain, nil, ::String, nil
|
1347
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1331
1348
|
|
1332
1349
|
# @private
|
1333
1350
|
def initialize parent_config = nil
|
@@ -30,7 +30,8 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
|
33
|
+
# @private
|
34
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
34
35
|
# These require statements are intentionally placed here to initialize
|
35
36
|
# the REST modules only when it's required.
|
36
37
|
require "gapic/rest"
|
@@ -40,7 +41,9 @@ module Google
|
|
40
41
|
universe_domain: universe_domain,
|
41
42
|
credentials: credentials,
|
42
43
|
numeric_enums: true,
|
43
|
-
|
44
|
+
service_name: self.class,
|
45
|
+
raise_faraday_errors: false,
|
46
|
+
logger: logger
|
44
47
|
end
|
45
48
|
|
46
49
|
##
|
@@ -61,6 +64,15 @@ module Google
|
|
61
64
|
@client_stub.endpoint
|
62
65
|
end
|
63
66
|
|
67
|
+
##
|
68
|
+
# The logger used for request/response debug logging.
|
69
|
+
#
|
70
|
+
# @return [Logger]
|
71
|
+
#
|
72
|
+
def logger stub: false
|
73
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
74
|
+
end
|
75
|
+
|
64
76
|
##
|
65
77
|
# Baseline implementation for the get_table REST call
|
66
78
|
#
|
@@ -87,16 +99,18 @@ module Google
|
|
87
99
|
|
88
100
|
response = @client_stub.make_http_request(
|
89
101
|
verb,
|
90
|
-
uri:
|
91
|
-
body:
|
92
|
-
params:
|
102
|
+
uri: uri,
|
103
|
+
body: body || "",
|
104
|
+
params: query_string_params,
|
105
|
+
method_name: "get_table",
|
93
106
|
options: options
|
94
107
|
)
|
95
108
|
operation = ::Gapic::Rest::TransportOperation.new response
|
96
109
|
result = ::Google::Area120::Tables::V1alpha1::Table.decode_json response.body, ignore_unknown_fields: true
|
97
|
-
|
98
|
-
|
99
|
-
|
110
|
+
catch :response do
|
111
|
+
yield result, operation if block_given?
|
112
|
+
result
|
113
|
+
end
|
100
114
|
end
|
101
115
|
|
102
116
|
##
|
@@ -125,16 +139,18 @@ module Google
|
|
125
139
|
|
126
140
|
response = @client_stub.make_http_request(
|
127
141
|
verb,
|
128
|
-
uri:
|
129
|
-
body:
|
130
|
-
params:
|
142
|
+
uri: uri,
|
143
|
+
body: body || "",
|
144
|
+
params: query_string_params,
|
145
|
+
method_name: "list_tables",
|
131
146
|
options: options
|
132
147
|
)
|
133
148
|
operation = ::Gapic::Rest::TransportOperation.new response
|
134
149
|
result = ::Google::Area120::Tables::V1alpha1::ListTablesResponse.decode_json response.body, ignore_unknown_fields: true
|
135
|
-
|
136
|
-
|
137
|
-
|
150
|
+
catch :response do
|
151
|
+
yield result, operation if block_given?
|
152
|
+
result
|
153
|
+
end
|
138
154
|
end
|
139
155
|
|
140
156
|
##
|
@@ -163,16 +179,18 @@ module Google
|
|
163
179
|
|
164
180
|
response = @client_stub.make_http_request(
|
165
181
|
verb,
|
166
|
-
uri:
|
167
|
-
body:
|
168
|
-
params:
|
182
|
+
uri: uri,
|
183
|
+
body: body || "",
|
184
|
+
params: query_string_params,
|
185
|
+
method_name: "get_workspace",
|
169
186
|
options: options
|
170
187
|
)
|
171
188
|
operation = ::Gapic::Rest::TransportOperation.new response
|
172
189
|
result = ::Google::Area120::Tables::V1alpha1::Workspace.decode_json response.body, ignore_unknown_fields: true
|
173
|
-
|
174
|
-
|
175
|
-
|
190
|
+
catch :response do
|
191
|
+
yield result, operation if block_given?
|
192
|
+
result
|
193
|
+
end
|
176
194
|
end
|
177
195
|
|
178
196
|
##
|
@@ -201,16 +219,18 @@ module Google
|
|
201
219
|
|
202
220
|
response = @client_stub.make_http_request(
|
203
221
|
verb,
|
204
|
-
uri:
|
205
|
-
body:
|
206
|
-
params:
|
222
|
+
uri: uri,
|
223
|
+
body: body || "",
|
224
|
+
params: query_string_params,
|
225
|
+
method_name: "list_workspaces",
|
207
226
|
options: options
|
208
227
|
)
|
209
228
|
operation = ::Gapic::Rest::TransportOperation.new response
|
210
229
|
result = ::Google::Area120::Tables::V1alpha1::ListWorkspacesResponse.decode_json response.body, ignore_unknown_fields: true
|
211
|
-
|
212
|
-
|
213
|
-
|
230
|
+
catch :response do
|
231
|
+
yield result, operation if block_given?
|
232
|
+
result
|
233
|
+
end
|
214
234
|
end
|
215
235
|
|
216
236
|
##
|
@@ -239,16 +259,18 @@ module Google
|
|
239
259
|
|
240
260
|
response = @client_stub.make_http_request(
|
241
261
|
verb,
|
242
|
-
uri:
|
243
|
-
body:
|
244
|
-
params:
|
262
|
+
uri: uri,
|
263
|
+
body: body || "",
|
264
|
+
params: query_string_params,
|
265
|
+
method_name: "get_row",
|
245
266
|
options: options
|
246
267
|
)
|
247
268
|
operation = ::Gapic::Rest::TransportOperation.new response
|
248
269
|
result = ::Google::Area120::Tables::V1alpha1::Row.decode_json response.body, ignore_unknown_fields: true
|
249
|
-
|
250
|
-
|
251
|
-
|
270
|
+
catch :response do
|
271
|
+
yield result, operation if block_given?
|
272
|
+
result
|
273
|
+
end
|
252
274
|
end
|
253
275
|
|
254
276
|
##
|
@@ -277,16 +299,18 @@ module Google
|
|
277
299
|
|
278
300
|
response = @client_stub.make_http_request(
|
279
301
|
verb,
|
280
|
-
uri:
|
281
|
-
body:
|
282
|
-
params:
|
302
|
+
uri: uri,
|
303
|
+
body: body || "",
|
304
|
+
params: query_string_params,
|
305
|
+
method_name: "list_rows",
|
283
306
|
options: options
|
284
307
|
)
|
285
308
|
operation = ::Gapic::Rest::TransportOperation.new response
|
286
309
|
result = ::Google::Area120::Tables::V1alpha1::ListRowsResponse.decode_json response.body, ignore_unknown_fields: true
|
287
|
-
|
288
|
-
|
289
|
-
|
310
|
+
catch :response do
|
311
|
+
yield result, operation if block_given?
|
312
|
+
result
|
313
|
+
end
|
290
314
|
end
|
291
315
|
|
292
316
|
##
|
@@ -315,16 +339,18 @@ module Google
|
|
315
339
|
|
316
340
|
response = @client_stub.make_http_request(
|
317
341
|
verb,
|
318
|
-
uri:
|
319
|
-
body:
|
320
|
-
params:
|
342
|
+
uri: uri,
|
343
|
+
body: body || "",
|
344
|
+
params: query_string_params,
|
345
|
+
method_name: "create_row",
|
321
346
|
options: options
|
322
347
|
)
|
323
348
|
operation = ::Gapic::Rest::TransportOperation.new response
|
324
349
|
result = ::Google::Area120::Tables::V1alpha1::Row.decode_json response.body, ignore_unknown_fields: true
|
325
|
-
|
326
|
-
|
327
|
-
|
350
|
+
catch :response do
|
351
|
+
yield result, operation if block_given?
|
352
|
+
result
|
353
|
+
end
|
328
354
|
end
|
329
355
|
|
330
356
|
##
|
@@ -353,16 +379,18 @@ module Google
|
|
353
379
|
|
354
380
|
response = @client_stub.make_http_request(
|
355
381
|
verb,
|
356
|
-
uri:
|
357
|
-
body:
|
358
|
-
params:
|
382
|
+
uri: uri,
|
383
|
+
body: body || "",
|
384
|
+
params: query_string_params,
|
385
|
+
method_name: "batch_create_rows",
|
359
386
|
options: options
|
360
387
|
)
|
361
388
|
operation = ::Gapic::Rest::TransportOperation.new response
|
362
389
|
result = ::Google::Area120::Tables::V1alpha1::BatchCreateRowsResponse.decode_json response.body, ignore_unknown_fields: true
|
363
|
-
|
364
|
-
|
365
|
-
|
390
|
+
catch :response do
|
391
|
+
yield result, operation if block_given?
|
392
|
+
result
|
393
|
+
end
|
366
394
|
end
|
367
395
|
|
368
396
|
##
|
@@ -391,16 +419,18 @@ module Google
|
|
391
419
|
|
392
420
|
response = @client_stub.make_http_request(
|
393
421
|
verb,
|
394
|
-
uri:
|
395
|
-
body:
|
396
|
-
params:
|
422
|
+
uri: uri,
|
423
|
+
body: body || "",
|
424
|
+
params: query_string_params,
|
425
|
+
method_name: "update_row",
|
397
426
|
options: options
|
398
427
|
)
|
399
428
|
operation = ::Gapic::Rest::TransportOperation.new response
|
400
429
|
result = ::Google::Area120::Tables::V1alpha1::Row.decode_json response.body, ignore_unknown_fields: true
|
401
|
-
|
402
|
-
|
403
|
-
|
430
|
+
catch :response do
|
431
|
+
yield result, operation if block_given?
|
432
|
+
result
|
433
|
+
end
|
404
434
|
end
|
405
435
|
|
406
436
|
##
|
@@ -429,16 +459,18 @@ module Google
|
|
429
459
|
|
430
460
|
response = @client_stub.make_http_request(
|
431
461
|
verb,
|
432
|
-
uri:
|
433
|
-
body:
|
434
|
-
params:
|
462
|
+
uri: uri,
|
463
|
+
body: body || "",
|
464
|
+
params: query_string_params,
|
465
|
+
method_name: "batch_update_rows",
|
435
466
|
options: options
|
436
467
|
)
|
437
468
|
operation = ::Gapic::Rest::TransportOperation.new response
|
438
469
|
result = ::Google::Area120::Tables::V1alpha1::BatchUpdateRowsResponse.decode_json response.body, ignore_unknown_fields: true
|
439
|
-
|
440
|
-
|
441
|
-
|
470
|
+
catch :response do
|
471
|
+
yield result, operation if block_given?
|
472
|
+
result
|
473
|
+
end
|
442
474
|
end
|
443
475
|
|
444
476
|
##
|
@@ -467,16 +499,18 @@ module Google
|
|
467
499
|
|
468
500
|
response = @client_stub.make_http_request(
|
469
501
|
verb,
|
470
|
-
uri:
|
471
|
-
body:
|
472
|
-
params:
|
502
|
+
uri: uri,
|
503
|
+
body: body || "",
|
504
|
+
params: query_string_params,
|
505
|
+
method_name: "delete_row",
|
473
506
|
options: options
|
474
507
|
)
|
475
508
|
operation = ::Gapic::Rest::TransportOperation.new response
|
476
509
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
477
|
-
|
478
|
-
|
479
|
-
|
510
|
+
catch :response do
|
511
|
+
yield result, operation if block_given?
|
512
|
+
result
|
513
|
+
end
|
480
514
|
end
|
481
515
|
|
482
516
|
##
|
@@ -505,16 +539,18 @@ module Google
|
|
505
539
|
|
506
540
|
response = @client_stub.make_http_request(
|
507
541
|
verb,
|
508
|
-
uri:
|
509
|
-
body:
|
510
|
-
params:
|
542
|
+
uri: uri,
|
543
|
+
body: body || "",
|
544
|
+
params: query_string_params,
|
545
|
+
method_name: "batch_delete_rows",
|
511
546
|
options: options
|
512
547
|
)
|
513
548
|
operation = ::Gapic::Rest::TransportOperation.new response
|
514
549
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
515
|
-
|
516
|
-
|
517
|
-
|
550
|
+
catch :response do
|
551
|
+
yield result, operation if block_given?
|
552
|
+
result
|
553
|
+
end
|
518
554
|
end
|
519
555
|
|
520
556
|
##
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -297,9 +306,28 @@ module Google
|
|
297
306
|
# @!attribute [rw] common
|
298
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
299
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
300
319
|
class GoSettings
|
301
320
|
include ::Google::Protobuf::MessageExts
|
302
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
303
331
|
end
|
304
332
|
|
305
333
|
# Describes the generator configuration for a method.
|
@@ -375,6 +403,17 @@ module Google
|
|
375
403
|
end
|
376
404
|
end
|
377
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
378
417
|
# The organization for which the client libraries are being published.
|
379
418
|
# Affects the url where generated docs are published, etc.
|
380
419
|
module ClientLibraryOrganization
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.9.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-
|
11
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.24.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: '0'
|
101
101
|
requirements: []
|
102
|
-
rubygems_version: 3.5.
|
102
|
+
rubygems_version: 3.5.23
|
103
103
|
signing_key:
|
104
104
|
specification_version: 4
|
105
105
|
summary: API Client library for the Area 120 Tables V1alpha1 API
|