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 serviceconsumermanagement v1 client #21128

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 @@ -311339,6 +311339,7 @@
"/serviceconsumermanagement:v1/DeleteTenantProjectRequest": delete_tenant_project_request
"/serviceconsumermanagement:v1/DeleteTenantProjectRequest/tag": tag
"/serviceconsumermanagement:v1/Documentation": documentation
"/serviceconsumermanagement:v1/Documentation/additionalIamInfo": additional_iam_info
"/serviceconsumermanagement:v1/Documentation/documentationRootUrl": documentation_root_url
"/serviceconsumermanagement:v1/Documentation/overview": overview
"/serviceconsumermanagement:v1/Documentation/pages": pages
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-serviceconsumermanagement_v1

### v0.55.0 (2024-12-22)

* Regenerated from discovery document revision 20241210

### v0.54.0 (2024-11-24)

* Regenerated from discovery document revision 20241115
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,12 @@ def update!(**args)
class Documentation
include Google::Apis::Core::Hashable

# Optional information about the IAM configuration. This is typically used to
# link to documentation about a product's IAM roles and permissions.
# Corresponds to the JSON property `additionalIamInfo`
# @return [String]
attr_accessor :additional_iam_info

# The URL to the root of documentation.
# Corresponds to the JSON property `documentationRootUrl`
# @return [String]
Expand Down Expand Up @@ -1053,6 +1059,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
@documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
@overview = args[:overview] if args.key?(:overview)
@pages = args[:pages] if args.key?(:pages)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ServiceconsumermanagementV1
# Version of the google-apis-serviceconsumermanagement_v1 gem
GEM_VERSION = "0.54.0"
GEM_VERSION = "0.55.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 = "20241115"
REVISION = "20241210"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class Documentation
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :additional_iam_info, as: 'additionalIamInfo'
property :documentation_root_url, as: 'documentationRootUrl'
property :overview, as: 'overview'
collection :pages, as: 'pages', class: Google::Apis::ServiceconsumermanagementV1::Page, decorator: Google::Apis::ServiceconsumermanagementV1::Page::Representation
Expand Down
Loading