google-apis-connectors_v1 0.66.0 → 0.67.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: 4416136c4935a4fae1db579cbeee33e05a5e527b52418d2dafdea00068b6b114
4
- data.tar.gz: 79aa44ffd21ceb8b43e957da60a31d863106c01c2cf1af7da43333850d88b99e
3
+ metadata.gz: fe42e18ac04f80434c614b952347e97967edaf8a5de2a5c120a082706242c467
4
+ data.tar.gz: c05ecf52f7f7966b68922415f2d08415db5f1645c662ba13d528ee00ee6ede66
5
5
  SHA512:
6
- metadata.gz: 99722ecea211b68f0184e2f37b181ae295144007c4c0bf4af49a33338393d1af9abca1e560451e9399c9b81a2977a07037b187fc308fe5b8169049ac85979f1d
7
- data.tar.gz: 7db11fd7a29bf668b877a0e1b91560f1ce42d7d0a70cae85c5eab0bd6c4e782ea3312466ffb1a4ed24959f4c6b68c9825c643045fc453c4a196984ca6a79523d
6
+ metadata.gz: b6ebb394d62b60e8b1801a3c46cae8bd47ea4386443bcebfdbec6a95811343b4470d98ffba60d762d616b67d336b2a1a9aae2722f830a8fba0c73649e73ed079
7
+ data.tar.gz: 1a4baa6890b16820b950180e90cbc0f6e72fccafb3b1c8bd7e40f93a31fb9748e88fe0fcb0717d5d2363d4024620bbefcb524dda9a76f3d8f298dd4f1923b53d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.67.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250218
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.66.0 (2025-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20250101
@@ -2232,6 +2232,26 @@ module Google
2232
2232
  end
2233
2233
  end
2234
2234
 
2235
+ # Data enrichment configuration.
2236
+ class EnrichmentConfig
2237
+ include Google::Apis::Core::Hashable
2238
+
2239
+ # Optional. Append ACL to the event.
2240
+ # Corresponds to the JSON property `appendAcl`
2241
+ # @return [Boolean]
2242
+ attr_accessor :append_acl
2243
+ alias_method :append_acl?, :append_acl
2244
+
2245
+ def initialize(**args)
2246
+ update!(**args)
2247
+ end
2248
+
2249
+ # Update properties of this object
2250
+ def update!(**args)
2251
+ @append_acl = args[:append_acl] if args.key?(:append_acl)
2252
+ end
2253
+ end
2254
+
2235
2255
  # EnumOption definition
2236
2256
  class EnumOption
2237
2257
  include Google::Apis::Core::Hashable
@@ -2341,6 +2361,11 @@ module Google
2341
2361
  # @return [Google::Apis::ConnectorsV1::EndPoint]
2342
2362
  attr_accessor :endpoint
2343
2363
 
2364
+ # Pub/Sub message includes details of the Destination Pub/Sub topic.
2365
+ # Corresponds to the JSON property `pubsub`
2366
+ # @return [Google::Apis::ConnectorsV1::PubSub]
2367
+ attr_accessor :pubsub
2368
+
2344
2369
  # Service account needed for runtime plane to trigger IP workflow.
2345
2370
  # Corresponds to the JSON property `serviceAccount`
2346
2371
  # @return [String]
@@ -2358,6 +2383,7 @@ module Google
2358
2383
  # Update properties of this object
2359
2384
  def update!(**args)
2360
2385
  @endpoint = args[:endpoint] if args.key?(:endpoint)
2386
+ @pubsub = args[:pubsub] if args.key?(:pubsub)
2361
2387
  @service_account = args[:service_account] if args.key?(:service_account)
2362
2388
  @type = args[:type] if args.key?(:type)
2363
2389
  end
@@ -2473,6 +2499,11 @@ module Google
2473
2499
  # @return [Google::Apis::ConnectorsV1::DeadLetterConfig]
2474
2500
  attr_accessor :dead_letter_config
2475
2501
 
2502
+ # Data enrichment configuration.
2503
+ # Corresponds to the JSON property `enrichmentConfig`
2504
+ # @return [Google::Apis::ConnectorsV1::EnrichmentConfig]
2505
+ attr_accessor :enrichment_config
2506
+
2476
2507
  # Optional. Enrichment Enabled.
2477
2508
  # Corresponds to the JSON property `enrichmentEnabled`
2478
2509
  # @return [Boolean]
@@ -2515,6 +2546,7 @@ module Google
2515
2546
  @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
2516
2547
  @auth_config = args[:auth_config] if args.key?(:auth_config)
2517
2548
  @dead_letter_config = args[:dead_letter_config] if args.key?(:dead_letter_config)
2549
+ @enrichment_config = args[:enrichment_config] if args.key?(:enrichment_config)
2518
2550
  @enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
2519
2551
  @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
2520
2552
  @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
@@ -3310,6 +3342,12 @@ module Google
3310
3342
  class JsonSchema
3311
3343
  include Google::Apis::Core::Hashable
3312
3344
 
3345
+ # Additional details apart from standard json schema fields, this gives
3346
+ # flexibility to store metadata about the schema
3347
+ # Corresponds to the JSON property `additionalDetails`
3348
+ # @return [Hash<String,Object>]
3349
+ attr_accessor :additional_details
3350
+
3313
3351
  # The default value of the field or object described by this schema.
3314
3352
  # Corresponds to the JSON property `default`
3315
3353
  # @return [Object]
@@ -3365,6 +3403,7 @@ module Google
3365
3403
 
3366
3404
  # Update properties of this object
3367
3405
  def update!(**args)
3406
+ @additional_details = args[:additional_details] if args.key?(:additional_details)
3368
3407
  @default = args[:default] if args.key?(:default)
3369
3408
  @description = args[:description] if args.key?(:description)
3370
3409
  @enum = args[:enum] if args.key?(:enum)
@@ -4752,11 +4791,22 @@ module Google
4752
4791
  # @return [String]
4753
4792
  attr_accessor :demo_uri
4754
4793
 
4794
+ # Output only. Has dynamic open api spec uri.
4795
+ # Corresponds to the JSON property `hasDynamicSpecUri`
4796
+ # @return [Boolean]
4797
+ attr_accessor :has_dynamic_spec_uri
4798
+ alias_method :has_dynamic_spec_uri?, :has_dynamic_spec_uri
4799
+
4755
4800
  # Required. Integration example templates for the custom connector.
4756
4801
  # Corresponds to the JSON property `integrationTemplates`
4757
4802
  # @return [String]
4758
4803
  attr_accessor :integration_templates
4759
4804
 
4805
+ # Output only. Local spec path. Required if has_dynamic_spec_uri is true.
4806
+ # Corresponds to the JSON property `localSpecPath`
4807
+ # @return [String]
4808
+ attr_accessor :local_spec_path
4809
+
4760
4810
  # Optional. Marketplace product name.
4761
4811
  # Corresponds to the JSON property `marketplaceProduct`
4762
4812
  # @return [String]
@@ -4817,7 +4867,9 @@ module Google
4817
4867
  @additional_comments = args[:additional_comments] if args.key?(:additional_comments)
4818
4868
  @confirm_partner_requirements = args[:confirm_partner_requirements] if args.key?(:confirm_partner_requirements)
4819
4869
  @demo_uri = args[:demo_uri] if args.key?(:demo_uri)
4870
+ @has_dynamic_spec_uri = args[:has_dynamic_spec_uri] if args.key?(:has_dynamic_spec_uri)
4820
4871
  @integration_templates = args[:integration_templates] if args.key?(:integration_templates)
4872
+ @local_spec_path = args[:local_spec_path] if args.key?(:local_spec_path)
4821
4873
  @marketplace_product = args[:marketplace_product] if args.key?(:marketplace_product)
4822
4874
  @marketplace_product_id = args[:marketplace_product_id] if args.key?(:marketplace_product_id)
4823
4875
  @marketplace_product_project_id = args[:marketplace_product_project_id] if args.key?(:marketplace_product_project_id)
@@ -5062,6 +5114,43 @@ module Google
5062
5114
  end
5063
5115
  end
5064
5116
 
5117
+ # Pub/Sub message includes details of the Destination Pub/Sub topic.
5118
+ class PubSub
5119
+ include Google::Apis::Core::Hashable
5120
+
5121
+ # Optional. Pub/Sub message attributes to be added to the Pub/Sub message.
5122
+ # Corresponds to the JSON property `attributes`
5123
+ # @return [Hash<String,String>]
5124
+ attr_accessor :attributes
5125
+
5126
+ # Optional. Configuration for configuring the trigger
5127
+ # Corresponds to the JSON property `configVariables`
5128
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
5129
+ attr_accessor :config_variables
5130
+
5131
+ # Required. The project id which has the Pub/Sub topic.
5132
+ # Corresponds to the JSON property `projectId`
5133
+ # @return [String]
5134
+ attr_accessor :project_id
5135
+
5136
+ # Required. The topic id of the Pub/Sub topic.
5137
+ # Corresponds to the JSON property `topicId`
5138
+ # @return [String]
5139
+ attr_accessor :topic_id
5140
+
5141
+ def initialize(**args)
5142
+ update!(**args)
5143
+ end
5144
+
5145
+ # Update properties of this object
5146
+ def update!(**args)
5147
+ @attributes = args[:attributes] if args.key?(:attributes)
5148
+ @config_variables = args[:config_variables] if args.key?(:config_variables)
5149
+ @project_id = args[:project_id] if args.key?(:project_id)
5150
+ @topic_id = args[:topic_id] if args.key?(:topic_id)
5151
+ end
5152
+ end
5153
+
5065
5154
  # Request message for ConnectorsService.PublishCustomConnectorVersion
5066
5155
  class PublishCustomConnectorVersionRequest
5067
5156
  include Google::Apis::Core::Hashable
@@ -5341,7 +5430,7 @@ module Google
5341
5430
  # @return [String]
5342
5431
  attr_accessor :helper_text_template
5343
5432
 
5344
- # Optional. Prinicipal/Identity for whom the role need to assigned.
5433
+ # Optional. Principal/Identity for whom the role need to assigned.
5345
5434
  # Corresponds to the JSON property `principal`
5346
5435
  # @return [String]
5347
5436
  attr_accessor :principal
@@ -5859,7 +5948,7 @@ module Google
5859
5948
  class Source
5860
5949
  include Google::Apis::Core::Hashable
5861
5950
 
5862
- # Field identifier. For example config vaiable name.
5951
+ # Field identifier. For example config variable name.
5863
5952
  # Corresponds to the JSON property `fieldId`
5864
5953
  # @return [String]
5865
5954
  attr_accessor :field_id
@@ -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.66.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250101"
25
+ REVISION = "20250218"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,12 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
+ class EnrichmentConfig
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
253
259
  class EnumOption
254
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
261
 
@@ -658,6 +664,12 @@ module Google
658
664
  include Google::Apis::Core::JsonObjectSupport
659
665
  end
660
666
 
667
+ class PubSub
668
+ class Representation < Google::Apis::Core::JsonRepresentation; end
669
+
670
+ include Google::Apis::Core::JsonObjectSupport
671
+ end
672
+
661
673
  class PublishCustomConnectorVersionRequest
662
674
  class Representation < Google::Apis::Core::JsonRepresentation; end
663
675
 
@@ -1448,6 +1460,13 @@ module Google
1448
1460
  end
1449
1461
  end
1450
1462
 
1463
+ class EnrichmentConfig
1464
+ # @private
1465
+ class Representation < Google::Apis::Core::JsonRepresentation
1466
+ property :append_acl, as: 'appendAcl'
1467
+ end
1468
+ end
1469
+
1451
1470
  class EnumOption
1452
1471
  # @private
1453
1472
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1481,6 +1500,8 @@ module Google
1481
1500
  class Representation < Google::Apis::Core::JsonRepresentation
1482
1501
  property :endpoint, as: 'endpoint', class: Google::Apis::ConnectorsV1::EndPoint, decorator: Google::Apis::ConnectorsV1::EndPoint::Representation
1483
1502
 
1503
+ property :pubsub, as: 'pubsub', class: Google::Apis::ConnectorsV1::PubSub, decorator: Google::Apis::ConnectorsV1::PubSub::Representation
1504
+
1484
1505
  property :service_account, as: 'serviceAccount'
1485
1506
  property :type, as: 'type'
1486
1507
  end
@@ -1517,6 +1538,8 @@ module Google
1517
1538
 
1518
1539
  property :dead_letter_config, as: 'deadLetterConfig', class: Google::Apis::ConnectorsV1::DeadLetterConfig, decorator: Google::Apis::ConnectorsV1::DeadLetterConfig::Representation
1519
1540
 
1541
+ property :enrichment_config, as: 'enrichmentConfig', class: Google::Apis::ConnectorsV1::EnrichmentConfig, decorator: Google::Apis::ConnectorsV1::EnrichmentConfig::Representation
1542
+
1520
1543
  property :enrichment_enabled, as: 'enrichmentEnabled'
1521
1544
  property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
1522
1545
  property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
@@ -1731,6 +1754,7 @@ module Google
1731
1754
  class JsonSchema
1732
1755
  # @private
1733
1756
  class Representation < Google::Apis::Core::JsonRepresentation
1757
+ hash :additional_details, as: 'additionalDetails'
1734
1758
  property :default, as: 'default'
1735
1759
  property :description, as: 'description'
1736
1760
  collection :enum, as: 'enum'
@@ -2146,7 +2170,9 @@ module Google
2146
2170
  property :additional_comments, as: 'additionalComments'
2147
2171
  property :confirm_partner_requirements, as: 'confirmPartnerRequirements'
2148
2172
  property :demo_uri, as: 'demoUri'
2173
+ property :has_dynamic_spec_uri, as: 'hasDynamicSpecUri'
2149
2174
  property :integration_templates, as: 'integrationTemplates'
2175
+ property :local_spec_path, as: 'localSpecPath'
2150
2176
  property :marketplace_product, as: 'marketplaceProduct'
2151
2177
  property :marketplace_product_id, as: 'marketplaceProductId'
2152
2178
  property :marketplace_product_project_id, as: 'marketplaceProductProjectId'
@@ -2204,6 +2230,17 @@ module Google
2204
2230
  end
2205
2231
  end
2206
2232
 
2233
+ class PubSub
2234
+ # @private
2235
+ class Representation < Google::Apis::Core::JsonRepresentation
2236
+ hash :attributes, as: 'attributes'
2237
+ collection :config_variables, as: 'configVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
2238
+
2239
+ property :project_id, as: 'projectId'
2240
+ property :topic_id, as: 'topicId'
2241
+ end
2242
+ end
2243
+
2207
2244
  class PublishCustomConnectorVersionRequest
2208
2245
  # @private
2209
2246
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.67.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Connectors API V1
79
79
  test_files: []