google-apis-connectors_v1 0.11.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7d37e6df85384a47adfd825dfd1a204577b008219c01bf3f6da5bd1f1ea79b7
|
4
|
+
data.tar.gz: 16a3ef34c2b6642471da4affa898b32710aa3d4499f56deb18f777472372d631
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26fed3a3d97d00ec640ce6ce9256c705d708ad7b4493033860d46c4b2f3d863fbba30d8cf0e8d00e0cd2f361f4fac366e05ad6fb806d60739475be51d8316750
|
7
|
+
data.tar.gz: 4b7ac5f63aa6d475900889057476298e7cd34698da33b037b2a65fcf7d1093b62d8d4ba8a540e8ce8b3c60631bd35d3069eef53e1a713558858a09e9d1e4493a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.14.0 (2022-07-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220707
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
8
|
+
### v0.13.0 (2022-06-30)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.8.0
|
11
|
+
|
12
|
+
### v0.12.0 (2022-06-26)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220616
|
15
|
+
|
3
16
|
### v0.11.0 (2022-06-18)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.7.0
|
@@ -120,7 +120,7 @@ module Google
|
|
120
120
|
# @return [Google::Apis::ConnectorsV1::Oauth2JwtBearer]
|
121
121
|
attr_accessor :oauth2_jwt_bearer
|
122
122
|
|
123
|
-
#
|
123
|
+
# Parameters to support Ssh public key Authentication.
|
124
124
|
# Corresponds to the JSON property `sshPublicKey`
|
125
125
|
# @return [Google::Apis::ConnectorsV1::SshPublicKey]
|
126
126
|
attr_accessor :ssh_public_key
|
@@ -170,6 +170,33 @@ module Google
|
|
170
170
|
end
|
171
171
|
end
|
172
172
|
|
173
|
+
# This configuration captures the details required to render an authorization
|
174
|
+
# link for the OAuth Authorization Code Flow.
|
175
|
+
class AuthorizationCodeLink
|
176
|
+
include Google::Apis::Core::Hashable
|
177
|
+
|
178
|
+
# The scopes for which the user will authorize GCP Connectors on the connector
|
179
|
+
# data source.
|
180
|
+
# Corresponds to the JSON property `scopes`
|
181
|
+
# @return [Array<String>]
|
182
|
+
attr_accessor :scopes
|
183
|
+
|
184
|
+
# The base URI the user must click to trigger the authorization code login flow.
|
185
|
+
# Corresponds to the JSON property `uri`
|
186
|
+
# @return [String]
|
187
|
+
attr_accessor :uri
|
188
|
+
|
189
|
+
def initialize(**args)
|
190
|
+
update!(**args)
|
191
|
+
end
|
192
|
+
|
193
|
+
# Update properties of this object
|
194
|
+
def update!(**args)
|
195
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
196
|
+
@uri = args[:uri] if args.key?(:uri)
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
173
200
|
# Associates `members`, or principals, with a `role`.
|
174
201
|
class Binding
|
175
202
|
include Google::Apis::Core::Hashable
|
@@ -304,6 +331,12 @@ module Google
|
|
304
331
|
class ConfigVariableTemplate
|
305
332
|
include Google::Apis::Core::Hashable
|
306
333
|
|
334
|
+
# This configuration captures the details required to render an authorization
|
335
|
+
# link for the OAuth Authorization Code Flow.
|
336
|
+
# Corresponds to the JSON property `authorizationCodeLink`
|
337
|
+
# @return [Google::Apis::ConnectorsV1::AuthorizationCodeLink]
|
338
|
+
attr_accessor :authorization_code_link
|
339
|
+
|
307
340
|
# Description.
|
308
341
|
# Corresponds to the JSON property `description`
|
309
342
|
# @return [String]
|
@@ -357,6 +390,7 @@ module Google
|
|
357
390
|
|
358
391
|
# Update properties of this object
|
359
392
|
def update!(**args)
|
393
|
+
@authorization_code_link = args[:authorization_code_link] if args.key?(:authorization_code_link)
|
360
394
|
@description = args[:description] if args.key?(:description)
|
361
395
|
@display_name = args[:display_name] if args.key?(:display_name)
|
362
396
|
@enum_options = args[:enum_options] if args.key?(:enum_options)
|
@@ -1842,11 +1876,6 @@ module Google
|
|
1842
1876
|
# @return [String]
|
1843
1877
|
attr_accessor :location_id
|
1844
1878
|
|
1845
|
-
# Output only. Resource name of the form: `projects/*/locations/*/runtimeConfig`
|
1846
|
-
# Corresponds to the JSON property `name`
|
1847
|
-
# @return [String]
|
1848
|
-
attr_accessor :name
|
1849
|
-
|
1850
1879
|
# Output only. The endpoint of the connectors runtime ingress.
|
1851
1880
|
# Corresponds to the JSON property `runtimeEndpoint`
|
1852
1881
|
# @return [String]
|
@@ -1878,7 +1907,6 @@ module Google
|
|
1878
1907
|
@control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription)
|
1879
1908
|
@control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic)
|
1880
1909
|
@location_id = args[:location_id] if args.key?(:location_id)
|
1881
|
-
@name = args[:name] if args.key?(:name)
|
1882
1910
|
@runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint)
|
1883
1911
|
@schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket)
|
1884
1912
|
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
@@ -2009,7 +2037,7 @@ module Google
|
|
2009
2037
|
end
|
2010
2038
|
end
|
2011
2039
|
|
2012
|
-
#
|
2040
|
+
# Parameters to support Ssh public key Authentication.
|
2013
2041
|
class SshPublicKey
|
2014
2042
|
include Google::Apis::Core::Hashable
|
2015
2043
|
|
@@ -2028,6 +2056,11 @@ module Google
|
|
2028
2056
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
2029
2057
|
attr_accessor :ssh_client_cert
|
2030
2058
|
|
2059
|
+
# Secret provides a reference to entries in Secret Manager.
|
2060
|
+
# Corresponds to the JSON property `sshClientCertPass`
|
2061
|
+
# @return [Google::Apis::ConnectorsV1::Secret]
|
2062
|
+
attr_accessor :ssh_client_cert_pass
|
2063
|
+
|
2031
2064
|
# The user account used to authenticate.
|
2032
2065
|
# Corresponds to the JSON property `username`
|
2033
2066
|
# @return [String]
|
@@ -2042,6 +2075,7 @@ module Google
|
|
2042
2075
|
@cert_type = args[:cert_type] if args.key?(:cert_type)
|
2043
2076
|
@password = args[:password] if args.key?(:password)
|
2044
2077
|
@ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
|
2078
|
+
@ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass)
|
2045
2079
|
@username = args[:username] if args.key?(:username)
|
2046
2080
|
end
|
2047
2081
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220707"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class AuthorizationCodeLink
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class Binding
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -383,6 +389,14 @@ module Google
|
|
383
389
|
end
|
384
390
|
end
|
385
391
|
|
392
|
+
class AuthorizationCodeLink
|
393
|
+
# @private
|
394
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
395
|
+
collection :scopes, as: 'scopes'
|
396
|
+
property :uri, as: 'uri'
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
386
400
|
class Binding
|
387
401
|
# @private
|
388
402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -414,6 +428,8 @@ module Google
|
|
414
428
|
class ConfigVariableTemplate
|
415
429
|
# @private
|
416
430
|
class Representation < Google::Apis::Core::JsonRepresentation
|
431
|
+
property :authorization_code_link, as: 'authorizationCodeLink', class: Google::Apis::ConnectorsV1::AuthorizationCodeLink, decorator: Google::Apis::ConnectorsV1::AuthorizationCodeLink::Representation
|
432
|
+
|
417
433
|
property :description, as: 'description'
|
418
434
|
property :display_name, as: 'displayName'
|
419
435
|
collection :enum_options, as: 'enumOptions', class: Google::Apis::ConnectorsV1::EnumOption, decorator: Google::Apis::ConnectorsV1::EnumOption::Representation
|
@@ -808,7 +824,6 @@ module Google
|
|
808
824
|
property :control_plane_subscription, as: 'controlPlaneSubscription'
|
809
825
|
property :control_plane_topic, as: 'controlPlaneTopic'
|
810
826
|
property :location_id, as: 'locationId'
|
811
|
-
property :name, as: 'name'
|
812
827
|
property :runtime_endpoint, as: 'runtimeEndpoint'
|
813
828
|
property :schema_gcs_bucket, as: 'schemaGcsBucket'
|
814
829
|
property :service_directory, as: 'serviceDirectory'
|
@@ -857,6 +872,8 @@ module Google
|
|
857
872
|
|
858
873
|
property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
859
874
|
|
875
|
+
property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
876
|
+
|
860
877
|
property :username, as: 'username'
|
861
878
|
end
|
862
879
|
end
|
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.
|
4
|
+
version: 0.14.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-
|
11
|
+
date: 2022-07-18 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.
|
19
|
+
version: '0.7'
|
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.
|
29
|
+
version: '0.7'
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.14.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: []
|