google-apis-connectors_v1 0.14.0 → 0.17.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: ce4d7c9ce0c7fe38192f4cdd7492364a34b432d0da661e4c267e61ee30136b20
|
4
|
+
data.tar.gz: c6e6d7023d8bdf4e73e022f84ddd17b9b20a6fcb507f9f040ce54fd62ca3f130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c921dbf6061731e76e753039d08aa76a256e529df997388c1002022c7b0317150687ed977bcdcfa97bff4cc6c764143f7316491570f9656764b98ef32669217
|
7
|
+
data.tar.gz: cba10965b19bacdcc9f274cf11421bfcf80c8d29d09abc9af513349f5fc8533f5fadad3a40cb4b9167d40866359b6b6c60846c6c59c986366f775a86d230679e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.17.0 (2022-08-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220724
|
6
|
+
|
7
|
+
### v0.16.0 (2022-07-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220718
|
10
|
+
|
11
|
+
### v0.15.0 (2022-07-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220714
|
14
|
+
|
3
15
|
### v0.14.0 (2022-07-13)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220707
|
@@ -175,6 +175,18 @@ module Google
|
|
175
175
|
class AuthorizationCodeLink
|
176
176
|
include Google::Apis::Core::Hashable
|
177
177
|
|
178
|
+
# The client ID assigned to the GCP Connectors OAuth app for the connector data
|
179
|
+
# source.
|
180
|
+
# Corresponds to the JSON property `clientId`
|
181
|
+
# @return [String]
|
182
|
+
attr_accessor :client_id
|
183
|
+
|
184
|
+
# Whether to enable PKCE for the auth code flow.
|
185
|
+
# Corresponds to the JSON property `enablePkce`
|
186
|
+
# @return [Boolean]
|
187
|
+
attr_accessor :enable_pkce
|
188
|
+
alias_method :enable_pkce?, :enable_pkce
|
189
|
+
|
178
190
|
# The scopes for which the user will authorize GCP Connectors on the connector
|
179
191
|
# data source.
|
180
192
|
# Corresponds to the JSON property `scopes`
|
@@ -192,6 +204,8 @@ module Google
|
|
192
204
|
|
193
205
|
# Update properties of this object
|
194
206
|
def update!(**args)
|
207
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
208
|
+
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
|
195
209
|
@scopes = args[:scopes] if args.key?(:scopes)
|
196
210
|
@uri = args[:uri] if args.key?(:uri)
|
197
211
|
end
|
@@ -372,6 +386,11 @@ module Google
|
|
372
386
|
# @return [Google::Apis::ConnectorsV1::RoleGrant]
|
373
387
|
attr_accessor :role_grant
|
374
388
|
|
389
|
+
# State of the config variable.
|
390
|
+
# Corresponds to the JSON property `state`
|
391
|
+
# @return [String]
|
392
|
+
attr_accessor :state
|
393
|
+
|
375
394
|
# Regular expression in RE2 syntax used for validating the `value` of a `
|
376
395
|
# ConfigVariable`.
|
377
396
|
# Corresponds to the JSON property `validationRegex`
|
@@ -397,6 +416,7 @@ module Google
|
|
397
416
|
@key = args[:key] if args.key?(:key)
|
398
417
|
@required = args[:required] if args.key?(:required)
|
399
418
|
@role_grant = args[:role_grant] if args.key?(:role_grant)
|
419
|
+
@state = args[:state] if args.key?(:state)
|
400
420
|
@validation_regex = args[:validation_regex] if args.key?(:validation_regex)
|
401
421
|
@value_type = args[:value_type] if args.key?(:value_type)
|
402
422
|
end
|
@@ -1876,6 +1896,12 @@ module Google
|
|
1876
1896
|
# @return [String]
|
1877
1897
|
attr_accessor :location_id
|
1878
1898
|
|
1899
|
+
# Output only. Name of the runtimeConfig resource. Format: projects/`project`/
|
1900
|
+
# locations/`location`/runtimeConfig
|
1901
|
+
# Corresponds to the JSON property `name`
|
1902
|
+
# @return [String]
|
1903
|
+
attr_accessor :name
|
1904
|
+
|
1879
1905
|
# Output only. The endpoint of the connectors runtime ingress.
|
1880
1906
|
# Corresponds to the JSON property `runtimeEndpoint`
|
1881
1907
|
# @return [String]
|
@@ -1907,6 +1933,7 @@ module Google
|
|
1907
1933
|
@control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription)
|
1908
1934
|
@control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic)
|
1909
1935
|
@location_id = args[:location_id] if args.key?(:location_id)
|
1936
|
+
@name = args[:name] if args.key?(:name)
|
1910
1937
|
@runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint)
|
1911
1938
|
@schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket)
|
1912
1939
|
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
@@ -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.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -392,6 +392,8 @@ module Google
|
|
392
392
|
class AuthorizationCodeLink
|
393
393
|
# @private
|
394
394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
395
|
+
property :client_id, as: 'clientId'
|
396
|
+
property :enable_pkce, as: 'enablePkce'
|
395
397
|
collection :scopes, as: 'scopes'
|
396
398
|
property :uri, as: 'uri'
|
397
399
|
end
|
@@ -438,6 +440,7 @@ module Google
|
|
438
440
|
property :required, as: 'required'
|
439
441
|
property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
|
440
442
|
|
443
|
+
property :state, as: 'state'
|
441
444
|
property :validation_regex, as: 'validationRegex'
|
442
445
|
property :value_type, as: 'valueType'
|
443
446
|
end
|
@@ -824,6 +827,7 @@ module Google
|
|
824
827
|
property :control_plane_subscription, as: 'controlPlaneSubscription'
|
825
828
|
property :control_plane_topic, as: 'controlPlaneTopic'
|
826
829
|
property :location_id, as: 'locationId'
|
830
|
+
property :name, as: 'name'
|
827
831
|
property :runtime_endpoint, as: 'runtimeEndpoint'
|
828
832
|
property :schema_gcs_bucket, as: 'schemaGcsBucket'
|
829
833
|
property :service_directory, as: 'serviceDirectory'
|
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.17.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-08 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.17.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: []
|