diff --git a/api_names_out.yaml b/api_names_out.yaml index f7022d8b111..246656f9f27 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -109341,6 +109341,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 diff --git a/generated/google-apis-connectors_v1/CHANGELOG.md b/generated/google-apis-connectors_v1/CHANGELOG.md index a5cabb96b51..a431657b9ef 100644 --- a/generated/google-apis-connectors_v1/CHANGELOG.md +++ b/generated/google-apis-connectors_v1/CHANGELOG.md @@ -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 diff --git a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/classes.rb b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/classes.rb index 8ae6d9a247c..fa079955cb2 100644 --- a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/classes.rb +++ b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/classes.rb @@ -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` @@ -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 diff --git a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/gem_version.rb b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/gem_version.rb index 5a4a459dda3..fc99749ea84 100644 --- a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/gem_version.rb +++ b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/gem_version.rb @@ -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 diff --git a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/representations.rb b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/representations.rb index a52938557c7..f101a280d7c 100644 --- a/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/representations.rb +++ b/generated/google-apis-connectors_v1/lib/google/apis/connectors_v1/representations.rb @@ -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