Skip to content

Commit

Permalink
feat: Automated regeneration of connectors v1 client (#19814)
Browse files Browse the repository at this point in the history
Auto-created at 2024-07-07 09:36:50 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jul 7, 2024
1 parent 5e1b5b0 commit 31e8e4c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109346,6 +109346,7 @@
"/connectors:v1/AuthorizationCodeLink": authorization_code_link
"/connectors:v1/AuthorizationCodeLink/clientId": client_id
"/connectors:v1/AuthorizationCodeLink/enablePkce": enable_pkce
"/connectors:v1/AuthorizationCodeLink/omitQueryParams": omit_query_params
"/connectors:v1/AuthorizationCodeLink/scopes": scopes
"/connectors:v1/AuthorizationCodeLink/scopes/scope": scope
"/connectors:v1/AuthorizationCodeLink/uri": uri
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-connectors_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-connectors_v1

### v0.62.0 (2024-07-07)

* Regenerated from discovery document revision 20240625

### v0.61.0 (2024-06-16)

* Regenerated from discovery document revision 20240612
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ class AuthorizationCodeLink
attr_accessor :enable_pkce
alias_method :enable_pkce?, :enable_pkce

# Optional. Omit query params from the redirect URI.
# Corresponds to the JSON property `omitQueryParams`
# @return [String]
attr_accessor :omit_query_params

# The scopes for which the user will authorize Google Cloud Connectors on the
# connector data source.
# Corresponds to the JSON property `scopes`
Expand All @@ -237,6 +242,7 @@ def initialize(**args)
def update!(**args)
@client_id = args[:client_id] if args.key?(:client_id)
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
@omit_query_params = args[:omit_query_params] if args.key?(:omit_query_params)
@scopes = args[:scopes] if args.key?(:scopes)
@uri = args[:uri] if args.key?(:uri)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ConnectorsV1
# Version of the google-apis-connectors_v1 gem
GEM_VERSION = "0.61.0"
GEM_VERSION = "0.62.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.0"

# Revision of the discovery document this client was generated from
REVISION = "20240612"
REVISION = "20240625"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,7 @@ class AuthorizationCodeLink
class Representation < Google::Apis::Core::JsonRepresentation
property :client_id, as: 'clientId'
property :enable_pkce, as: 'enablePkce'
property :omit_query_params, as: 'omitQueryParams'
collection :scopes, as: 'scopes'
property :uri, as: 'uri'
end
Expand Down

0 comments on commit 31e8e4c

Please sign in to comment.