google-apis-connectors_v1 0.51.0 → 0.53.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: 636cf3c3b0ab8172fdd6635fd5a7d05eff7820713a411483c41742d139b77c78
4
+ data.tar.gz: 4de92b51207124e4b54e649f4712bbf31aca44fd8ab7ecfee316f7596b8293fe
5
5
  SHA512:
6
- metadata.gz: a553f8172bae7f9bf1d4fd86c289709a8e3cb1fb0e2dcf92fad6d7af4865f0006d1b45cba8b9fa9455e7e3688bfb3426f1b4ba83de50e85ae0eae7c6c14ca4c0
7
- data.tar.gz: 76c8636c7ef9c9b98b4c9bed0b7b3516dfa71f6ba2415dd728ca53cea1d5af1ebe42461d41c866877690f2defa7c50190ea803b7926a31932da85a2ad9dc4573
6
+ metadata.gz: 21d107c933347938df5e69c8aff8692c42106c9d529f3caeafbc2a5b3dace6adf932857050286ee5d2c541aed7b698fd593da252e8dd1e0238b8829bacef83db
7
+ data.tar.gz: 2c5ec1ca91dad987a01fd3f0a9e09a4841f19e4b36bbce78855f54ffe11aeb88207206cc1e77281d0ee82a6abce8e6240ad23f90f38e74ed0635eca5fc515412
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.53.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240226
6
+
7
+ ### v0.52.0 (2024-02-24)
8
+
9
+ * Regenerated from discovery document revision 20240221
10
+ * Regenerated using generator version 0.14.0
11
+
3
12
  ### v0.51.0 (2024-02-18)
4
13
 
5
14
  * 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
 
@@ -433,6 +433,11 @@ module Google
433
433
  # @return [Array<Google::Apis::ConnectorsV1::EnumOption>]
434
434
  attr_accessor :enum_options
435
435
 
436
+ # Optional. enum source denotes the source of api to fill the enum options
437
+ # Corresponds to the JSON property `enumSource`
438
+ # @return [String]
439
+ attr_accessor :enum_source
440
+
436
441
  # Indicates if current template is part of advanced settings
437
442
  # Corresponds to the JSON property `isAdvanced`
438
443
  # @return [Boolean]
@@ -497,6 +502,7 @@ module Google
497
502
  @description = args[:description] if args.key?(:description)
498
503
  @display_name = args[:display_name] if args.key?(:display_name)
499
504
  @enum_options = args[:enum_options] if args.key?(:enum_options)
505
+ @enum_source = args[:enum_source] if args.key?(:enum_source)
500
506
  @is_advanced = args[:is_advanced] if args.key?(:is_advanced)
501
507
  @key = args[:key] if args.key?(:key)
502
508
  @location_type = args[:location_type] if args.key?(:location_type)
@@ -1159,6 +1165,11 @@ module Google
1159
1165
  class CustomConnector
1160
1166
  include Google::Apis::Core::Hashable
1161
1167
 
1168
+ # Optional. Active connector versions.
1169
+ # Corresponds to the JSON property `activeConnectorVersions`
1170
+ # @return [Array<String>]
1171
+ attr_accessor :active_connector_versions
1172
+
1162
1173
  # Output only. Created time.
1163
1174
  # Corresponds to the JSON property `createTime`
1164
1175
  # @return [String]
@@ -1208,6 +1219,7 @@ module Google
1208
1219
 
1209
1220
  # Update properties of this object
1210
1221
  def update!(**args)
1222
+ @active_connector_versions = args[:active_connector_versions] if args.key?(:active_connector_versions)
1211
1223
  @create_time = args[:create_time] if args.key?(:create_time)
1212
1224
  @custom_connector_type = args[:custom_connector_type] if args.key?(:custom_connector_type)
1213
1225
  @description = args[:description] if args.key?(:description)
@@ -1271,7 +1283,9 @@ module Google
1271
1283
  # @return [String]
1272
1284
  attr_accessor :service_account
1273
1285
 
