google-apis-connectors_v1 0.73.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: f3e98dab0aa3734808b46a128799c7db46d858e11cf529a10a62bd5d6152d71b
4
- data.tar.gz: 2234073da14de72f66255ffa098e7119fc85ac8f5ad6770dc6ddf546e227d330
3
+ metadata.gz: 3735abecd47e5daf1f5acb55885ed896252d4e42f0e7db62197b142d7a6be42d
4
+ data.tar.gz: e5689f637d3d62ce48790f46d6d39d8c9e08f8e21aea4e37da77bb0ff601d7bd
5
5
  SHA512:
6
- metadata.gz: 2fc4931892067df851d89c928f4a1035ada1eb2331010356127f4c9024057662068578bbfd44d6ea9f6d365139c3d525f9c2f20e8cd0a6800ffd939cba824b5f
7
- data.tar.gz: 3b4567db11109a7870ffcac3ec534897bde39ed545950c099694b2b5456dc752a292576832d518a7c1cf12efc0cefeca1326450c18dd5a1420d069a0b3f1fe16
6
+ metadata.gz: 87c2e5d1d2a598a4faf0d4eee88f1c46d08d33ac72641e995824cd8b6cad221a8b71499be9bc40b3caf268a88f9f61445a4347aa562bced58c0609d6fbd4bbfc
7
+ data.tar.gz: f9fa9b23ed690ab5eb42ba29a4d12db890f0daa35b80b2f435c8c0d9bfefeafcd2fb2e643c9ba4fd3421934a34f58408459b8ba74ee67bbd2b7ecf2708709c55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.74.0 (2025-06-08)
8
+
9
+ * Regenerated from discovery document revision 20250604
10
+
3
11
  ### v0.73.0 (2025-06-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20250521
@@ -819,7 +819,7 @@ module Google
819
819
  # @return [Google::Apis::ConnectorsV1::AuthConfig]
820
820
  attr_accessor :eua_oauth_auth_config
821
821
 
822
- # Eventing Configuration of a connection next: 18
822
+ # Eventing Configuration of a connection next: 19
823
823
  # Corresponds to the JSON property `eventingConfig`
824
824
  # @return [Google::Apis::ConnectorsV1::EventingConfig]
825
825
  attr_accessor :eventing_config
@@ -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
 
@@ -3129,7 +3135,7 @@ module Google
3129
3135
  end
3130
3136
  end
3131
3137
 
3132
- # Eventing Configuration of a connection next: 18
3138
+ # Eventing Configuration of a connection next: 19
3133
3139
  class EventingConfig
3134
3140
  include Google::Apis::Core::Hashable
3135
3141
 
@@ -3170,6 +3176,12 @@ module Google
3170
3176
  # @return [Google::Apis::ConnectorsV1::AuthConfig]
3171
3177
  attr_accessor :listener_auth_config
3172
3178
 
3179
+ # Optional. List of projects to be allowlisted for the service attachment
3180
+ # created in the tenant project for eventing ingress.
3181
+ # Corresponds to the JSON property `privateConnectivityAllowlistedProjects`
3182
+ # @return [Array<String>]
3183
+ attr_accessor :private_connectivity_allowlisted_projects
3184
+
3173
3185
  # Optional. Private Connectivity Enabled.
3174
3186
  # Corresponds to the JSON property `privateConnectivityEnabled`
3175
3187
  # @return [Boolean]
@@ -3204,6 +3216,7 @@ module Google
3204
3216
  @enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
3205
3217
  @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
3206
3218
  @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
3219
+ @private_connectivity_allowlisted_projects = args[:private_connectivity_allowlisted_projects] if args.key?(:private_connectivity_allowlisted_projects)
3207
3220
  @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
3208
3221
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
3209
3222
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
@@ -7228,6 +7241,32 @@ module Google
7228
7241
  end
7229
7242
  end
7230
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
+
7231
7270
  # WebhookData has details of webhook configuration.
7232
7271
  class WebhookData
7233
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.73.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 = "20250521"
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
 
@@ -1838,6 +1846,7 @@ module Google
1838
1846
  property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
1839
1847
  property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
1840
1848
 
1849
+ collection :private_connectivity_allowlisted_projects, as: 'privateConnectivityAllowlistedProjects'
1841
1850
  property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
1842
1851
  property :proxy_destination_config, as: 'proxyDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
1843
1852
 
@@ -2945,6 +2954,14 @@ module Google
2945
2954
  end
2946
2955
  end
2947
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
+
2948
2965
  class WebhookData
2949
2966
  # @private
2950
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.73.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.73.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: