google-apis-connectors_v1 0.69.0 → 0.71.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: 4841ee63df55b0d18f05358313eb194e0d7596e877e0dcb210a17b1b2803b054
4
- data.tar.gz: 36d9a9053f64f8cd14be0bc6dc245c55347903ad0b0fee04a36f2bb3dd258035
3
+ metadata.gz: 6da86a07ffc1c0e493a2430d19acb4b8ec9d71bc6864b9ad965cdec34bd4f7a2
4
+ data.tar.gz: 0b26ab273b03e5f15a9d7713c7b004badfa8fd19b755052388406fb597b5d807
5
5
  SHA512:
6
- metadata.gz: 71317e968a0f95a8b2d0160e3740907d60cf5950789097efc02f627f3d47cb8ed0236af2cf21f2da246c4237e3078e09d8dca8ab4b607654be0fab0f75233883
7
- data.tar.gz: bf80ade48ad787c32b000db394c08b7470868fc1157bc9565f984ef8e8e21bc9f4a263dab3eacb2115744d31ef59c587e9f079a59dee76fad0de23c31997cd7a
6
+ metadata.gz: 53884bbf5e746e4a8706bd7459b47dec322df7427a7b49ca40ba4a890f54647db178896c5bfe79c5d8d3f72588c5b42027377dcb0875a91659094c09b2019417
7
+ data.tar.gz: 62e29968a7dd58c0fd3536560ccafa1394f219276678d51ee6b1820c6f16d17980b08896a352694d651556994f8e89a291fa652ed852e654fc9a4ce55a005f8c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.71.0 (2025-05-04)
4
+
5
+ * Regenerated from discovery document revision 20250423
6
+ * Regenerated using generator version 0.17.0
7
+
8
+ ### v0.70.0 (2025-04-27)
9
+
10
+ * Regenerated from discovery document revision 20250415
11
+
3
12
  ### v0.69.0 (2025-04-06)
4
13
 
5
14
  * Regenerated from discovery document revision 20250327
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/apigee/docs/api-platform/co
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -814,7 +814,7 @@ module Google
814
814
  # @return [String]
815
815
  attr_accessor :envoy_image_location
816
816
 
817
- # Eventing Configuration of a connection
817
+ # Eventing Configuration of a connection next: 18
818
818
  # Corresponds to the JSON property `eventingConfig`
819
819
  # @return [Google::Apis::ConnectorsV1::EventingConfig]
820
820
  attr_accessor :eventing_config
@@ -1326,17 +1326,11 @@ module Google
1326
1326
  # @return [Google::Apis::ConnectorsV1::EgressControlConfig]
1327
1327
  attr_accessor :egress_control_config
1328
1328
 
1329
- # Eventing Config details of a connector version.
1329
+ # Eventing Config details of a connector version. next: 14
1330
1330
  # Corresponds to the JSON property `eventingConfigTemplate`
1331
1331
  # @return [Google::Apis::ConnectorsV1::EventingConfigTemplate]
1332
1332
  attr_accessor :eventing_config_template
1333
1333
 
1334
- # Output only. Is async operations supported.
1335
- # Corresponds to the JSON property `isAsyncOperationsSupported`
1336
- # @return [Boolean]
1337
- attr_accessor :is_async_operations_supported
1338
- alias_method :is_async_operations_supported?, :is_async_operations_supported
1339
-
1340
1334
  # Output only. Is custom actions supported.
1341
1335
  # Corresponds to the JSON property `isCustomActionsSupported`
1342
1336
  # @return [Boolean]
@@ -1437,7 +1431,6 @@ module Google
1437
1431
  @display_name = args[:display_name] if args.key?(:display_name)
1438
1432
  @egress_control_config = args[:egress_control_config] if args.key?(:egress_control_config)
1439
1433
  @eventing_config_template = args[:eventing_config_template] if args.key?(:eventing_config_template)
1440
- @is_async_operations_supported = args[:is_async_operations_supported] if args.key?(:is_async_operations_supported)
1441
1434
  @is_custom_actions_supported = args[:is_custom_actions_supported] if args.key?(:is_custom_actions_supported)
1442
1435
  @is_custom_entities_supported = args[:is_custom_entities_supported] if args.key?(:is_custom_entities_supported)
1443
1436
  @labels = args[:labels] if args.key?(:labels)
@@ -1656,13 +1649,35 @@ module Google
1656
1649
  class CustomConnectorVersion
1657
1650
  include Google::Apis::Core::Hashable
