Skip to content
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 @@ -87920,6 +87920,7 @@
"/cloudsupport:v2beta/Blobstore2Info/downloadExternalReadToken": download_external_read_token
"/cloudsupport:v2beta/Blobstore2Info/downloadReadHandle": download_read_handle
"/cloudsupport:v2beta/Blobstore2Info/readToken": read_token
"/cloudsupport:v2beta/Blobstore2Info/uploadFragmentListCreationInfo": upload_fragment_list_creation_info
"/cloudsupport:v2beta/Blobstore2Info/uploadMetadataContainer": upload_metadata_container
"/cloudsupport:v2beta/Case": case
"/cloudsupport:v2beta/Case/classification": classification
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-cloudsupport_v2beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-cloudsupport_v2beta

### v0.49.0 (2026-01-18)

* Regenerated from discovery document revision 20260113

### v0.48.0 (2025-12-07)

* Regenerated from discovery document revision 20251203
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,12 @@ class Blobstore2Info
# @return [String]
attr_accessor :read_token

# # gdata.* are outside protos with mising documentation
# Corresponds to the JSON property `uploadFragmentListCreationInfo`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :upload_fragment_list_creation_info

# # gdata.* are outside protos with mising documentation
# Corresponds to the JSON property `uploadMetadataContainer`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
Expand All @@ -174,6 +180,7 @@ def update!(**args)
@download_external_read_token = args[:download_external_read_token] if args.key?(:download_external_read_token)
@download_read_handle = args[:download_read_handle] if args.key?(:download_read_handle)
@read_token = args[:read_token] if args.key?(:read_token)
@upload_fragment_list_creation_info = args[:upload_fragment_list_creation_info] if args.key?(:upload_fragment_list_creation_info)
@upload_metadata_container = args[:upload_metadata_container] if args.key?(:upload_metadata_container)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module CloudsupportV2beta
# Version of the google-apis-cloudsupport_v2beta gem
GEM_VERSION = "0.48.0"
GEM_VERSION = "0.49.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251203"
REVISION = "20260113"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :download_external_read_token, :base64 => true, as: 'downloadExternalReadToken'
property :download_read_handle, :base64 => true, as: 'downloadReadHandle'
property :read_token, as: 'readToken'
property :upload_fragment_list_creation_info, :base64 => true, as: 'uploadFragmentListCreationInfo'
property :upload_metadata_container, :base64 => true, as: 'uploadMetadataContainer'
end
end
Expand Down