google-apis-connectors_v1 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe42e18ac04f80434c614b952347e97967edaf8a5de2a5c120a082706242c467
|
4
|
+
data.tar.gz: c05ecf52f7f7966b68922415f2d08415db5f1645c662ba13d528ee00ee6ede66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6ebb394d62b60e8b1801a3c46cae8bd47ea4386443bcebfdbec6a95811343b4470d98ffba60d762d616b67d336b2a1a9aae2722f830a8fba0c73649e73ed079
|
7
|
+
data.tar.gz: 1a4baa6890b16820b950180e90cbc0f6e72fccafb3b1c8bd7e40f93a31fb9748e88fe0fcb0717d5d2363d4024620bbefcb524dda9a76f3d8f298dd4f1923b53d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
8
|
+
### v0.66.0 (2025-01-07)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250101
|
11
|
+
|
3
12
|
### v0.65.0 (2024-12-08)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241203
|
@@ -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,10 +2361,10 @@ module Google
|
|
2341
2361
|
# @return [Google::Apis::ConnectorsV1::EndPoint]
|
2342
2362
|
attr_accessor :endpoint
|
2343
2363
|
|
2344
|
-
#
|
2345
|
-
# Corresponds to the JSON property `
|
2346
|
-
# @return [Google::Apis::ConnectorsV1::
|
2347
|
-
attr_accessor :
|
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
|
2348
2368
|
|
2349
2369
|
# Service account needed for runtime plane to trigger IP workflow.
|
2350
2370
|
# Corresponds to the JSON property `serviceAccount`
|
@@ -2363,7 +2383,7 @@ module Google
|
|
2363
2383
|
# Update properties of this object
|
2364
2384
|
def update!(**args)
|
2365
2385
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2366
|
-
@
|
2386
|
+
@pubsub = args[:pubsub] if args.key?(:pubsub)
|
2367
2387
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2368
2388
|
@type = args[:type] if args.key?(:type)
|
2369
2389
|
end
|
@@ -2479,6 +2499,11 @@ module Google
|
|
2479
2499
|
# @return [Google::Apis::ConnectorsV1::DeadLetterConfig]
|
2480
2500
|
attr_accessor :dead_letter_config
|
2481
2501
|
|
2502
|
+
# Data enrichment configuration.
|
2503
|
+
# Corresponds to the JSON property `enrichmentConfig`
|
2504
|
+
# @return [Google::Apis::ConnectorsV1::EnrichmentConfig]
|
2505
|
+
attr_accessor :enrichment_config
|
2506
|
+
|
2482
2507
|
# Optional. Enrichment Enabled.
|
2483
2508
|
# Corresponds to the JSON property `enrichmentEnabled`
|
2484
2509
|
# @return [Boolean]
|
@@ -2521,6 +2546,7 @@ module Google
|
|
2521
2546
|
@additional_variables = args[:additional_variables] if args.key?(:additional_variables)
|
2522
2547
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
2523
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)
|
2524
2550
|
@enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
|
2525
2551
|
@events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
|
2526
2552
|
@listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
|
@@ -2998,25 +3024,6 @@ module Google
|
|
2998
3024
|
end
|
2999
3025
|
end
|
3000
3026
|
|
3001
|
-
# GSUtil message includes details of the Destination Cloud Storage bucket.
|
3002
|
-
class GsUtil
|
3003
|
-
include Google::Apis::Core::Hashable
|
3004
|
-
|
3005
|
-
# Required. The URI of the Cloud Storage bucket.
|
3006
|
-
# Corresponds to the JSON property `gsutilUri`
|
3007
|
-
# @return [String]
|
3008
|
-
attr_accessor :gsutil_uri
|
3009
|
-
|
3010
|
-
def initialize(**args)
|
3011
|
-
update!(**args)
|
3012
|
-
end
|
3013
|
-
|
3014
|
-
# Update properties of this object
|
3015
|
-
def update!(**args)
|
3016
|
-
@gsutil_uri = args[:gsutil_uri] if args.key?(:gsutil_uri)
|
3017
|
-
end
|
3018
|
-
end
|
3019
|
-
|
3020
3027
|
# Autoscaling config for connector deployment system metrics.
|
3021
3028
|
class HpaConfig
|
3022
3029
|
include Google::Apis::Core::Hashable
|
@@ -3335,6 +3342,12 @@ module Google
|
|
3335
3342
|
class JsonSchema
|
3336
3343
|
include Google::Apis::Core::Hashable
|
3337
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
|
+
|
3338
3351
|
# The default value of the field or object described by this schema.
|
3339
3352
|
# Corresponds to the JSON property `default`
|
3340
3353
|
# @return [Object]
|
@@ -3390,6 +3403,7 @@ module Google
|
|
3390
3403
|
|
3391
3404
|
# Update properties of this object
|
3392
3405
|
def update!(**args)
|
3406
|
+
@additional_details = args[:additional_details] if args.key?(:additional_details)
|
3393
3407
|
@default = args[:default] if args.key?(:default)
|
3394
3408
|
@description = args[:description] if args.key?(:description)
|
3395
3409
|
@enum = args[:enum] if args.key?(:enum)
|
@@ -4777,11 +4791,22 @@ module Google
|
|
4777
4791
|
# @return [String]
|
4778
4792
|
attr_accessor :demo_uri
|
4779
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
|
+
|
4780
4800
|
# Required. Integration example templates for the custom connector.
|
4781
4801
|
# Corresponds to the JSON property `integrationTemplates`
|
4782
4802
|
# @return [String]
|
4783
4803
|
attr_accessor :integration_templates
|
4784
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
|
+
|
4785
4810
|
# Optional. Marketplace product name.
|
4786
4811
|
# Corresponds to the JSON property `marketplaceProduct`
|
4787
4812
|
# @return [String]
|
@@ -4842,7 +4867,9 @@ module Google
|
|
4842
4867
|
@additional_comments = args[:additional_comments] if args.key?(:additional_comments)
|
4843
4868
|
@confirm_partner_requirements = args[:confirm_partner_requirements] if args.key?(:confirm_partner_requirements)
|
4844
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)
|
4845
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)
|
4846
4873
|
@marketplace_product = args[:marketplace_product] if args.key?(:marketplace_product)
|
4847
4874
|
@marketplace_product_id = args[:marketplace_product_id] if args.key?(:marketplace_product_id)
|
4848
4875
|
@marketplace_product_project_id = args[:marketplace_product_project_id] if args.key?(:marketplace_product_project_id)
|
@@ -5087,6 +5114,43 @@ module Google
|
|
5087
5114
|
end
|
5088
5115
|
end
|
5089
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
|
+
|
5090
5154
|
# Request message for ConnectorsService.PublishCustomConnectorVersion
|
5091
5155
|
class PublishCustomConnectorVersionRequest
|
5092
5156
|
include Google::Apis::Core::Hashable
|
@@ -5366,7 +5430,7 @@ module Google
|
|
5366
5430
|
# @return [String]
|
5367
5431
|
attr_accessor :helper_text_template
|
5368
5432
|
|
5369
|
-
# Optional.
|
5433
|
+
# Optional. Principal/Identity for whom the role need to assigned.
|
5370
5434
|
# Corresponds to the JSON property `principal`
|
5371
5435
|
# @return [String]
|
5372
5436
|
attr_accessor :principal
|
@@ -5884,7 +5948,7 @@ module Google
|
|
5884
5948
|
class Source
|
5885
5949
|
include Google::Apis::Core::Hashable
|
5886
5950
|
|
5887
|
-
# Field identifier. For example config
|
5951
|
+
# Field identifier. For example config variable name.
|
5888
5952
|
# Corresponds to the JSON property `fieldId`
|
5889
5953
|
# @return [String]
|
5890
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.
|
19
|
+
GEM_VERSION = "0.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
|
@@ -346,12 +352,6 @@ module Google
|
|
346
352
|
include Google::Apis::Core::JsonObjectSupport
|
347
353
|
end
|
348
354
|
|
349
|
-
class GsUtil
|
350
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
-
|
352
|
-
include Google::Apis::Core::JsonObjectSupport
|
353
|
-
end
|
354
|
-
|
355
355
|
class HpaConfig
|
356
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
357
|
|
@@ -664,6 +664,12 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class PubSub
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
667
673
|
class PublishCustomConnectorVersionRequest
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
675
|
|
@@ -1454,6 +1460,13 @@ module Google
|
|
1454
1460
|
end
|
1455
1461
|
end
|
1456
1462
|
|
1463
|
+
class EnrichmentConfig
|
1464
|
+
# @private
|
1465
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1466
|
+
property :append_acl, as: 'appendAcl'
|
1467
|
+
end
|
1468
|
+
end
|
1469
|
+
|
1457
1470
|
class EnumOption
|
1458
1471
|
# @private
|
1459
1472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1487,7 +1500,7 @@ module Google
|
|
1487
1500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1488
1501
|
property :endpoint, as: 'endpoint', class: Google::Apis::ConnectorsV1::EndPoint, decorator: Google::Apis::ConnectorsV1::EndPoint::Representation
|
1489
1502
|
|
1490
|
-
property :
|
1503
|
+
property :pubsub, as: 'pubsub', class: Google::Apis::ConnectorsV1::PubSub, decorator: Google::Apis::ConnectorsV1::PubSub::Representation
|
1491
1504
|
|
1492
1505
|
property :service_account, as: 'serviceAccount'
|
1493
1506
|
property :type, as: 'type'
|
@@ -1525,6 +1538,8 @@ module Google
|
|
1525
1538
|
|
1526
1539
|
property :dead_letter_config, as: 'deadLetterConfig', class: Google::Apis::ConnectorsV1::DeadLetterConfig, decorator: Google::Apis::ConnectorsV1::DeadLetterConfig::Representation
|
1527
1540
|
|
1541
|
+
property :enrichment_config, as: 'enrichmentConfig', class: Google::Apis::ConnectorsV1::EnrichmentConfig, decorator: Google::Apis::ConnectorsV1::EnrichmentConfig::Representation
|
1542
|
+
|
1528
1543
|
property :enrichment_enabled, as: 'enrichmentEnabled'
|
1529
1544
|
property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
|
1530
1545
|
property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
|
@@ -1662,13 +1677,6 @@ module Google
|
|
1662
1677
|
end
|
1663
1678
|
end
|
1664
1679
|
|
1665
|
-
class GsUtil
|
1666
|
-
# @private
|
1667
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1668
|
-
property :gsutil_uri, as: 'gsutilUri'
|
1669
|
-
end
|
1670
|
-
end
|
1671
|
-
|
1672
1680
|
class HpaConfig
|
1673
1681
|
# @private
|
1674
1682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1746,6 +1754,7 @@ module Google
|
|
1746
1754
|
class JsonSchema
|
1747
1755
|
# @private
|
1748
1756
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1757
|
+
hash :additional_details, as: 'additionalDetails'
|
1749
1758
|
property :default, as: 'default'
|
1750
1759
|
property :description, as: 'description'
|
1751
1760
|
collection :enum, as: 'enum'
|
@@ -2161,7 +2170,9 @@ module Google
|
|
2161
2170
|
property :additional_comments, as: 'additionalComments'
|
2162
2171
|
property :confirm_partner_requirements, as: 'confirmPartnerRequirements'
|
2163
2172
|
property :demo_uri, as: 'demoUri'
|
2173
|
+
property :has_dynamic_spec_uri, as: 'hasDynamicSpecUri'
|
2164
2174
|
property :integration_templates, as: 'integrationTemplates'
|
2175
|
+
property :local_spec_path, as: 'localSpecPath'
|
2165
2176
|
property :marketplace_product, as: 'marketplaceProduct'
|
2166
2177
|
property :marketplace_product_id, as: 'marketplaceProductId'
|
2167
2178
|
property :marketplace_product_project_id, as: 'marketplaceProductProjectId'
|
@@ -2219,6 +2230,17 @@ module Google
|
|
2219
2230
|
end
|
2220
2231
|
end
|
2221
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
|
+
|
2222
2244
|
class PublishCustomConnectorVersionRequest
|
2223
2245
|
# @private
|
2224
2246
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +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.
|
4
|
+
version: 0.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.67.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Connectors API V1
|
82
79
|
test_files: []
|