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 @@ -402511,6 +402511,7 @@
"/youtubereporting:v1/GdataBlobstore2Info": gdata_blobstore2_info
"/youtubereporting:v1/GdataBlobstore2Info/blobGeneration": blob_generation
"/youtubereporting:v1/GdataBlobstore2Info/blobId": blob_id
"/youtubereporting:v1/GdataBlobstore2Info/downloadExternalReadToken": download_external_read_token
"/youtubereporting:v1/GdataBlobstore2Info/downloadReadHandle": download_read_handle
"/youtubereporting:v1/GdataBlobstore2Info/readToken": read_token
"/youtubereporting:v1/GdataBlobstore2Info/uploadMetadataContainer": upload_metadata_container
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-youtubereporting_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-youtubereporting_v1

### v0.19.0 (2025-11-30)

* Regenerated from discovery document revision 20251123
* Regenerated using generator version 0.18.0

### v0.18.0 (2025-05-04)

* Regenerated using generator version 0.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ class GdataBlobstore2Info
# @return [String]
attr_accessor :blob_id

# gdata
# Corresponds to the JSON property `downloadExternalReadToken`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String]
attr_accessor :download_external_read_token

# gdata
# Corresponds to the JSON property `downloadReadHandle`
# NOTE: Values are automatically base64 encoded/decoded in the client library.
Expand All @@ -77,6 +83,7 @@ def initialize(**args)
def update!(**args)
@blob_generation = args[:blob_generation] if args.key?(:blob_generation)
@blob_id = args[:blob_id] if args.key?(:blob_id)
@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_metadata_container = args[:upload_metadata_container] if args.key?(:upload_metadata_container)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module YoutubereportingV1
# Version of the google-apis-youtubereporting_v1 gem
GEM_VERSION = "0.18.0"
GEM_VERSION = "0.19.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20230704"
REVISION = "20251123"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ class GdataBlobstore2Info
class Representation < Google::Apis::Core::JsonRepresentation
property :blob_generation, :numeric_string => true, as: 'blobGeneration'
property :blob_id, as: 'blobId'
property :download_external_read_token, :base64 => true, as: 'downloadExternalReadToken'
property :download_read_handle, :base64 => true, as: 'downloadReadHandle'
property :read_token, as: 'readToken'
property :upload_metadata_container, :base64 => true, as: 'uploadMetadataContainer'
Expand Down