1658
1651
 
1652
+ # Optional. Indicates if Async Operations/Connector Job is supported. This is
1653
+ # only available for SDK based custom connectors.
1654
+ # Corresponds to the JSON property `asyncOperationsSupport`
1655
+ # @return [Boolean]
1656
+ attr_accessor :async_operations_support
1657
+ alias_method :async_operations_support?, :async_operations_support
1658
+
1659
1659
  # AuthConfig defines details of a authentication type.
1660
1660
  # Corresponds to the JSON property `authConfig`
1661
1661
  # @return [Google::Apis::ConnectorsV1::AuthConfig]
1662
1662
  attr_accessor :auth_config
1663
1663
 
1664
- # Optional. Backend variables config templates. This translates to additional
1665
- # variable templates in connection.
1664
+ # Optional. Auth Config Templates is only used when connector backend is enabled.
1665
+ # This is used to specify the auth configs supported by the connector backend
1666
+ # service to talk to the actual application backend.
1667
+ # Corresponds to the JSON property `authConfigTemplates`
1668
+ # @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]
1669
+ attr_accessor :auth_config_templates
1670
+
1671
+ # Optional. Auth override support.
1672
+ # Corresponds to the JSON property `authOverrideSupport`
1673
+ # @return [Boolean]
1674
+ attr_accessor :auth_override_support
1675
+ alias_method :auth_override_support?, :auth_override_support
1676
+
1677
+ # Optional. Backend variable templates is only used when connector backend is
1678
+ # enabled. This is used to specify the variables required by the connector
1679
+ # backend service to talk to the actual application backend. This translates to
1680
+ # additional variable templates in the connection config.
1666
1681
  # Corresponds to the JSON property `backendVariableTemplates`
1667
1682
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
1668
1683
  attr_accessor :backend_variable_templates
@@ -1672,14 +1687,15 @@ module Google
1672
1687
  # @return [String]
1673
1688
  attr_accessor :create_time
1674
1689
 
1675
- # Optional. Destination config(s) for accessing connector facade/ proxy. This is
1676
- # used only when enable_backend_destination_config is true.
1690
+ # Optional. Destination config(s) for accessing connector service (facade). This
1691
+ # is used only when enable_backend_destination_config is true.
1677
1692
  # Corresponds to the JSON property `destinationConfigs`
1678
1693
  # @return [Array<Google::Apis::ConnectorsV1::DestinationConfig>]
1679
1694
  attr_accessor :destination_configs
1680
1695
 
1681
- # Optional. When enabled, the connector will be a facade/ proxy, and connects to
1682
- # the destination provided during connection creation.
1696
+ # Optional. Indicates if an intermediatory connectorservice is used as backend.
1697
+ # When this is enabled, the connector destination and connector auth config are
1698
+ # required. For SDK based connectors, this is always enabled.
1683
1699
  # Corresponds to the JSON property `enableBackendDestinationConfig`
1684
1700
  # @return [Boolean]
1685
1701
  attr_accessor :enable_backend_destination_config
@@ -1716,14 +1732,15 @@ module Google
1716
1732
  # @return [String]
1717
1733
  attr_accessor :service_account
1718
1734
 
1719
- # Optional. Location of the custom connector spec. The location can be either a
1720
- # public url like `https://public-url.com/spec` Or a Google Cloud Storage
1721
- # location like `gs:///`
1735
+ # Optional. Location of the custom connector spec. This is only used for Open
1736
+ # API based custom connectors. The location can be either a public url like `
1737
+ # https://public-url.com/spec` Or a Google Cloud Storage location like `gs:///`.
1722
1738
  # Corresponds to the JSON property `specLocation`
1723
1739
  # @return [String]
1724
1740
  attr_accessor :spec_location
1725
1741
 
1726
- # Output only. Server URLs parsed from the spec.
1742
+ # Output only. Server URLs parsed from the Open API spec. This is only used for
1743
+ # Open API based custom connectors.
1727
1744
  # Corresponds to the JSON property `specServerUrls`
1728
1745
  # @return [Array<String>]
1729
1746
  attr_accessor :spec_server_urls
@@ -1744,7 +1761,10 @@ module Google
1744
1761
 
1745
1762
  # Update properties of this object
1746
1763
  def update!(**args)
1764
+ @async_operations_support = args[:async_operations_support] if args.key?(:async_operations_support)
1747
1765
  @auth_config = args[:auth_config] if args.key?(:auth_config)
1766
+ @auth_config_templates = args[:auth_config_templates] if args.key?(:auth_config_templates)
1767
+ @auth_override_support = args[:auth_override_support] if args.key?(:auth_override_support)
1748
1768
  @backend_variable_templates = args[:backend_variable_templates] if args.key?(:backend_variable_templates)
1749
1769
  @create_time = args[:create_time] if args.key?(:create_time)
1750
1770
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
@@ -2493,7 +2513,7 @@ module Google
2493
2513
  end
2494
2514
  end
2495
2515
 
2496
- # Eventing Configuration of a connection
2516
+ # Eventing Configuration of a connection next: 18
2497
2517
  class EventingConfig
2498
2518
  include Google::Apis::Core::Hashable
2499
2519
 
@@ -2550,6 +2570,11 @@ module Google
2550
2570
  # @return [Google::Apis::ConnectorsV1::DestinationConfig]
2551
2571
  attr_accessor :registration_destination_config
2552
2572
 
2573
+ # SSL Configuration of a connection
2574
+ # Corresponds to the JSON property `sslConfig`
2575
+ # @return [Google::Apis::ConnectorsV1::SslConfig]
2576
+ attr_accessor :ssl_config
2577
+
2553
2578
  def initialize(**args)
2554
2579
  update!(**args)
2555
2580
  end
@@ -2566,10 +2591,11 @@ module Google
2566
2591
  @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
2567
2592
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2568
2593
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2594
+ @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
2569
2595
  end
2570
2596
  end
2571
2597
 
2572
- # Eventing Config details of a connector version.
2598
+ # Eventing Config details of a connector version. next: 14
2573
2599
  class EventingConfigTemplate
2574
2600
  include Google::Apis::Core::Hashable
2575
2601
 
@@ -2635,6 +2661,11 @@ module Google
2635
2661
  # @return [Google::Apis::ConnectorsV1::DestinationConfigTemplate]
2636
2662
  attr_accessor :registration_destination_config
2637
2663
 
2664
+ # Ssl config details of a connector version
2665
+ # Corresponds to the JSON property `sslConfigTemplate`
2666
+ # @return [Google::Apis::ConnectorsV1::SslConfigTemplate]
2667
+ attr_accessor :ssl_config_template
2668
+
2638
2669
  # Trigger Config fields that needs to be rendered
2639
2670
  # Corresponds to the JSON property `triggerConfigVariables`
2640
2671
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
@@ -2657,6 +2688,7 @@ module Google
2657
2688
  @listener_auth_config_templates = args[:listener_auth_config_templates] if args.key?(:listener_auth_config_templates)
2658
2689
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2659
2690
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2691
+ @ssl_config_template = args[:ssl_config_template] if args.key?(:ssl_config_template)
2660
2692
  @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
2661
2693
  end
2662
2694
  end
@@ -3166,6 +3198,17 @@ module Google
3166
3198
  # @return [String]
3167
3199
  attr_accessor :consumer_defined_name
3168
3200
 
3201
+ # Optional. The consumer_project_number associated with this Apigee instance.
3202
+ # This field is added specifically to support Apigee integration with SLM
3203
+ # Rollout and UMM. It represents the numerical project ID of the GCP project
3204
+ # that consumes this Apigee instance. It is used for SLM rollout notifications
3205
+ # and UMM integration, enabling proper mapping to customer projects and log
3206
+ # delivery for Apigee instances. This field complements consumer_project_id and
3207
+ # may be used for specific Apigee scenarios where the numerical ID is required.
3208
+ # Corresponds to the JSON property `consumerProjectNumber`
3209
+ # @return [String]
3210
+ attr_accessor :consumer_project_number
3211
+
3169
3212
  # Output only. Timestamp when the resource was created.
3170
3213
  # Corresponds to the JSON property `createTime`
3171
3214
  # @return [String]
@@ -3282,6 +3325,7 @@ module Google
3282
3325
  # Update properties of this object
3283
3326
  def update!(**args)
3284
3327
  @consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
3328
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
3285
3329
  @create_time = args[:create_time] if args.key?(:create_time)
3286
3330
  @instance_type = args[:instance_type] if args.key?(:instance_type)
3287
3331
  @labels = args[:labels] if args.key?(:labels)
@@ -6230,6 +6274,12 @@ module Google
6230
6274
  attr_accessor :action_apis
6231
6275
  alias_method :action_apis?, :action_apis
6232
6276
 
6277
+ # Specifies if the connector supports async long running operations.
6278
+ # Corresponds to the JSON property `asyncOperations`
6279
+ # @return [Boolean]
6280
+ attr_accessor :async_operations
6281
+ alias_method :async_operations?, :async_operations
6282
+
6233
6283
  # Specifies if the connector supports entity apis like 'createEntity'.
6234
6284
  # Corresponds to the JSON property `entityApis`
6235
6285
  # @return [Boolean]
@@ -6249,6 +6299,7 @@ module Google
6249
6299
  # Update properties of this object
6250
6300
  def update!(**args)
6251
6301
  @action_apis = args[:action_apis] if args.key?(:action_apis)
6302
+ @async_operations = args[:async_operations] if args.key?(:async_operations)
6252
6303
  @entity_apis = args[:entity_apis] if args.key?(:entity_apis)
6253
6304
  @sql_query = args[:sql_query] if args.key?(:sql_query)
6254
6305
  end
@@ -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.69.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250327"
25
+ REVISION = "20250423"
26
26
  end
27
27
  end
28
28
  end
@@ -1239,7 +1239,6 @@ module Google
1239
1239
 
1240
1240
  property :eventing_config_template, as: 'eventingConfigTemplate', class: Google::Apis::ConnectorsV1::EventingConfigTemplate, decorator: Google::Apis::ConnectorsV1::EventingConfigTemplate::Representation
1241
1241
 
1242
- property :is_async_operations_supported, as: 'isAsyncOperationsSupported'
1243
1242
  property :is_custom_actions_supported, as: 'isCustomActionsSupported'
1244
1243
  property :is_custom_entities_supported, as: 'isCustomEntitiesSupported'
1245
1244
  hash :labels, as: 'labels'
@@ -1314,8 +1313,12 @@ module Google
1314
1313
  class CustomConnectorVersion
1315
1314
  # @private
1316
1315
  class Representation < Google::Apis::Core::JsonRepresentation
1316
+ property :async_operations_support, as: 'asyncOperationsSupport'
1317
1317
  property :auth_config, as: 'authConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
1318
1318
 
1319
+ collection :auth_config_templates, as: 'authConfigTemplates', class: Google::Apis::ConnectorsV1::AuthConfigTemplate, decorator: Google::Apis::ConnectorsV1::AuthConfigTemplate::Representation
1320
+
1321
+ property :auth_override_support, as: 'authOverrideSupport'
1319
1322
  collection :backend_variable_templates, as: 'backendVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
1320
1323
 
1321
1324
  property :create_time, as: 'createTime'
@@ -1558,6 +1561,8 @@ module Google
1558
1561
 
1559
1562
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
1560
1563
 
1564
+ property :ssl_config, as: 'sslConfig', class: Google::Apis::ConnectorsV1::SslConfig, decorator: Google::Apis::ConnectorsV1::SslConfig::Representation
1565
+
1561
1566
  end
1562
1567
  end
1563
1568
 
@@ -1581,6 +1586,8 @@ module Google
1581
1586
 
1582
1587
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
1583
1588
 
1589
+ property :ssl_config_template, as: 'sslConfigTemplate', class: Google::Apis::ConnectorsV1::SslConfigTemplate, decorator: Google::Apis::ConnectorsV1::SslConfigTemplate::Representation
1590
+
1584
1591
  collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
1585
1592
 
1586
1593
  end
@@ -1719,6 +1726,7 @@ module Google
1719
1726
  # @private
1720
1727
  class Representation < Google::Apis::Core::JsonRepresentation
1721
1728
  property :consumer_defined_name, as: 'consumerDefinedName'
1729
+ property :consumer_project_number, as: 'consumerProjectNumber'
1722
1730
  property :create_time, as: 'createTime'
1723
1731
  property :instance_type, as: 'instanceType'
1724
1732
  hash :labels, as: 'labels'
@@ -2559,6 +2567,7 @@ module Google
2559
2567
  # @private
2560
2568
  class Representation < Google::Apis::Core::JsonRepresentation
2561
2569
  property :action_apis, as: 'actionApis'
2570
+ property :async_operations, as: 'asyncOperations'
2562
2571
  property :entity_apis, as: 'entityApis'
2563
2572
  property :sql_query, as: 'sqlQuery'
2564
2573
  end
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.69.0
4
+ version: 0.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-16 00:00:00.000000000 Z
10
+ date: 1980-01-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.69.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.71.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:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Connectors API V1
79
79
  test_files: []