google-apis-connectors_v1 0.27.0 → 0.28.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: 50382dd0ffff5ebb3b5979b886f70625100c0e2bb95f8ab82bae2eee9701d991
4
- data.tar.gz: 9e84aa21efb6d694afe2850639cc82493183a4d1338e1acf1eb9904d5da7fac5
3
+ metadata.gz: beb86da61024256c7496c8d289753a32ac793ce613def508b75f90028a6cd988
4
+ data.tar.gz: 566a46042c69039f04483ccd1a50c8654bf91a5fb6fe6d027171325a29abe3a4
5
5
  SHA512:
6
- metadata.gz: f6a97f8578942f52b056445db066e9f8543a65bc248894693bb42eaa2bea69429e71b318eeaa62c458de415865e5d4e2e112e53610e4d6cbebb65633a4bced3c
7
- data.tar.gz: 7b0294dbb593a84309b542fbc8aa4c4fac6d76202f4cf4358f2a4458192252cd92a100858f955fdeb051b9e9b4ffa7dd742541611217e86cba3d52bc2d1c27af
6
+ metadata.gz: 6441367af859b018855714ca3b5c20fc5296d02b35c7125a05e5da2a098355967f8263643f8a1cb1ae797e58f7db2f4a13e450a6621bfa698dcc2d09aca1a8b3
7
+ data.tar.gz: 940eccc6c7b9bb2d88630ed5979d8776e545774289d3e2de63df83e2f1cdf2562b3bf977184ce87c1d093003c13760a18fbd80213dd5d1253b3c49e147ad47b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.28.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230417
6
+
3
7
  ### v0.27.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230403
@@ -102,6 +102,11 @@ module Google
102
102
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
103
103
  attr_accessor :additional_variables
104
104
 
105
+ # Identifier key for auth config
106
+ # Corresponds to the JSON property `authKey`
107
+ # @return [String]
108
+ attr_accessor :auth_key
109
+
105
110
  # The type of authentication configured.
106
111
  # Corresponds to the JSON property `authType`
107
112
  # @return [String]
@@ -143,6 +148,7 @@ module Google
143
148
  # Update properties of this object
144
149
  def update!(**args)
145
150
  @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
151
+ @auth_key = args[:auth_key] if args.key?(:auth_key)
146
152
  @auth_type = args[:auth_type] if args.key?(:auth_type)
147
153
  @oauth2_auth_code_flow = args[:oauth2_auth_code_flow] if args.key?(:oauth2_auth_code_flow)
148
154
  @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
@@ -156,6 +162,11 @@ module Google
156
162
  class AuthConfigTemplate
157
163
  include Google::Apis::Core::Hashable
158
164
 
165
+ # Identifier key for auth config
166
+ # Corresponds to the JSON property `authKey`
167
+ # @return [String]
168
+ attr_accessor :auth_key
169
+
159
170
  # The type of authentication configured.
160
171
  # Corresponds to the JSON property `authType`
161
172
  # @return [String]
@@ -182,6 +193,7 @@ module Google
182
193
 
183
194
  # Update properties of this object
184
195
  def update!(**args)
196
+ @auth_key = args[:auth_key] if args.key?(:auth_key)
185
197
  @auth_type = args[:auth_type] if args.key?(:auth_type)
186
198
  @config_variable_templates = args[:config_variable_templates] if args.key?(:config_variable_templates)
187
199
  @description = args[:description] if args.key?(:description)
@@ -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.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230403"
25
+ REVISION = "20230417"
26
26
  end
27
27
  end
28
28
  end
@@ -428,6 +428,7 @@ module Google
428
428
  class Representation < Google::Apis::Core::JsonRepresentation
429
429
  collection :additional_variables, as: 'additionalVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
430
430
 
431
+ property :auth_key, as: 'authKey'
431
432
  property :auth_type, as: 'authType'
432
433
  property :oauth2_auth_code_flow, as: 'oauth2AuthCodeFlow', class: Google::Apis::ConnectorsV1::Oauth2AuthCodeFlow, decorator: Google::Apis::ConnectorsV1::Oauth2AuthCodeFlow::Representation
433
434
 
@@ -445,6 +446,7 @@ module Google
445
446
  class AuthConfigTemplate
446
447
  # @private
447
448
  class Representation < Google::Apis::Core::JsonRepresentation
449
+ property :auth_key, as: 'authKey'
448
450
  property :auth_type, as: 'authType'
449
451
  collection :config_variable_templates, as: 'configVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
450
452
 
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.27.0
4
+ version: 0.28.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: 2023-04-16 00:00:00.000000000 Z
11
+ date: 2023-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.28.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: []