diff --git a/api_names_out.yaml b/api_names_out.yaml index 9432dbc325b..7b0027d269f 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -370559,6 +370559,7 @@ "/storagebatchoperations:v1/Counters": counters "/storagebatchoperations:v1/Counters/failedObjectCount": failed_object_count "/storagebatchoperations:v1/Counters/succeededObjectCount": succeeded_object_count +"/storagebatchoperations:v1/Counters/totalBytesFound": total_bytes_found "/storagebatchoperations:v1/Counters/totalObjectCount": total_object_count "/storagebatchoperations:v1/DeleteObject": delete_object "/storagebatchoperations:v1/DeleteObject/permanentObjectDeletionEnabled": permanent_object_deletion_enabled @@ -370579,6 +370580,7 @@ "/storagebatchoperations:v1/Job/createTime": create_time "/storagebatchoperations:v1/Job/deleteObject": delete_object "/storagebatchoperations:v1/Job/description": description +"/storagebatchoperations:v1/Job/dryRun": dry_run "/storagebatchoperations:v1/Job/errorSummaries": error_summaries "/storagebatchoperations:v1/Job/errorSummaries/error_summary": error_summary "/storagebatchoperations:v1/Job/loggingConfig": logging_config diff --git a/generated/google-apis-storagebatchoperations_v1/CHANGELOG.md b/generated/google-apis-storagebatchoperations_v1/CHANGELOG.md index 258be632458..b8d2c2a24e7 100644 --- a/generated/google-apis-storagebatchoperations_v1/CHANGELOG.md +++ b/generated/google-apis-storagebatchoperations_v1/CHANGELOG.md @@ -1,5 +1,9 @@ # Release history for google-apis-storagebatchoperations_v1 +### v0.9.0 (2025-11-09) + +* Regenerated from discovery document revision 20251029 + ### v0.8.0 (2025-11-02) * Regenerated from discovery document revision 20251022 diff --git a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/classes.rb b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/classes.rb index bc9171399f4..9a1b6a61f9a 100644 --- a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/classes.rb +++ b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/classes.rb @@ -137,6 +137,12 @@ class Counters # @return [Fixnum] attr_accessor :succeeded_object_count + # Output only. Number of bytes found from source. This field is only populated + # for jobs with a prefix list object configuration. + # Corresponds to the JSON property `totalBytesFound` + # @return [Fixnum] + attr_accessor :total_bytes_found + # Output only. Number of objects listed. # Corresponds to the JSON property `totalObjectCount` # @return [Fixnum] @@ -150,6 +156,7 @@ def initialize(**args) def update!(**args) @failed_object_count = args[:failed_object_count] if args.key?(:failed_object_count) @succeeded_object_count = args[:succeeded_object_count] if args.key?(:succeeded_object_count) + @total_bytes_found = args[:total_bytes_found] if args.key?(:total_bytes_found) @total_object_count = args[:total_object_count] if args.key?(:total_object_count) end end @@ -290,6 +297,14 @@ class Job # @return [String] attr_accessor :description + # Optional. If true, the job will run in dry run mode, returning the total + # object count and, if the object configuration is a prefix list, the bytes + # found from source. No transformations will be performed. + # Corresponds to the JSON property `dryRun` + # @return [Boolean] + attr_accessor :dry_run + alias_method :dry_run?, :dry_run + # Output only. Summarizes errors encountered with sample error log entries. # Corresponds to the JSON property `errorSummaries` # @return [Array] @@ -345,6 +360,7 @@ def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @delete_object = args[:delete_object] if args.key?(:delete_object) @description = args[:description] if args.key?(:description) + @dry_run = args[:dry_run] if args.key?(:dry_run) @error_summaries = args[:error_summaries] if args.key?(:error_summaries) @logging_config = args[:logging_config] if args.key?(:logging_config) @name = args[:name] if args.key?(:name) diff --git a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/gem_version.rb b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/gem_version.rb index dbe0fc039e1..d6553a82ac0 100644 --- a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/gem_version.rb +++ b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module StoragebatchoperationsV1 # Version of the google-apis-storagebatchoperations_v1 gem - GEM_VERSION = "0.8.0" + GEM_VERSION = "0.9.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 = "20251022" + REVISION = "20251029" end end end diff --git a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/representations.rb b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/representations.rb index aa53c1eedb3..b2d48f5fe4a 100644 --- a/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/representations.rb +++ b/generated/google-apis-storagebatchoperations_v1/lib/google/apis/storagebatchoperations_v1/representations.rb @@ -215,6 +215,7 @@ class Counters class Representation < Google::Apis::Core::JsonRepresentation property :failed_object_count, :numeric_string => true, as: 'failedObjectCount' property :succeeded_object_count, :numeric_string => true, as: 'succeededObjectCount' + property :total_bytes_found, :numeric_string => true, as: 'totalBytesFound' property :total_object_count, :numeric_string => true, as: 'totalObjectCount' end end @@ -262,6 +263,7 @@ class Representation < Google::Apis::Core::JsonRepresentation property :delete_object, as: 'deleteObject', class: Google::Apis::StoragebatchoperationsV1::DeleteObject, decorator: Google::Apis::StoragebatchoperationsV1::DeleteObject::Representation property :description, as: 'description' + property :dry_run, as: 'dryRun' collection :error_summaries, as: 'errorSummaries', class: Google::Apis::StoragebatchoperationsV1::ErrorSummary, decorator: Google::Apis::StoragebatchoperationsV1::ErrorSummary::Representation property :logging_config, as: 'loggingConfig', class: Google::Apis::StoragebatchoperationsV1::LoggingConfig, decorator: Google::Apis::StoragebatchoperationsV1::LoggingConfig::Representation