google-cloud-beyond_corp-app_connectors-v1 0.5.0 → 0.6.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 +30 -21
- data/lib/google/cloud/beyond_corp/app_connectors/v1/app_connectors_service/client.rb +49 -13
- data/lib/google/cloud/beyond_corp/app_connectors/v1/app_connectors_service/operations.rb +25 -20
- data/lib/google/cloud/beyond_corp/app_connectors/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +74 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/longrunning/operations.rb +19 -14
- 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: cedf54af89828b82a39d5fdd440bedabba56dbb0558c617d6f6817ae027e7770
|
4
|
+
data.tar.gz: ea85080bf3fa62ae037f9451afe84dff7155d25f8999fd2459571eccf56775fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e59d45fdb508c471558755cd9a070c67111731850b94c8c599c254612a6914acc3fc85b051ee7432b63817a86669c51e6377be2e67d1965116b03108f2f8971
|
7
|
+
data.tar.gz: 3110df5483a3a8f7233aa95c77fae9644e38891a07da8baaf18391213ee69035cef28bbdd24f8fb4510430fa3594aaee96e0c7021f67ba470d9e54165543a156
|
data/README.md
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.
|
4
4
|
|
5
|
-
Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.
|
6
5
|
|
7
6
|
https://github.com/googleapis/google-cloud-ruby
|
8
7
|
|
@@ -43,33 +42,43 @@ for class and method documentation.
|
|
43
42
|
See also the [Product Documentation](https://cloud.google.com/beyondcorp/)
|
44
43
|
for general usage information.
|
45
44
|
|
46
|
-
##
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
45
|
+
## Debug Logging
|
46
|
+
|
47
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
48
|
+
your application's integration with the API. When logging is activated, key
|
49
|
+
events such as requests and responses, along with data payloads and metadata
|
50
|
+
such as headers and client configuration, are logged to the standard error
|
51
|
+
stream.
|
52
|
+
|
53
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
54
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
55
|
+
customers, private keys, or other security data that could be compromising if
|
56
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
57
|
+
the principle of least access. Google also recommends that Client Library Debug
|
58
|
+
Logging be enabled only temporarily during active debugging, and not used
|
59
|
+
permanently in production.
|
60
|
+
|
61
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
62
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
63
|
+
list of client library gem names. This will select the default logging behavior,
|
64
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
65
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
66
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
67
|
+
results in logs appearing alongside your application logs in the
|
68
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
69
|
+
|
70
|
+
You can customize logging by modifying the `logger` configuration when
|
71
|
+
constructing a client object. For example:
|
55
72
|
|
56
73
|
```ruby
|
74
|
+
require "google/cloud/beyond_corp/app_connectors/v1"
|
57
75
|
require "logger"
|
58
76
|
|
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
|
77
|
+
client = ::Google::Cloud::BeyondCorp::AppConnectors::V1::AppConnectorsService::Client.new do |config|
|
78
|
+
config.logger = Logger.new "my-app.log"
|
69
79
|
end
|
70
80
|
```
|
71
81
|
|
72
|
-
|
73
82
|
## Google Cloud Samples
|
74
83
|
|
75
84
|
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
@@ -46,6 +46,9 @@ module Google
|
|
46
46
|
# (create/read/update/delete) BeyondCorp AppConnectors.
|
47
47
|
#
|
48
48
|
class Client
|
49
|
+
# @private
|
50
|
+
API_VERSION = ""
|
51
|
+
|
49
52
|
# @private
|
50
53
|
DEFAULT_ENDPOINT_TEMPLATE = "beyondcorp.$UNIVERSE_DOMAIN$"
|
51
54
|
|
@@ -177,14 +180,26 @@ module Google
|
|
177
180
|
universe_domain: @config.universe_domain,
|
178
181
|
channel_args: @config.channel_args,
|
179
182
|
interceptors: @config.interceptors,
|
180
|
-
channel_pool_config: @config.channel_pool
|
183
|
+
channel_pool_config: @config.channel_pool,
|
184
|
+
logger: @config.logger
|
181
185
|
)
|
182
186
|
|
187
|
+
@app_connectors_service_stub.stub_logger&.info do |entry|
|
188
|
+
entry.set_system_name
|
189
|
+
entry.set_service
|
190
|
+
entry.message = "Created client for #{entry.service}"
|
191
|
+
entry.set_credentials_fields credentials
|
192
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
193
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
194
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
195
|
+
end
|
196
|
+
|
183
197
|
@location_client = Google::Cloud::Location::Locations::Client.new do |config|
|
184
198
|
config.credentials = credentials
|
185
199
|
config.quota_project = @quota_project_id
|
186
200
|
config.endpoint = @app_connectors_service_stub.endpoint
|
187
201
|
config.universe_domain = @app_connectors_service_stub.universe_domain
|
202
|
+
config.logger = @app_connectors_service_stub.logger if config.respond_to? :logger=
|
188
203
|
end
|
189
204
|
|
190
205
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
|
@@ -192,6 +207,7 @@ module Google
|
|
192
207
|
config.quota_project = @quota_project_id
|
193
208
|
config.endpoint = @app_connectors_service_stub.endpoint
|
194
209
|
config.universe_domain = @app_connectors_service_stub.universe_domain
|
210
|
+
config.logger = @app_connectors_service_stub.logger if config.respond_to? :logger=
|
195
211
|
end
|
196
212
|
end
|
197
213
|
|
@@ -216,6 +232,15 @@ module Google
|
|
216
232
|
#
|
217
233
|
attr_reader :iam_policy_client
|
218
234
|
|
235
|
+
##
|
236
|
+
# The logger used for request/response debug logging.
|
237
|
+
#
|
238
|
+
# @return [Logger]
|
239
|
+
#
|
240
|
+
def logger
|
241
|
+
@app_connectors_service_stub.logger
|
242
|
+
end
|
243
|
+
|
219
244
|
# Service calls
|
220
245
|
|
221
246
|
##
|
@@ -295,10 +320,11 @@ module Google
|
|
295
320
|
# Customize the options with defaults
|
296
321
|
metadata = @config.rpcs.list_app_connectors.metadata.to_h
|
297
322
|
|
298
|
-
# Set x-goog-api-client
|
323
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
299
324
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
300
325
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
301
326
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
327
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
302
328
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
303
329
|
|
304
330
|
header_params = {}
|
@@ -320,7 +346,7 @@ module Google
|
|
320
346
|
@app_connectors_service_stub.call_rpc :list_app_connectors, request, options: options do |response, operation|
|
321
347
|
response = ::Gapic::PagedEnumerable.new @app_connectors_service_stub, :list_app_connectors, request, response, operation, options
|
322
348
|
yield response, operation if block_given?
|
323
|
-
|
349
|
+
throw :response, response
|
324
350
|
end
|
325
351
|
rescue ::GRPC::BadStatus => e
|
326
352
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -382,10 +408,11 @@ module Google
|
|
382
408
|
# Customize the options with defaults
|
383
409
|
metadata = @config.rpcs.get_app_connector.metadata.to_h
|
384
410
|
|
385
|
-
# Set x-goog-api-client
|
411
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
386
412
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
387
413
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
388
414
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
415
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
389
416
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
390
417
|
|
391
418
|
header_params = {}
|
@@ -406,7 +433,6 @@ module Google
|
|
406
433
|
|
407
434
|
@app_connectors_service_stub.call_rpc :get_app_connector, request, options: options do |response, operation|
|
408
435
|
yield response, operation if block_given?
|
409
|
-
return response
|
410
436
|
end
|
411
437
|
rescue ::GRPC::BadStatus => e
|
412
438
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -500,10 +526,11 @@ module Google
|
|
500
526
|
# Customize the options with defaults
|
501
527
|
metadata = @config.rpcs.create_app_connector.metadata.to_h
|
502
528
|
|
503
|
-
# Set x-goog-api-client
|
529
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
504
530
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
505
531
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
506
532
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
533
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
507
534
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
508
535
|
|
509
536
|
header_params = {}
|
@@ -525,7 +552,7 @@ module Google
|
|
525
552
|
@app_connectors_service_stub.call_rpc :create_app_connector, request, options: options do |response, operation|
|
526
553
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
527
554
|
yield response, operation if block_given?
|
528
|
-
|
555
|
+
throw :response, response
|
529
556
|
end
|
530
557
|
rescue ::GRPC::BadStatus => e
|
531
558
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -617,10 +644,11 @@ module Google
|
|
617
644
|
# Customize the options with defaults
|
618
645
|
metadata = @config.rpcs.update_app_connector.metadata.to_h
|
619
646
|
|
620
|
-
# Set x-goog-api-client
|
647
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
621
648
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
622
649
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
623
650
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
651
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
624
652
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
625
653
|
|
626
654
|
header_params = {}
|
@@ -642,7 +670,7 @@ module Google
|
|
642
670
|
@app_connectors_service_stub.call_rpc :update_app_connector, request, options: options do |response, operation|
|
643
671
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
644
672
|
yield response, operation if block_given?
|
645
|
-
|
673
|
+
throw :response, response
|
646
674
|
end
|
647
675
|
rescue ::GRPC::BadStatus => e
|
648
676
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -728,10 +756,11 @@ module Google
|
|
728
756
|
# Customize the options with defaults
|
729
757
|
metadata = @config.rpcs.delete_app_connector.metadata.to_h
|
730
758
|
|
731
|
-
# Set x-goog-api-client
|
759
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
732
760
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
733
761
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
734
762
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
763
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
735
764
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
736
765
|
|
737
766
|
header_params = {}
|
@@ -753,7 +782,7 @@ module Google
|
|
753
782
|
@app_connectors_service_stub.call_rpc :delete_app_connector, request, options: options do |response, operation|
|
754
783
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
755
784
|
yield response, operation if block_given?
|
756
|
-
|
785
|
+
throw :response, response
|
757
786
|
end
|
758
787
|
rescue ::GRPC::BadStatus => e
|
759
788
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -841,10 +870,11 @@ module Google
|
|
841
870
|
# Customize the options with defaults
|
842
871
|
metadata = @config.rpcs.report_status.metadata.to_h
|
843
872
|
|
844
|
-
# Set x-goog-api-client
|
873
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
845
874
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
846
875
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
847
876
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
877
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
848
878
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
849
879
|
|
850
880
|
header_params = {}
|
@@ -866,7 +896,7 @@ module Google
|
|
866
896
|
@app_connectors_service_stub.call_rpc :report_status, request, options: options do |response, operation|
|
867
897
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
868
898
|
yield response, operation if block_given?
|
869
|
-
|
899
|
+
throw :response, response
|
870
900
|
end
|
871
901
|
rescue ::GRPC::BadStatus => e
|
872
902
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -955,6 +985,11 @@ module Google
|
|
955
985
|
# default endpoint URL. The default value of nil uses the environment
|
956
986
|
# universe (usually the default "googleapis.com" universe).
|
957
987
|
# @return [::String,nil]
|
988
|
+
# @!attribute [rw] logger
|
989
|
+
# A custom logger to use for request/response debug logging, or the value
|
990
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
991
|
+
# explicitly disable logging.
|
992
|
+
# @return [::Logger,:default,nil]
|
958
993
|
#
|
959
994
|
class Configuration
|
960
995
|
extend ::Gapic::Config
|
@@ -979,6 +1014,7 @@ module Google
|
|
979
1014
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
980
1015
|
config_attr :quota_project, nil, ::String, nil
|
981
1016
|
config_attr :universe_domain, nil, ::String, nil
|
1017
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
982
1018
|
|
983
1019
|
# @private
|
984
1020
|
def initialize parent_config = nil
|
@@ -27,6 +27,9 @@ module Google
|
|
27
27
|
module AppConnectorsService
|
28
28
|
# Service that implements Longrunning Operations API.
|
29
29
|
class Operations
|
30
|
+
# @private
|
31
|
+
API_VERSION = ""
|
32
|
+
|
30
33
|
# @private
|
31
34
|
DEFAULT_ENDPOINT_TEMPLATE = "beyondcorp.$UNIVERSE_DOMAIN$"
|
32
35
|
|
@@ -122,14 +125,6 @@ module Google
|
|
122
125
|
# Lists operations that match the specified filter in the request. If the
|
123
126
|
# server doesn't support this method, it returns `UNIMPLEMENTED`.
|
124
127
|
#
|
125
|
-
# NOTE: the `name` binding allows API services to override the binding
|
126
|
-
# to use different resource name schemes, such as `users/*/operations`. To
|
127
|
-
# override the binding, API services can add a binding such as
|
128
|
-
# `"/v1/{name=users/*}/operations"` to their service configuration.
|
129
|
-
# For backwards compatibility, the default name includes the operations
|
130
|
-
# collection id, however overriding users must ensure the name binding
|
131
|
-
# is the parent resource, without the operations collection id.
|
132
|
-
#
|
133
128
|
# @overload list_operations(request, options = nil)
|
134
129
|
# Pass arguments to `list_operations` via a request object, either of type
|
135
130
|
# {::Google::Longrunning::ListOperationsRequest} or an equivalent Hash.
|
@@ -192,10 +187,11 @@ module Google
|
|
192
187
|
# Customize the options with defaults
|
193
188
|
metadata = @config.rpcs.list_operations.metadata.to_h
|
194
189
|
|
195
|
-
# Set x-goog-api-client
|
190
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
196
191
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
197
192
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
198
193
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
194
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
199
195
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
200
196
|
|
201
197
|
header_params = {}
|
@@ -218,7 +214,7 @@ module Google
|
|
218
214
|
wrap_lro_operation = ->(op_response) { ::Gapic::Operation.new op_response, @operations_client }
|
219
215
|
response = ::Gapic::PagedEnumerable.new @operations_stub, :list_operations, request, response, operation, options, format_resource: wrap_lro_operation
|
220
216
|
yield response, operation if block_given?
|
221
|
-
|
217
|
+
throw :response, response
|
222
218
|
end
|
223
219
|
rescue ::GRPC::BadStatus => e
|
224
220
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -288,10 +284,11 @@ module Google
|
|
288
284
|
# Customize the options with defaults
|
289
285
|
metadata = @config.rpcs.get_operation.metadata.to_h
|
290
286
|
|
291
|
-
# Set x-goog-api-client
|
287
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
292
288
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
293
289
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
294
290
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
291
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
295
292
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
296
293
|
|
297
294
|
header_params = {}
|
@@ -313,7 +310,7 @@ module Google
|
|
313
310
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
314
311
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
315
312
|
yield response, operation if block_given?
|
316
|
-
|
313
|
+
throw :response, response
|
317
314
|
end
|
318
315
|
rescue ::GRPC::BadStatus => e
|
319
316
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -377,10 +374,11 @@ module Google
|
|
377
374
|
# Customize the options with defaults
|
378
375
|
metadata = @config.rpcs.delete_operation.metadata.to_h
|
379
376
|
|
380
|
-
# Set x-goog-api-client
|
377
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
381
378
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
382
379
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
383
380
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
381
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
384
382
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
385
383
|
|
386
384
|
header_params = {}
|
@@ -401,7 +399,6 @@ module Google
|
|
401
399
|
|
402
400
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
403
401
|
yield response, operation if block_given?
|
404
|
-
return response
|
405
402
|
end
|
406
403
|
rescue ::GRPC::BadStatus => e
|
407
404
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -416,8 +413,9 @@ module Google
|
|
416
413
|
# other methods to check whether the cancellation succeeded or whether the
|
417
414
|
# operation completed despite cancellation. On successful cancellation,
|
418
415
|
# the operation is not deleted; instead, it becomes an operation with
|
419
|
-
# an {::Google::Longrunning::Operation#error Operation.error} value with a
|
420
|
-
# corresponding to
|
416
|
+
# an {::Google::Longrunning::Operation#error Operation.error} value with a
|
417
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of `1`, corresponding to
|
418
|
+
# `Code.CANCELLED`.
|
421
419
|
#
|
422
420
|
# @overload cancel_operation(request, options = nil)
|
423
421
|
# Pass arguments to `cancel_operation` via a request object, either of type
|
@@ -471,10 +469,11 @@ module Google
|
|
471
469
|
# Customize the options with defaults
|
472
470
|
metadata = @config.rpcs.cancel_operation.metadata.to_h
|
473
471
|
|
474
|
-
# Set x-goog-api-client
|
472
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
475
473
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
476
474
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
477
475
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
476
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
478
477
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
479
478
|
|
480
479
|
header_params = {}
|
@@ -495,7 +494,6 @@ module Google
|
|
495
494
|
|
496
495
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
497
496
|
yield response, operation if block_given?
|
498
|
-
return response
|
499
497
|
end
|
500
498
|
rescue ::GRPC::BadStatus => e
|
501
499
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -575,10 +573,11 @@ module Google
|
|
575
573
|
# Customize the options with defaults
|
576
574
|
metadata = @config.rpcs.wait_operation.metadata.to_h
|
577
575
|
|
578
|
-
# Set x-goog-api-client
|
576
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
579
577
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
580
578
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
581
579
|
gapic_version: ::Google::Cloud::BeyondCorp::AppConnectors::V1::VERSION
|
580
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
582
581
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
583
582
|
|
584
583
|
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
@@ -592,7 +591,7 @@ module Google
|
|
592
591
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
593
592
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
594
593
|
yield response, operation if block_given?
|
595
|
-
|
594
|
+
throw :response, response
|
596
595
|
end
|
597
596
|
rescue ::GRPC::BadStatus => e
|
598
597
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -681,6 +680,11 @@ module Google
|
|
681
680
|
# default endpoint URL. The default value of nil uses the environment
|
682
681
|
# universe (usually the default "googleapis.com" universe).
|
683
682
|
# @return [::String,nil]
|
683
|
+
# @!attribute [rw] logger
|
684
|
+
# A custom logger to use for request/response debug logging, or the value
|
685
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
686
|
+
# explicitly disable logging.
|
687
|
+
# @return [::Logger,:default,nil]
|
684
688
|
#
|
685
689
|
class Configuration
|
686
690
|
extend ::Gapic::Config
|
@@ -705,6 +709,7 @@ module Google
|
|
705
709
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
706
710
|
config_attr :quota_project, nil, ::String, nil
|
707
711
|
config_attr :universe_domain, nil, ::String, nil
|
712
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
708
713
|
|
709
714
|
# @private
|
710
715
|
def initialize parent_config = nil
|
@@ -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
|
@@ -118,6 +121,10 @@ module Google
|
|
118
121
|
# @return [::String]
|
119
122
|
# Optional link to proto reference documentation. Example:
|
120
123
|
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
124
|
+
# @!attribute [rw] rest_reference_documentation_uri
|
125
|
+
# @return [::String]
|
126
|
+
# Optional link to REST reference documentation. Example:
|
127
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rest
|
121
128
|
class Publishing
|
122
129
|
include ::Google::Protobuf::MessageExts
|
123
130
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -192,9 +199,32 @@ module Google
|
|
192
199
|
# @!attribute [rw] common
|
193
200
|
# @return [::Google::Api::CommonLanguageSettings]
|
194
201
|
# Some settings.
|
202
|
+
# @!attribute [rw] experimental_features
|
203
|
+
# @return [::Google::Api::PythonSettings::ExperimentalFeatures]
|
204
|
+
# Experimental features to be included during client library generation.
|
195
205
|
class PythonSettings
|
196
206
|
include ::Google::Protobuf::MessageExts
|
197
207
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
208
|
+
|
209
|
+
# Experimental features to be included during client library generation.
|
210
|
+
# These fields will be deprecated once the feature graduates and is enabled
|
211
|
+
# by default.
|
212
|
+
# @!attribute [rw] rest_async_io_enabled
|
213
|
+
# @return [::Boolean]
|
214
|
+
# Enables generation of asynchronous REST clients if `rest` transport is
|
215
|
+
# enabled. By default, asynchronous REST clients will not be generated.
|
216
|
+
# This feature will be enabled by default 1 month after launching the
|
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.
|
224
|
+
class ExperimentalFeatures
|
225
|
+
include ::Google::Protobuf::MessageExts
|
226
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
227
|
+
end
|
198
228
|
end
|
199
229
|
|
200
230
|
# Settings for Node client libraries.
|
@@ -276,9 +306,28 @@ module Google
|
|
276
306
|
# @!attribute [rw] common
|
277
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
278
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
|
279
319
|
class GoSettings
|
280
320
|
include ::Google::Protobuf::MessageExts
|
281
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
|
282
331
|
end
|
283
332
|
|
284
333
|
# Describes the generator configuration for a method.
|
@@ -286,6 +335,13 @@ module Google
|
|
286
335
|
# @return [::String]
|
287
336
|
# The fully qualified name of the method, for which the options below apply.
|
288
337
|
# This is used to find the method to apply the options.
|
338
|
+
#
|
339
|
+
# Example:
|
340
|
+
#
|
341
|
+
# publishing:
|
342
|
+
# method_settings:
|
343
|
+
# - selector: google.storage.control.v2.StorageControl.CreateFolder
|
344
|
+
# # method settings for CreateFolder...
|
289
345
|
# @!attribute [rw] long_running
|
290
346
|
# @return [::Google::Api::MethodSettings::LongRunning]
|
291
347
|
# Describes settings to use for long-running operations when generating
|
@@ -294,17 +350,14 @@ module Google
|
|
294
350
|
#
|
295
351
|
# Example of a YAML configuration::
|
296
352
|
#
|
297
|
-
#
|
298
|
-
#
|
353
|
+
# publishing:
|
354
|
+
# method_settings:
|
299
355
|
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
300
356
|
# long_running:
|
301
|
-
# initial_poll_delay:
|
302
|
-
# seconds: 60 # 1 minute
|
357
|
+
# initial_poll_delay: 60s # 1 minute
|
303
358
|
# poll_delay_multiplier: 1.5
|
304
|
-
# max_poll_delay:
|
305
|
-
#
|
306
|
-
# total_poll_timeout:
|
307
|
-
# seconds: 54000 # 90 minutes
|
359
|
+
# max_poll_delay: 360s # 6 minutes
|
360
|
+
# total_poll_timeout: 54000s # 90 minutes
|
308
361
|
# @!attribute [rw] auto_populated_fields
|
309
362
|
# @return [::Array<::String>]
|
310
363
|
# List of top-level fields of the request message, that should be
|
@@ -313,8 +366,8 @@ module Google
|
|
313
366
|
#
|
314
367
|
# Example of a YAML configuration:
|
315
368
|
#
|
316
|
-
#
|
317
|
-
#
|
369
|
+
# publishing:
|
370
|
+
# method_settings:
|
318
371
|
# - selector: google.example.v1.ExampleService.CreateExample
|
319
372
|
# auto_populated_fields:
|
320
373
|
# - request_id
|
@@ -350,6 +403,17 @@ module Google
|
|
350
403
|
end
|
351
404
|
end
|
352
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
|
+
|
353
417
|
# The organization for which the client libraries are being published.
|
354
418
|
# Affects the url where generated docs are published, etc.
|
355
419
|
module ClientLibraryOrganization
|
@@ -124,8 +124,13 @@ module Google
|
|
124
124
|
# @return [::String]
|
125
125
|
# The plural name used in the resource name and permission names, such as
|
126
126
|
# 'projects' for the resource name of 'projects/\\{project}' and the permission
|
127
|
-
# name of 'cloudresourcemanager.googleapis.com/projects.get'.
|
128
|
-
#
|
127
|
+
# name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
|
128
|
+
# to this is for Nested Collections that have stuttering names, as defined
|
129
|
+
# in [AIP-122](https://google.aip.dev/122#nested-collections), where the
|
130
|
+
# collection ID in the resource name pattern does not necessarily directly
|
131
|
+
# match the `plural` value.
|
132
|
+
#
|
133
|
+
# It is the same concept of the `plural` field in k8s CRD spec
|
129
134
|
# https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
|
130
135
|
#
|
131
136
|
# Note: The plural form is required even for singleton resources. See
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-beyond_corp-app_connectors-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
146
|
- !ruby/object:Gem::Version
|
147
147
|
version: '0'
|
148
148
|
requirements: []
|
149
|
-
rubygems_version: 3.5.
|
149
|
+
rubygems_version: 3.5.23
|
150
150
|
signing_key:
|
151
151
|
specification_version: 4
|
152
152
|
summary: Beyondcorp Enterprise provides identity and context aware access controls
|