google-apis-connectors_v1 0.74.0 → 0.75.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: 3735abecd47e5daf1f5acb55885ed896252d4e42f0e7db62197b142d7a6be42d
4
+ data.tar.gz: e5689f637d3d62ce48790f46d6d39d8c9e08f8e21aea4e37da77bb0ff601d7bd
5
5
  SHA512:
6
- metadata.gz: 43b5b243a000c7f5bfe780cdfa5469a51ec7729846aec4cb7b15c03296237ace0a358a1f46c035ee5b46e98edc052153170344cc2b64b708312c889c0bbd5458
7
- data.tar.gz: bd295975d565af9309906d46ae07de8931256feeeb764b237cca7b69b887caf77a16bcc0ff36371d6327d7a943286117dd542f99b49b005baa449c701e0c46db
6
+ metadata.gz: 87c2e5d1d2a598a4faf0d4eee88f1c46d08d33ac72641e995824cd8b6cad221a8b71499be9bc40b3caf268a88f9f61445a4347aa562bced58c0609d6fbd4bbfc
7
+ data.tar.gz: f9fa9b23ed690ab5eb42ba29a4d12db890f0daa35b80b2f435c8c0d9bfefeafcd2fb2e643c9ba4fd3421934a34f58408459b8ba74ee67bbd2b7ecf2708709c55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.75.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250703
6
+
3
7
  ### v0.74.0 (2025-06-08)
4
8
 
5
9
  * 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.75.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 = "20250703"
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
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.75.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.75.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: