google-apis-connectors_v1 0.75.0 → 0.77.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b14ad965ece4164b7b51fa6138d66fd03e6b3cc488602435debe614444e30967
|
4
|
+
data.tar.gz: 9a41907fd0cf32d3c3d43304883d91f4fb933a22ca8e3dc64235ed61ebc5316a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be4ca6a575c906ebb62f1d9bcec8cb2474d2609840e8d1da9f349d2123f63de39766d3388b8769332437a88f13ea31144126561ebdc815312422a43629822264
|
7
|
+
data.tar.gz: 4fdf1356d76ce0ac223c8b1ae260902a99663a972ce85bf92060fd88f480f3e833d83135404e023e82eb2a8f9a5f6ec067ee0e5fcfb38ade6ee06a2a5a768e39
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.77.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250813
|
6
|
+
|
7
|
+
### v0.76.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250721
|
10
|
+
|
3
11
|
### v0.75.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250703
|
@@ -1237,10 +1237,11 @@ module Google
|
|
1237
1237
|
attr_accessor :migrate_tls
|
1238
1238
|
alias_method :migrate_tls?, :migrate_tls
|
1239
1239
|
|
1240
|
-
#
|
1241
|
-
#
|
1242
|
-
#
|
1243
|
-
|
1240
|
+
# NetworkEgressModeOverride provides the network egress mode override for a
|
1241
|
+
# connector.
|
1242
|
+
# Corresponds to the JSON property `networkEgressModeOverride`
|
1243
|
+
# @return [Google::Apis::ConnectorsV1::NetworkEgressModeOverride]
|
1244
|
+
attr_accessor :network_egress_mode_override
|
1244
1245
|
|
1245
1246
|
# Indicate whether cloud spanner is required for connector job.
|
1246
1247
|
# Corresponds to the JSON property `provisionCloudSpanner`
|
@@ -1289,7 +1290,7 @@ module Google
|
|
1289
1290
|
@max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
|
1290
1291
|
@migrate_deployment_model = args[:migrate_deployment_model] if args.key?(:migrate_deployment_model)
|
1291
1292
|
@migrate_tls = args[:migrate_tls] if args.key?(:migrate_tls)
|
1292
|
-
@
|
1293
|
+
@network_egress_mode_override = args[:network_egress_mode_override] if args.key?(:network_egress_mode_override)
|
1293
1294
|
@provision_cloud_spanner = args[:provision_cloud_spanner] if args.key?(:provision_cloud_spanner)
|
1294
1295
|
@provision_memstore = args[:provision_memstore] if args.key?(:provision_memstore)
|
1295
1296
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
@@ -5132,6 +5133,42 @@ module Google
|
|
5132
5133
|
end
|
5133
5134
|
end
|
5134
5135
|
|
5136
|
+
# NetworkEgressModeOverride provides the network egress mode override for a
|
5137
|
+
# connector.
|
5138
|
+
class NetworkEgressModeOverride
|
5139
|
+
include Google::Apis::Core::Hashable
|
5140
|
+
|
5141
|
+
# boolean should be set to true to make sure only eventing enabled connections
|
5142
|
+
# are migrated to direct vpc egress.
|
5143
|
+
# Corresponds to the JSON property `isEventingOverrideEnabled`
|
5144
|
+
# @return [Boolean]
|
5145
|
+
attr_accessor :is_eventing_override_enabled
|
5146
|
+
alias_method :is_eventing_override_enabled?, :is_eventing_override_enabled
|
5147
|
+
|
5148
|
+
# boolean should be set to true to make sure only async operations enabled
|
5149
|
+
# connections are migrated to direct vpc egress.
|
5150
|
+
# Corresponds to the JSON property `isJobsOverrideEnabled`
|
5151
|
+
# @return [Boolean]
|
5152
|
+
attr_accessor :is_jobs_override_enabled
|
5153
|
+
alias_method :is_jobs_override_enabled?, :is_jobs_override_enabled
|
5154
|
+
|
5155
|
+
# Determines the VPC Egress mode for the connector.
|
5156
|
+
# Corresponds to the JSON property `networkEgressMode`
|
5157
|
+
# @return [String]
|
5158
|
+
attr_accessor :network_egress_mode
|
5159
|
+
|
5160
|
+
def initialize(**args)
|
5161
|
+
update!(**args)
|
5162
|
+
end
|
5163
|
+
|
5164
|
+
# Update properties of this object
|
5165
|
+
def update!(**args)
|
5166
|
+
@is_eventing_override_enabled = args[:is_eventing_override_enabled] if args.key?(:is_eventing_override_enabled)
|
5167
|
+
@is_jobs_override_enabled = args[:is_jobs_override_enabled] if args.key?(:is_jobs_override_enabled)
|
5168
|
+
@network_egress_mode = args[:network_egress_mode] if args.key?(:network_egress_mode)
|
5169
|
+
end
|
5170
|
+
end
|
5171
|
+
|
5135
5172
|
# Node configuration for the connection.
|
5136
5173
|
class NodeConfig
|
5137
5174
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.77.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250813"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -676,6 +676,12 @@ module Google
|
|
676
676
|
include Google::Apis::Core::JsonObjectSupport
|
677
677
|
end
|
678
678
|
|
679
|
+
class NetworkEgressModeOverride
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
679
685
|
class NodeConfig
|
680
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
687
|
|
@@ -1321,7 +1327,8 @@ module Google
|
|
1321
1327
|
property :max_instance_request_concurrency, as: 'maxInstanceRequestConcurrency'
|
1322
1328
|
property :migrate_deployment_model, as: 'migrateDeploymentModel'
|
1323
1329
|
property :migrate_tls, as: 'migrateTls'
|
1324
|
-
property :
|
1330
|
+
property :network_egress_mode_override, as: 'networkEgressModeOverride', class: Google::Apis::ConnectorsV1::NetworkEgressModeOverride, decorator: Google::Apis::ConnectorsV1::NetworkEgressModeOverride::Representation
|
1331
|
+
|
1325
1332
|
property :provision_cloud_spanner, as: 'provisionCloudSpanner'
|
1326
1333
|
property :provision_memstore, as: 'provisionMemstore'
|
1327
1334
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
@@ -2389,6 +2396,15 @@ module Google
|
|
2389
2396
|
end
|
2390
2397
|
end
|
2391
2398
|
|
2399
|
+
class NetworkEgressModeOverride
|
2400
|
+
# @private
|
2401
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2402
|
+
property :is_eventing_override_enabled, as: 'isEventingOverrideEnabled'
|
2403
|
+
property :is_jobs_override_enabled, as: 'isJobsOverrideEnabled'
|
2404
|
+
property :network_egress_mode, as: 'networkEgressMode'
|
2405
|
+
end
|
2406
|
+
end
|
2407
|
+
|
2392
2408
|
class NodeConfig
|
2393
2409
|
# @private
|
2394
2410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -148,8 +148,8 @@ module Google
|
|
148
148
|
# @param [String] name
|
149
149
|
# The resource that owns the locations collection, if applicable.
|
150
150
|
# @param [Array<String>, String] extra_location_types
|
151
|
-
# Optional.
|
152
|
-
#
|
151
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
152
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
153
153
|
# @param [String] filter
|
154
154
|
# A filter to narrow down results to a preferred subset. The filtering language
|
155
155
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -269,6 +269,11 @@ module Google
|
|
269
269
|
# Deletes a single Connection.
|
270
270
|
# @param [String] name
|
271
271
|
# Required. Resource name of the form: `projects/*/locations/*/connections/*`
|
272
|
+
# @param [Boolean] force
|
273
|
+
# Optional. If set to true, any child EndUserAuthentication/EventSubscription
|
274
|
+
# resources will also be deleted. Otherwise, the request will fail if the
|
275
|
+
# connection has any children. Followed the best practice from https://aip.dev/
|
276
|
+
# 135#cascading-delete
|
272
277
|
# @param [String] fields
|
273
278
|
# Selector specifying which fields to include in a partial response.
|
274
279
|
# @param [String] quota_user
|
@@ -286,11 +291,12 @@ module Google
|
|
286
291
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
287
292
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
288
293
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
289
|
-
def delete_project_location_connection(name, fields: nil, quota_user: nil, options: nil, &block)
|
294
|
+
def delete_project_location_connection(name, force: nil, fields: nil, quota_user: nil, options: nil, &block)
|
290
295
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
291
296
|
command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
|
292
297
|
command.response_class = Google::Apis::ConnectorsV1::Operation
|
293
298
|
command.params['name'] = name unless name.nil?
|
299
|
+
command.query['force'] = force unless force.nil?
|
294
300
|
command.query['fields'] = fields unless fields.nil?
|
295
301
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
296
302
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.77.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|