1274
- # Optional. Location of the custom connector spec.
1286
+ # Optional. Location of the custom connector spec. The location can be either a
1287
+ # public url like `https://public-url.com/spec` Or a Google Cloud Storage
1288
+ # location like `gs:///`
1275
1289
  # Corresponds to the JSON property `specLocation`
1276
1290
  # @return [String]
1277
1291
  attr_accessor :spec_location
@@ -1826,6 +1840,11 @@ module Google
1826
1840
  # @return [String]
1827
1841
  attr_accessor :subscriber_link
1828
1842
 
1843
+ # Optional. Configuration for configuring the trigger
1844
+ # Corresponds to the JSON property `triggerConfigVariables`
1845
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
1846
+ attr_accessor :trigger_config_variables
1847
+
1829
1848
  # Output only. Updated time.
1830
1849
  # Corresponds to the JSON property `updateTime`
1831
1850
  # @return [String]
@@ -1845,6 +1864,7 @@ module Google
1845
1864
  @status = args[:status] if args.key?(:status)
1846
1865
  @subscriber = args[:subscriber] if args.key?(:subscriber)
1847
1866
  @subscriber_link = args[:subscriber_link] if args.key?(:subscriber_link)
1867
+ @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
1848
1868
  @update_time = args[:update_time] if args.key?(:update_time)
1849
1869
  end
1850
1870
  end
@@ -2107,6 +2127,11 @@ module Google
2107
2127
  # @return [Google::Apis::ConnectorsV1::DestinationConfigTemplate]
2108
2128
  attr_accessor :registration_destination_config
2109
2129
 
2130
+ # Trigger Config fields that needs to be rendered
2131
+ # Corresponds to the JSON property `triggerConfigVariables`
2132
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
2133
+ attr_accessor :trigger_config_variables
2134
+
2110
2135
  def initialize(**args)
2111
2136
  update!(**args)
2112
2137
  end
@@ -2124,6 +2149,7 @@ module Google
2124
2149
  @listener_auth_config_templates = args[:listener_auth_config_templates] if args.key?(:listener_auth_config_templates)
2125
2150
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
2126
2151
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
2152
+ @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables)
2127
2153
  end
2128
2154
  end
2129
2155
 
@@ -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.53.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 = "20240226"
26
26
  end
27
27
  end
28
28
  end
@@ -858,6 +858,7 @@ module Google
858
858
  property :display_name, as: 'displayName'
859
859
  collection :enum_options, as: 'enumOptions', class: Google::Apis::ConnectorsV1::EnumOption, decorator: Google::Apis::ConnectorsV1::EnumOption::Representation
860
860
 
861
+ property :enum_source, as: 'enumSource'
861
862
  property :is_advanced, as: 'isAdvanced'
862
863
  property :key, as: 'key'
863
864
  property :location_type, as: 'locationType'
@@ -1034,6 +1035,7 @@ module Google
1034
1035
  class CustomConnector
1035
1036
  # @private
1036
1037
  class Representation < Google::Apis::Core::JsonRepresentation
1038
+ collection :active_connector_versions, as: 'activeConnectorVersions'
1037
1039
  property :create_time, as: 'createTime'
1038
1040
  property :custom_connector_type, as: 'customConnectorType'
1039
1041
  property :description, as: 'description'
@@ -1211,6 +1213,8 @@ module Google
1211
1213
 
1212
1214
  property :subscriber, as: 'subscriber'
1213
1215
  property :subscriber_link, as: 'subscriberLink'
1216
+ collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
1217
+
1214
1218
  property :update_time, as: 'updateTime'
1215
1219
  end
1216
1220
  end
@@ -1288,6 +1292,8 @@ module Google
1288
1292
 
1289
1293
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfigTemplate, decorator: Google::Apis::ConnectorsV1::DestinationConfigTemplate::Representation
1290
1294
 
1295
+ collection :trigger_config_variables, as: 'triggerConfigVariables', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
1296
+
1291
1297
  end
1292
1298
  end
1293
1299
 
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.53.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-03-03 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.53.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