google-apis-connectors_v1 0.13.0 → 0.16.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: 85529cc6c738ae010e9865eb5633aeb697f977a0003c2ad3f860a9de06a74a2f
|
4
|
+
data.tar.gz: 3066f314c5ef8dc379f49b91810bed0c8cbd747d335814279aa17cefefafa266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be14033829e539692e9591e11b8ac46b2c788f10bd3a62f49bf5780dc92aa74addc38cfc6d9d21026905ce045b3e0efb057bbd83917de633f380ca6fbb3a5c42
|
7
|
+
data.tar.gz: e6f8fddbf5fb9070dfacda0df8ca6555449f1da335b560f7289e17e17c55e35ce21a7b161ec0a2a609e6b8bfafc083e08b065c82155900e25551fa41f26df4f2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.16.0 (2022-07-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220718
|
6
|
+
|
7
|
+
### v0.15.0 (2022-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220714
|
10
|
+
|
11
|
+
### v0.14.0 (2022-07-13)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220707
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.13.0 (2022-06-30)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.8.0
|
@@ -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]
|
@@ -339,6 +372,11 @@ module Google
|
|
339
372
|
# @return [Google::Apis::ConnectorsV1::RoleGrant]
|
340
373
|
attr_accessor :role_grant
|
341
374
|
|
375
|
+
# State of the config variable.
|
376
|
+
# Corresponds to the JSON property `state`
|
377
|
+
# @return [String]
|
378
|
+
attr_accessor :state
|
379
|
+
|
342
380
|
# Regular expression in RE2 syntax used for validating the `value` of a `
|
343
381
|
# ConfigVariable`.
|
344
382
|
# Corresponds to the JSON property `validationRegex`
|
@@ -357,12 +395,14 @@ module Google
|
|
357
395
|
|
358
396
|
# Update properties of this object
|
359
397
|
def update!(**args)
|
398
|
+
@authorization_code_link = args[:authorization_code_link] if args.key?(:authorization_code_link)
|
360
399
|
@description = args[:description] if args.key?(:description)
|
361
400
|
@display_name = args[:display_name] if args.key?(:display_name)
|
362
401
|
@enum_options = args[:enum_options] if args.key?(:enum_options)
|
363
402
|
@key = args[:key] if args.key?(:key)
|
364
403
|
@required = args[:required] if args.key?(:required)
|
365
404
|
@role_grant = args[:role_grant] if args.key?(:role_grant)
|
405
|
+
@state = args[:state] if args.key?(:state)
|
366
406
|
@validation_regex = args[:validation_regex] if args.key?(:validation_regex)
|
367
407
|
@value_type = args[:value_type] if args.key?(:value_type)
|
368
408
|
end
|
@@ -398,11 +438,6 @@ module Google
|
|
398
438
|
# @return [String]
|
399
439
|
attr_accessor :description
|
400
440
|
|
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
441
|
# Output only. GCR location where the envoy image is stored. formatted like: gcr.
|
407
442
|
# io/`bucketName`/`imageName`
|
408
443
|
# Corresponds to the JSON property `envoyImageLocation`
|
@@ -474,7 +509,6 @@ module Google
|
|
474
509
|
@connector_version = args[:connector_version] if args.key?(:connector_version)
|
475
510
|
@create_time = args[:create_time] if args.key?(:create_time)
|
476
511
|
@description = args[:description] if args.key?(:description)
|
477
|
-
@egress_backends = args[:egress_backends] if args.key?(:egress_backends)
|
478
512
|
@envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
|
479
513
|
@image_location = args[:image_location] if args.key?(:image_location)
|
480
514
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -1848,6 +1882,12 @@ module Google
|
|
1848
1882
|
# @return [String]
|
1849
1883
|
attr_accessor :location_id
|
1850
1884
|
|
1885
|
+
# Output only. Name of the runtimeConfig resource. Format: projects/`project`/
|
1886
|
+
# locations/`location`/runtimeConfig
|
1887
|
+
# Corresponds to the JSON property `name`
|
1888
|
+
# @return [String]
|
1889
|
+
attr_accessor :name
|
1890
|
+
|
1851
1891
|
# Output only. The endpoint of the connectors runtime ingress.
|
1852
1892
|
# Corresponds to the JSON property `runtimeEndpoint`
|
1853
1893
|
# @return [String]
|
@@ -1879,6 +1919,7 @@ module Google
|
|
1879
1919
|
@control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription)
|
1880
1920
|
@control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic)
|
1881
1921
|
@location_id = args[:location_id] if args.key?(:location_id)
|
1922
|
+
@name = args[:name] if args.key?(:name)
|
1882
1923
|
@runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint)
|
1883
1924
|
@schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket)
|
1884
1925
|
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
@@ -2028,6 +2069,11 @@ module Google
|
|
2028
2069
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
2029
2070
|
attr_accessor :ssh_client_cert
|
2030
2071
|
|
2072
|
+
# Secret provides a reference to entries in Secret Manager.
|
2073
|
+
# Corresponds to the JSON property `sshClientCertPass`
|
2074
|
+
# @return [Google::Apis::ConnectorsV1::Secret]
|
2075
|
+
attr_accessor :ssh_client_cert_pass
|
2076
|
+
|
2031
2077
|
# The user account used to authenticate.
|
2032
2078
|
# Corresponds to the JSON property `username`
|
2033
2079
|
# @return [String]
|
@@ -2042,6 +2088,7 @@ module Google
|
|
2042
2088
|
@cert_type = args[:cert_type] if args.key?(:cert_type)
|
2043
2089
|
@password = args[:password] if args.key?(:password)
|
2044
2090
|
@ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
|
2091
|
+
@ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass)
|
2045
2092
|
@username = args[:username] if args.key?(:username)
|
2046
2093
|
end
|
2047
2094
|
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.16.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 = "20220718"
|
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
|
@@ -422,6 +438,7 @@ module Google
|
|
422
438
|
property :required, as: 'required'
|
423
439
|
property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
|
424
440
|
|
441
|
+
property :state, as: 'state'
|
425
442
|
property :validation_regex, as: 'validationRegex'
|
426
443
|
property :value_type, as: 'valueType'
|
427
444
|
end
|
@@ -437,7 +454,6 @@ module Google
|
|
437
454
|
property :connector_version, as: 'connectorVersion'
|
438
455
|
property :create_time, as: 'createTime'
|
439
456
|
property :description, as: 'description'
|
440
|
-
collection :egress_backends, as: 'egressBackends'
|
441
457
|
property :envoy_image_location, as: 'envoyImageLocation'
|
442
458
|
property :image_location, as: 'imageLocation'
|
443
459
|
hash :labels, as: 'labels'
|
@@ -809,6 +825,7 @@ module Google
|
|
809
825
|
property :control_plane_subscription, as: 'controlPlaneSubscription'
|
810
826
|
property :control_plane_topic, as: 'controlPlaneTopic'
|
811
827
|
property :location_id, as: 'locationId'
|
828
|
+
property :name, as: 'name'
|
812
829
|
property :runtime_endpoint, as: 'runtimeEndpoint'
|
813
830
|
property :schema_gcs_bucket, as: 'schemaGcsBucket'
|
814
831
|
property :service_directory, as: 'serviceDirectory'
|
@@ -857,6 +874,8 @@ module Google
|
|
857
874
|
|
858
875
|
property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
859
876
|
|
877
|
+
property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
878
|
+
|
860
879
|
property :username, as: 'username'
|
861
880
|
end
|
862
881
|
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.16.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-08-01 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.16.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: []
|