Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of apikeys v2 client #20418

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34886,6 +34886,7 @@
"/apikeys:v2/V2Key/keyString": key_string
"/apikeys:v2/V2Key/name": name
"/apikeys:v2/V2Key/restrictions": restrictions
"/apikeys:v2/V2Key/serviceAccountEmail": service_account_email
"/apikeys:v2/V2Key/uid": uid
"/apikeys:v2/V2Key/updateTime": update_time
"/apikeys:v2/V2ListKeysResponse": v2_list_keys_response
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-apikeys_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-apikeys_v2

### v0.24.0 (2024-10-20)

* Regenerated from discovery document revision 20241016

### v0.23.0 (2024-08-18)

* Regenerated from discovery document revision 20240811
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,12 @@ class V2Key
# @return [Google::Apis::ApikeysV2::V2Restrictions]
attr_accessor :restrictions

# Optional. The email address of [the service account](https://cloud.google.com/
# iam/docs/service-accounts) the key is bound to.
# Corresponds to the JSON property `serviceAccountEmail`
# @return [String]
attr_accessor :service_account_email

# Output only. Unique id in UUID4 format.
# Corresponds to the JSON property `uid`
# @return [String]
Expand All @@ -339,6 +345,7 @@ def update!(**args)
@key_string = args[:key_string] if args.key?(:key_string)
@name = args[:name] if args.key?(:name)
@restrictions = args[:restrictions] if args.key?(:restrictions)
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
@uid = args[:uid] if args.key?(:uid)
@update_time = args[:update_time] if args.key?(:update_time)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ApikeysV2
# Version of the google-apis-apikeys_v2 gem
GEM_VERSION = "0.23.0"
GEM_VERSION = "0.24.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20240811"
REVISION = "20241016"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :name, as: 'name'
property :restrictions, as: 'restrictions', class: Google::Apis::ApikeysV2::V2Restrictions, decorator: Google::Apis::ApikeysV2::V2Restrictions::Representation

property :service_account_email, as: 'serviceAccountEmail'
property :uid, as: 'uid'
property :update_time, as: 'updateTime'
end
Expand Down
Loading