google-apis-connectors_v1 0.13.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
@@ -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)
|
@@ -398,11 +432,6 @@ module Google
|
|
398
432
|
# @return [String]
|
399
433
|
attr_accessor :description
|
400
434
|
|
401
|
-
# Output only. Outbound domains/hosts needs to be allowlisted.
|
402
|
-
# Corresponds to the JSON property `egressBackends`
|
403
|
-
# @return [Array<String>]
|
404
|
-
attr_accessor :egress_backends
|
405
|
-
|
406
435
|
# Output only. GCR location where the envoy image is stored. formatted like: gcr.
|
407
436
|
# io/`bucketName`/`imageName`
|
408
437
|
# Corresponds to the JSON property `envoyImageLocation`
|
@@ -474,7 +503,6 @@ module Google
|
|
474
503
|
@connector_version = args[:connector_version] if args.key?(:connector_version)
|
475
504
|
@create_time = args[:create_time] if args.key?(:create_time)
|
476
505
|
@description = args[:description] if args.key?(:description)
|
477
|
-
@egress_backends = args[:egress_backends] if args.key?(:egress_backends)
|
478
506
|
@envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
|
479
507
|
@image_location = args[:image_location] if args.key?(:image_location)
|
480
508
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -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
|
@@ -437,7 +453,6 @@ module Google
|
|
437
453
|
property :connector_version, as: 'connectorVersion'
|
438
454
|
property :create_time, as: 'createTime'
|
439
455
|
property :description, as: 'description'
|
440
|
-
collection :egress_backends, as: 'egressBackends'
|
441
456
|
property :envoy_image_location, as: 'envoyImageLocation'
|
442
457
|
property :image_location, as: 'imageLocation'
|
443
458
|
hash :labels, as: 'labels'
|
@@ -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
|
@@ -386,10 +386,10 @@ module Google
|
|
386
386
|
# locations/`location`/connections/`connection`
|
387
387
|
# @param [Google::Apis::ConnectorsV1::Connection] connection_object
|
388
388
|
# @param [String] update_mask
|
389
|
-
# Field mask is used to specify the fields to be overwritten in the
|
390
|
-
# resource by the update. The fields specified in the update_mask are
|
391
|
-
# to the resource, not the full request. A field will be overwritten if
|
392
|
-
# the mask. If the user does not provide a mask then all fields will be
|
389
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
390
|
+
# Connection resource by the update. The fields specified in the update_mask are
|
391
|
+
# relative to the resource, not the full request. A field will be overwritten if
|
392
|
+
# it is in the mask. If the user does not provide a mask then all fields will be
|
393
393
|
# overwritten.
|
394
394
|
# @param [String] fields
|
395
395
|
# Selector specifying which fields to include in a partial response.
|
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-07-
|
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
|
@@ -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: []
|