google-apis-connectors_v1 0.51.0 → 0.52.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: b21c30a649d9171894c30f42109474269657402e061e4349126b45716184c912
4
- data.tar.gz: 3ed7735f84165cf41de7bd23a39ed6dbed4aac2c19e575d9d620a8672b46e8e0
3
+ metadata.gz: 50c2f3632696df875e9c1ff2b994e3da5b91f56aec0db1b7f8f8e4f646551424
4
+ data.tar.gz: ad5c9d4bc1a13004d20e4bc70a7072657962fba6f216d3d3486a61d63d40c558
5
5
  SHA512:
6
- metadata.gz: a553f8172bae7f9bf1d4fd86c289709a8e3cb1fb0e2dcf92fad6d7af4865f0006d1b45cba8b9fa9455e7e3688bfb3426f1b4ba83de50e85ae0eae7c6c14ca4c0
7
- data.tar.gz: 76c8636c7ef9c9b98b4c9bed0b7b3516dfa71f6ba2415dd728ca53cea1d5af1ebe42461d41c866877690f2defa7c50190ea803b7926a31932da85a2ad9dc4573
6
+ metadata.gz: 63a4efb1e1822d4ab6dd516a4ee014d790198682d193349de03e1937863c4af4d73ad71f8bf9a948f7af71292abcd5a44d5311f7dcdc28dd4797c3ab9b02547b
7
+ data.tar.gz: c644954c3e6dc0ed5f4003e21501af78e42d32f9e014deee602fabaecb6013ab8808022aa3ae24de10ef951dc65b9de5bff4c75dbe7b2d376ad3fa4adbdcb8fc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.52.0 (2024-02-24)
4
+
5
+ * Regenerated from discovery document revision 20240221
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.51.0 (2024-02-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20240207
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ 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.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
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. Currently, this means Ruby 2.5 and later. 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.
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
 
90
90
  ## License
91
91
 
@@ -1159,6 +1159,11 @@ module Google
1159
1159
  class CustomConnector
1160
1160
  include Google::Apis::Core::Hashable
1161
1161
 
1162
+ # Optional. Active connector versions.
1163
+ # Corresponds to the JSON property `activeConnectorVersions`
1164
+ # @return [Array<String>]
1165
+ attr_accessor :active_connector_versions
1166
+
1162
1167
  # Output only. Created time.
1163
1168
  # Corresponds to the JSON property `createTime`
1164
1169
  # @return [String]
@@ -1208,6 +1213,7 @@ module Google
1208
1213
 
1209
1214
  # Update properties of this object
1210
1215
  def update!(**args)
1216
+ @active_connector_versions = args[:active_connector_versions] if args.key?(:active_connector_versions)
1211
1217
  @create_time = args[:create_time] if args.key?(:create_time)
1212
1218
  @custom_connector_type = args[:custom_connector_type] if args.key?(:custom_connector_type)
1213
1219
  @description = args[:description] if args.key?(:description)
@@ -1271,7 +1277,9 @@ module Google
1271
1277
  # @return [String]
1272
1278
  attr_accessor :service_account
1273
1279
 
1274
- # Optional. Location of the custom connector spec.
1280
+ # Optional. Location of the custom connector spec. The location can be either a
1281
+ # public url like `https://public-url.com/spec` Or a Google Cloud Storage
1282
+ # location like `gs:///`
1275
1283
  # Corresponds to the JSON property `specLocation`
1276
1284
  # @return [String]
1277
1285
  attr_accessor :spec_location
@@ -2023,6 +2031,11 @@ module Google
2023
2031
  # @return [Google::Apis::ConnectorsV1::DestinationConfig]
2024
2032
  attr_accessor :registration_destination_config
2025
2033
 
2034
+ # Optional. Additional eventing related field values
2035
+ # Corresponds to the JSON property `triggerConfigVariables`
2036
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
2037
+ attr_accessor :trigger_config_variables
2038
+
2026
2039
  def initialize(**args)
2027
2040
  update!(**args)
2028
2041
  end
@@ -2038,6 +2051,7 @@ module Google
2038
2051
  @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
2039
2052
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2040
2053
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2054
+ @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
2041
2055
  end
2042
2056
  end
2043
2057
 
@@ -2107,6 +2121,11 @@ module Google
2107
2121
  # @return [Google::Apis::ConnectorsV1::DestinationConfigTemplate]
2108
2122
  attr_accessor :registration_destination_config
2109
2123
 
2124
+ # Trigger Config fields that needs to be rendered
2125
+ # Corresponds to the JSON property `triggerConfigVariables`
2126
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
2127
+ attr_accessor :trigger_config_variables
2128
+
2110
2129
  def initialize(**args)
2111
2130
  update!(**args)
2112
2131
  end
@@ -2124,6 +2143,7 @@ module Google
2124
2143
  @listener_auth_config_templates = args[:listener_auth_config_templates] if args.key?(:listener_auth_config_templates)
2125
2144
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2126
2145
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2146
+ @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
2127
2147
  end
2128
2148
  end
2129
2149
 
@@ -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.51.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240207"
25
+ REVISION = "20240221"
26
26
  end
27
27
  end
28
28
  end
@@ -1034,6 +1034,7 @@ module Google
1034
1034
  class CustomConnector
1035
1035
  # @private
1036
1036
  class Representation < Google::Apis::Core::JsonRepresentation
1037
+ collection :active_connector_versions, as: 'activeConnectorVersions'
1037
1038
  property :create_time, as: 'createTime'
1038
1039
  property :custom_connector_type, as: 'customConnectorType'
1039
1040
  property :description, as: 'description'
@@ -1265,6 +1266,8 @@ module Google
1265
1266
 
1266
1267
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
1267
1268
 
1269
+ collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
1270
+
1268
1271
  end
1269
1272
  end
1270
1273
 
@@ -1288,6 +1291,8 @@ module Google
1288
1291
 
1289
1292
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
1290
1293
 
1294
+ collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
1295
+
1291
1296
  end
1292
1297
  end
1293
1298
 
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.51.0
4
+ version: 0.52.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-02-18 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.0
19
+ version: 0.14.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.12.0
29
+ version: 0.14.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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.52.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Connectors API V1