google-apis-connectors_v1 0.9.0 → 0.12.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: 794ec9328fe65f7c0aa8f64eb791178a1a99f816f84f7ed5f0ef2ea7a6b3c57c
4
- data.tar.gz: 6d0300ead5b361d703ee1eaa2bf3d1f2e8661236b70b7ea1cf47306738330ee4
3
+ metadata.gz: 2a75858f16d3c6734402c616897f6b8db326ad95f3e45f60e37b0b105adcb0f2
4
+ data.tar.gz: 3e7079eebeac028d83890f980ccda9abc87a4cc51d84ec9aa962295ca8412d3b
5
5
  SHA512:
6
- metadata.gz: 3f449bfe979f08c378c7ba1f2d75f9850a6e07b0f1cd4f0451a5038e99a187bbbe301433c14ea2bbfcd8966f58d2d8ee6deb9b74bce792cfbb3aa1a17e52f891
7
- data.tar.gz: 52ed5d39e9d3dd46d7e71a70bbb8831afadb9ccbd30fe357b37a211f65f69f7b8091fe5f403147816d39691403691a43c0031454d6e4e7c4eb1ed8df6f604ed7
6
+ metadata.gz: 31ce2529dc97d403f083114c0a09a5eafa48d08e920dde48795d89f6d3067b8f3405689f3e09f7487d11c04df595948ca8f62fab5bf87b3f3606ad0cda663138
7
+ data.tar.gz: 267a32b0928efb705e4eba8f3b92a5deb405afb187594bcb3e3d62afbe7d31bfadb174fd121270a70887100a96e8cd8a74dc0168056c91f078a7709d1f87e2e1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.12.0 (2022-06-26)
4
+
5
+ * Regenerated from discovery document revision 20220616
6
+
7
+ ### v0.11.0 (2022-06-18)
8
+
9
+ * Regenerated using generator version 0.7.0
10
+
11
+ ### v0.10.0 (2022-06-10)
12
+
13
+ * Regenerated from discovery document revision 20220603
14
+ * Regenerated using generator version 0.5.0
15
+ * Unspecified changes
16
+
3
17
  ### v0.9.0 (2022-05-28)
4
18
 
5
19
  * Regenerated from discovery document revision 20220523
@@ -120,6 +120,11 @@ module Google
120
120
  # @return [Google::Apis::ConnectorsV1::Oauth2JwtBearer]
121
121
  attr_accessor :oauth2_jwt_bearer
122
122
 
123
+ # Parameters to support Ssh public key Authentication.
124
+ # Corresponds to the JSON property `sshPublicKey`
125
+ # @return [Google::Apis::ConnectorsV1::SshPublicKey]
126
+ attr_accessor :ssh_public_key
127
+
123
128
  # Parameters to support Username and Password Authentication.
124
129
  # Corresponds to the JSON property `userPassword`
125
130
  # @return [Google::Apis::ConnectorsV1::UserPassword]
@@ -135,6 +140,7 @@ module Google
135
140
  @auth_type = args[:auth_type] if args.key?(:auth_type)
136
141
  @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
137
142
  @oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer)
143
+ @ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key)
138
144
  @user_password = args[:user_password] if args.key?(:user_password)
139
145
  end
140
146
  end
@@ -2003,6 +2009,43 @@ module Google
2003
2009
  end
2004
2010
  end
2005
2011
 
2012
+ # Parameters to support Ssh public key Authentication.
2013
+ class SshPublicKey
2014
+ include Google::Apis::Core::Hashable
2015
+
2016
+ # Format of SSH Client cert.
2017
+ # Corresponds to the JSON property `certType`
2018
+ # @return [String]
2019
+ attr_accessor :cert_type
2020
+
2021
+ # Secret provides a reference to entries in Secret Manager.
2022
+ # Corresponds to the JSON property `password`
2023
+ # @return [Google::Apis::ConnectorsV1::Secret]
2024
+ attr_accessor :password
2025
+
2026
+ # Secret provides a reference to entries in Secret Manager.
2027
+ # Corresponds to the JSON property `sshClientCert`
2028
+ # @return [Google::Apis::ConnectorsV1::Secret]
2029
+ attr_accessor :ssh_client_cert
2030
+
2031
+ # The user account used to authenticate.
2032
+ # Corresponds to the JSON property `username`
2033
+ # @return [String]
2034
+ attr_accessor :username
2035
+
2036
+ def initialize(**args)
2037
+ update!(**args)
2038
+ end
2039
+
2040
+ # Update properties of this object
2041
+ def update!(**args)
2042
+ @cert_type = args[:cert_type] if args.key?(:cert_type)
2043
+ @password = args[:password] if args.key?(:password)
2044
+ @ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
2045
+ @username = args[:username] if args.key?(:username)
2046
+ end
2047
+ end
2048
+
2006
2049
  # The `Status` type defines a logical error model that is suitable for different
2007
2050
  # programming environments, including REST APIs and RPC APIs. It is used by [
2008
2051
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.9.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220523"
25
+ REVISION = "20220616"
26
26
  end
27
27
  end
28
28
  end
@@ -304,6 +304,12 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
+ class SshPublicKey
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
307
313
  class Status
308
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
315
 
@@ -361,6 +367,8 @@ module Google
361
367
 
362
368
  property :oauth2_jwt_bearer, as: 'oauth2JwtBearer', class: Google::Apis::ConnectorsV1::Oauth2JwtBearer, decorator: Google::Apis::ConnectorsV1::Oauth2JwtBearer::Representation
363
369
 
370
+ property :ssh_public_key, as: 'sshPublicKey', class: Google::Apis::ConnectorsV1::SshPublicKey, decorator: Google::Apis::ConnectorsV1::SshPublicKey::Representation
371
+
364
372
  property :user_password, as: 'userPassword', class: Google::Apis::ConnectorsV1::UserPassword, decorator: Google::Apis::ConnectorsV1::UserPassword::Representation
365
373
 
366
374
  end
@@ -841,6 +849,18 @@ module Google
841
849
  end
842
850
  end
843
851
 
852
+ class SshPublicKey
853
+ # @private
854
+ class Representation < Google::Apis::Core::JsonRepresentation
855
+ property :cert_type, as: 'certType'
856
+ property :password, as: 'password', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
857
+
858
+ property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
859
+
860
+ property :username, as: 'username'
861
+ end
862
+ end
863
+
844
864
  class Status
845
865
  # @private
846
866
  class Representation < Google::Apis::Core::JsonRepresentation
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.9.0
4
+ version: 0.12.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: 2022-05-30 00:00:00.000000000 Z
11
+ date: 2022-06-27 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.4'
19
+ version: '0.6'
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.4'
29
+ version: '0.6'
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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.12.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: []