google-apis-connectors_v1 0.74.0 → 0.76.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: 466f5b7b862f611542865bb97591b9fa37fcb5ae88c173ef390d3b0a1bc44a72
4
- data.tar.gz: e3393a801284dc4cfaf0f3a344a743945021a7a66fdfe09b14cc34c3e726e775
3
+ metadata.gz: 542da519a27b4fe266fe9a8513ff09614b4200d126e6c1cf1bb6fee74cd557a5
4
+ data.tar.gz: d1a1b76b305de160a980f06a66a2566abe76fbb5fd6f73aff9d7eac1a2b76fc6
5
5
  SHA512:
6
- metadata.gz: 43b5b243a000c7f5bfe780cdfa5469a51ec7729846aec4cb7b15c03296237ace0a358a1f46c035ee5b46e98edc052153170344cc2b64b708312c889c0bbd5458
7
- data.tar.gz: bd295975d565af9309906d46ae07de8931256feeeb764b237cca7b69b887caf77a16bcc0ff36371d6327d7a943286117dd542f99b49b005baa449c701e0c46db
6
+ metadata.gz: 4008e87139161aa1a6cfd884fe415102d7e1234987e55a612cd36e47bd1b646095c55e7e9ddfe8eb494480fb8bae9eddcb8214aa1036f8bbf1da47e8450fefef
7
+ data.tar.gz: 7582c5552410888ac6695efab9d729d8f820034409c11a548a37436315b13611ce1889fcd6326efb96e1266c6defbe674ce919d84b6791022fbaa2c12c863776
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.76.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250721
6
+
7
+ ### v0.75.0 (2025-07-13)
8
+
9
+ * Regenerated from discovery document revision 20250703
10
+
3
11
  ### v0.74.0 (2025-06-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20250604
@@ -1438,6 +1438,11 @@ module Google
1438
1438
  # @return [String]
1439
1439
  attr_accessor :update_time
1440
1440
 
1441
+ # This configuration provides VPCSC config for a connector.
1442
+ # Corresponds to the JSON property `vpcscConfig`
1443
+ # @return [Google::Apis::ConnectorsV1::VpcscConfig]
1444
+ attr_accessor :vpcsc_config
1445
+
1441
1446
  def initialize(**args)
1442
1447
  update!(**args)
1443
1448
  end
@@ -1468,6 +1473,7 @@ module Google
1468
1473
  @supported_standard_entities = args[:supported_standard_entities] if args.key?(:supported_standard_entities)
1469
1474
  @unsupported_connection_types = args[:unsupported_connection_types] if args.key?(:unsupported_connection_types)
1470
1475
  @update_time = args[:update_time] if args.key?(:update_time)
1476
+ @vpcsc_config = args[:vpcsc_config] if args.key?(:vpcsc_config)
1471
1477
  end
1472
1478
  end
1473
1479
 
@@ -7235,6 +7241,32 @@ module Google
7235
7241
  end
7236
7242
  end
7237
7243
 
7244
+ # This configuration provides VPCSC config for a connector.
7245
+ class VpcscConfig
7246
+ include Google::Apis::Core::Hashable
7247
+
7248
+ # The list of allowlisted FQDNs for VPCSC.
7249
+ # Corresponds to the JSON property `defaultAllowlistedHost`
7250
+ # @return [Array<String>]
7251
+ attr_accessor :default_allowlisted_host
7252
+
7253
+ # Whether to disable firewall VPCSC flow.
7254
+ # Corresponds to the JSON property `disableFirewallVpcscFlow`
7255
+ # @return [Boolean]
7256
+ attr_accessor :disable_firewall_vpcsc_flow
7257
+ alias_method :disable_firewall_vpcsc_flow?, :disable_firewall_vpcsc_flow
7258
+
7259
+ def initialize(**args)
7260
+ update!(**args)
7261
+ end
7262
+
7263
+ # Update properties of this object
7264
+ def update!(**args)
7265
+ @default_allowlisted_host = args[:default_allowlisted_host] if args.key?(:default_allowlisted_host)
7266
+ @disable_firewall_vpcsc_flow = args[:disable_firewall_vpcsc_flow] if args.key?(:disable_firewall_vpcsc_flow)
7267
+ end
7268
+ end
7269
+
7238
7270
  # WebhookData has details of webhook configuration.
7239
7271
  class WebhookData
7240
7272
  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.74.0"
19
+ GEM_VERSION = "0.76.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 = "20250604"
25
+ REVISION = "20250721"
26
26
  end
27
27
  end
28
28
  end
@@ -1006,6 +1006,12 @@ module Google
1006
1006
  include Google::Apis::Core::JsonObjectSupport
1007
1007
  end
1008
1008
 
1009
+ class VpcscConfig
1010
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1011
+
1012
+ include Google::Apis::Core::JsonObjectSupport
1013
+ end
1014
+
1009
1015
  class WebhookData
1010
1016
  class Representation < Google::Apis::Core::JsonRepresentation; end
1011
1017
 
@@ -1367,6 +1373,8 @@ module Google
1367
1373
 
1368
1374
  collection :unsupported_connection_types, as: 'unsupportedConnectionTypes'
1369
1375
  property :update_time, as: 'updateTime'
1376
+ property :vpcsc_config, as: 'vpcscConfig', class: Google::Apis::ConnectorsV1::VpcscConfig, decorator: Google::Apis::ConnectorsV1::VpcscConfig::Representation
1377
+
1370
1378
  end
1371
1379
  end
1372
1380
 
@@ -2946,6 +2954,14 @@ module Google
2946
2954
  end
2947
2955
  end
2948
2956
 
2957
+ class VpcscConfig
2958
+ # @private
2959
+ class Representation < Google::Apis::Core::JsonRepresentation
2960
+ collection :default_allowlisted_host, as: 'defaultAllowlistedHost'
2961
+ property :disable_firewall_vpcsc_flow, as: 'disableFirewallVpcscFlow'
2962
+ end
2963
+ end
2964
+
2949
2965
  class WebhookData
2950
2966
  # @private
2951
2967
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -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.74.0
4
+ version: 0.76.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.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.76.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: