google-apis-connectors_v1 0.48.0 → 0.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a4068106349e128a6570e513ad7fd82f6ea5e8c00b0e86af21b025ef2836db2
4
- data.tar.gz: '08a834aabdbb3702a7f0b2ac18a21428f9a687b44ed80f463ef2a99bdbd644c0'
3
+ metadata.gz: bc958907920f58b9f93d3a12c728b2e71eb9be47b6f62b92d54685ade8c4e855
4
+ data.tar.gz: 559e5d9859f253b439fe6292e24f41450587c80e7b0405e1056f654fc86cd822
5
5
  SHA512:
6
- metadata.gz: a766344833ececeb754a0392b5d9f4d4244aaca1768b11f7a15acbb7069a24c16210dd000f4cfeb92ad1a3a08a082ca6a6268af859d1ba4f31c54e59417d4360
7
- data.tar.gz: 39a17b3c773e512e69c3c515ee5682595730125d028a9d99e29a067cb06133322eb9219d46b5250d918c2aa65cc5714dfd47cc66501719022164178378c22540
6
+ metadata.gz: 139bb0945efcc645e05a723812dd28fa10c8e5ed67870a5d1ae703409247f4470727c99406beed755901a88224e4772ba85a403d350723f2cff1d04eced924e4
7
+ data.tar.gz: 05c0fbd3987795c65bf70bcfe7507c8461ec20a9e22f1789e6d04a6485b445213382bb144499bbb78a07cd553eac8928ebad2c759bb71370fd9e4547e9a8a25a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.49.0 (2024-01-23)
4
+
5
+ * Regenerated from discovery document revision 20240116
6
+ * Regenerated using generator version 0.13.0
7
+
3
8
  ### v0.48.0 (2024-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20240102
@@ -1263,7 +1263,7 @@ module Google
1263
1263
  # @return [String]
1264
1264
  attr_accessor :name
1265
1265
 
1266
- # Required. Service account used by runtime plane to access auth config secrets.
1266
+ # Optional. Service account used by runtime plane to access auth config secrets.
1267
1267
  # Corresponds to the JSON property `serviceAccount`
1268
1268
  # @return [String]
1269
1269
  attr_accessor :service_account
@@ -2004,6 +2004,11 @@ module Google
2004
2004
  attr_accessor :private_connectivity_enabled
2005
2005
  alias_method :private_connectivity_enabled?, :private_connectivity_enabled
2006
2006
 
2007
+ # Define the Connectors target endpoint.
2008
+ # Corresponds to the JSON property `proxyDestinationConfig`
2009
+ # @return [Google::Apis::ConnectorsV1::DestinationConfig]
2010
+ attr_accessor :proxy_destination_config
2011
+
2007
2012
  # Define the Connectors target endpoint.
2008
2013
  # Corresponds to the JSON property `registrationDestinationConfig`
2009
2014
  # @return [Google::Apis::ConnectorsV1::DestinationConfig]
@@ -2022,6 +2027,7 @@ module Google
2022
2027
  @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
2023
2028
  @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
2024
2029
  @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
2030
+ @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2025
2031
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2026
2032
  end
2027
2033
  end
@@ -2080,6 +2086,12 @@ module Google
2080
2086
  # @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]
2081
2087
  attr_accessor :listener_auth_config_templates
2082
2088
 
2089
+ # DestinationConfigTemplate defines required destinations supported by the
2090
+ # Connector.
2091
+ # Corresponds to the JSON property `proxyDestinationConfig`
2092
+ # @return [Google::Apis::ConnectorsV1::DestinationConfigTemplate]
2093
+ attr_accessor :proxy_destination_config
2094
+
2083
2095
  # DestinationConfigTemplate defines required destinations supported by the
2084
2096
  # Connector.
2085
2097
  # Corresponds to the JSON property `registrationDestinationConfig`
@@ -2101,6 +2113,7 @@ module Google
2101
2113
  @event_listener_type = args[:event_listener_type] if args.key?(:event_listener_type)
2102
2114
  @is_eventing_supported = args[:is_eventing_supported] if args.key?(:is_eventing_supported)
2103
2115
  @listener_auth_config_templates = args[:listener_auth_config_templates] if args.key?(:listener_auth_config_templates)
2116
+ @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2104
2117
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2105
2118
  end
2106
2119
  end
@@ -4268,6 +4281,12 @@ module Google
4268
4281
  # @return [Google::Apis::ConnectorsV1::NetworkConfig]
4269
4282
  attr_accessor :network_config
4270
4283
 
4284
+ # Output only. Specifies whether the region is provisioned.
4285
+ # Corresponds to the JSON property `provisioned`
4286
+ # @return [Boolean]
4287
+ attr_accessor :provisioned
4288
+ alias_method :provisioned?, :provisioned
4289
+
4271
4290
  def initialize(**args)
4272
4291
  update!(**args)
4273
4292
  end
@@ -4277,6 +4296,7 @@ module Google
4277
4296
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
4278
4297
  @name = args[:name] if args.key?(:name)
4279
4298
  @network_config = args[:network_config] if args.key?(:network_config)
4299
+ @provisioned = args[:provisioned] if args.key?(:provisioned)
4280
4300
  end
4281
4301
  end
4282
4302
 
@@ -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.48.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240102"
25
+ REVISION = "20240116"
26
26
  end
27
27
  end
28
28
  end
@@ -1260,6 +1260,8 @@ module Google
1260
1260
  property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
1261
1261
 
1262
1262
  property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
1263
+ property :proxy_destination_config, as: 'proxyDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
1264
+
1263
1265
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
1264
1266
 
1265
1267
  end
@@ -1281,6 +1283,8 @@ module Google
1281
1283
  property :is_eventing_supported, as: 'isEventingSupported'
1282
1284
  collection :listener_auth_config_templates, as: 'listenerAuthConfigTemplates', class: Google::Apis::ConnectorsV1::AuthConfigTemplate, decorator: Google::Apis::ConnectorsV1::AuthConfigTemplate::Representation
1283
1285
 
1286
+ property :proxy_destination_config, as: 'proxyDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
1287
+
1284
1288
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
1285
1289
 
1286
1290
  end
@@ -1867,6 +1871,7 @@ module Google
1867
1871
  property :name, as: 'name'
1868
1872
  property :network_config, as: 'networkConfig', class: Google::Apis::ConnectorsV1::NetworkConfig, decorator: Google::Apis::ConnectorsV1::NetworkConfig::Representation
1869
1873
 
1874
+ property :provisioned, as: 'provisioned'
1870
1875
  end
1871
1876
  end
1872
1877
 
@@ -33,6 +33,8 @@ module Google
33
33
  #
34
34
  # @see https://cloud.google.com/apigee/docs/api-platform/connectors/about-connectors
35
35
  class ConnectorsService < Google::Apis::Core::BaseService
36
+ DEFAULT_ENDPOINT_TEMPLATE = "https://connectors.$UNIVERSE_DOMAIN$/"
37
+
36
38
  # @return [String]
37
39
  # API key. Your API key identifies your project and provides you with API access,
38
40
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -44,7 +46,7 @@ module Google
44
46
  attr_accessor :quota_user
45
47
 
46
48
  def initialize
47
- super('https://connectors.googleapis.com/', '',
49
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
48
50
  client_name: 'google-apis-connectors_v1',
49
51
  client_version: Google::Apis::ConnectorsV1::GEM_VERSION)
50
52
  @batch_path = 'batch'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-07 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  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.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
63
63
  post_install_message:
64
64
  rdoc_options: []