google-apis-connectors_v1 0.60.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f82fdfaa420435ccbd002aa896d1f469a58a6b916cf6d69027d8219b64aa03e
|
4
|
+
data.tar.gz: 07761731ffc73eea637c8bfa00d6cce006d4eaff0e4cf5edd2e787139fb66294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 063534edaa7c3f96c57341b9fc33ee331eb9fee200c8a413fec43210885193c0afa78cafa791c338c88cf5a69885ca31e8cbe9dc3d6402731074008983bdfc9f
|
7
|
+
data.tar.gz: 1fe775e277953e810ae8b730b3282619ae6f543e5551018ca6f47188a7d266d2d4430908a75138c5dd8f41421436e518f2c16547afdf75c661148dabed90049f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.62.0 (2024-07-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240625
|
6
|
+
|
7
|
+
### v0.61.0 (2024-06-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240612
|
10
|
+
|
3
11
|
### v0.60.0 (2024-06-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240606
|
@@ -218,6 +218,11 @@ module Google
|
|
218
218
|
attr_accessor :enable_pkce
|
219
219
|
alias_method :enable_pkce?, :enable_pkce
|
220
220
|
|
221
|
+
# Optional. Omit query params from the redirect URI.
|
222
|
+
# Corresponds to the JSON property `omitQueryParams`
|
223
|
+
# @return [String]
|
224
|
+
attr_accessor :omit_query_params
|
225
|
+
|
221
226
|
# The scopes for which the user will authorize Google Cloud Connectors on the
|
222
227
|
# connector data source.
|
223
228
|
# Corresponds to the JSON property `scopes`
|
@@ -237,6 +242,7 @@ module Google
|
|
237
242
|
def update!(**args)
|
238
243
|
@client_id = args[:client_id] if args.key?(:client_id)
|
239
244
|
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
|
245
|
+
@omit_query_params = args[:omit_query_params] if args.key?(:omit_query_params)
|
240
246
|
@scopes = args[:scopes] if args.key?(:scopes)
|
241
247
|
@uri = args[:uri] if args.key?(:uri)
|
242
248
|
end
|
@@ -839,6 +845,11 @@ module Google
|
|
839
845
|
# @return [String]
|
840
846
|
attr_accessor :category
|
841
847
|
|
848
|
+
# Output only. The type of the connector.
|
849
|
+
# Corresponds to the JSON property `connectorType`
|
850
|
+
# @return [String]
|
851
|
+
attr_accessor :connector_type
|
852
|
+
|
842
853
|
# Output only. Created time.
|
843
854
|
# Corresponds to the JSON property `createTime`
|
844
855
|
# @return [String]
|
@@ -910,6 +921,7 @@ module Google
|
|
910
921
|
# Update properties of this object
|
911
922
|
def update!(**args)
|
912
923
|
@category = args[:category] if args.key?(:category)
|
924
|
+
@connector_type = args[:connector_type] if args.key?(:connector_type)
|
913
925
|
@create_time = args[:create_time] if args.key?(:create_time)
|
914
926
|
@description = args[:description] if args.key?(:description)
|
915
927
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -874,6 +874,7 @@ module Google
|
|
874
874
|
class Representation < Google::Apis::Core::JsonRepresentation
|
875
875
|
property :client_id, as: 'clientId'
|
876
876
|
property :enable_pkce, as: 'enablePkce'
|
877
|
+
property :omit_query_params, as: 'omitQueryParams'
|
877
878
|
collection :scopes, as: 'scopes'
|
878
879
|
property :uri, as: 'uri'
|
879
880
|
end
|
@@ -1014,6 +1015,7 @@ module Google
|
|
1014
1015
|
# @private
|
1015
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1016
1017
|
property :category, as: 'category'
|
1018
|
+
property :connector_type, as: 'connectorType'
|
1017
1019
|
property :create_time, as: 'createTime'
|
1018
1020
|
property :description, as: 'description'
|
1019
1021
|
property :display_name, as: 'displayName'
|
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.62.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: 2024-
|
11
|
+
date: 2024-07-07 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.62.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: []
|