google-apis-storagebatchoperations_v1 0.11.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/storagebatchoperations_v1/classes.rb +8 -0
- data/lib/google/apis/storagebatchoperations_v1/gem_version.rb +2 -2
- data/lib/google/apis/storagebatchoperations_v1/representations.rb +1 -0
- data/lib/google/apis/storagebatchoperations_v1/service.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d12abbce5731ce67da59e0ca9875de6d4041465a3b064c2dba978b08fcde831
|
|
4
|
+
data.tar.gz: 823d5e1c1c6d703b9ff2863a6c1de0c7001337411e1d32fb23bfea4395c2f251
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1b61ea40ebbd4dab9349da85d15dc999c99f80451db797f9abec8f5a4c241f8343bbb4cc21ae68dbc794d7aa07ac3bfe4bd92d98f3099577d4649d773c7e887
|
|
7
|
+
data.tar.gz: d05cf53c377e3c6e41cb126d38a7ac06beb9cb9243762c58a4550d162a1f69156b81d80eedfee51c43bb3a5f7d1e8f874a9f39ec2745d5a4cc03ea9e4a1a3b5f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-storagebatchoperations_v1
|
|
2
2
|
|
|
3
|
+
### v0.13.0 (2026-02-15)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260204
|
|
6
|
+
|
|
7
|
+
### v0.12.0 (2026-02-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260128
|
|
10
|
+
|
|
3
11
|
### v0.11.0 (2026-01-25)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260119
|
|
@@ -409,6 +409,13 @@ module Google
|
|
|
409
409
|
# @return [Array<Google::Apis::StoragebatchoperationsV1::ErrorSummary>]
|
|
410
410
|
attr_accessor :error_summaries
|
|
411
411
|
|
|
412
|
+
# Output only. If true, this Job operates on multiple buckets. Multibucket jobs
|
|
413
|
+
# are subject to different quota limits than single-bucket jobs.
|
|
414
|
+
# Corresponds to the JSON property `isMultiBucketJob`
|
|
415
|
+
# @return [Boolean]
|
|
416
|
+
attr_accessor :is_multi_bucket_job
|
|
417
|
+
alias_method :is_multi_bucket_job?, :is_multi_bucket_job
|
|
418
|
+
|
|
412
419
|
# Specifies the Cloud Logging behavior.
|
|
413
420
|
# Corresponds to the JSON property `loggingConfig`
|
|
414
421
|
# @return [Google::Apis::StoragebatchoperationsV1::LoggingConfig]
|
|
@@ -461,6 +468,7 @@ module Google
|
|
|
461
468
|
@description = args[:description] if args.key?(:description)
|
|
462
469
|
@dry_run = args[:dry_run] if args.key?(:dry_run)
|
|
463
470
|
@error_summaries = args[:error_summaries] if args.key?(:error_summaries)
|
|
471
|
+
@is_multi_bucket_job = args[:is_multi_bucket_job] if args.key?(:is_multi_bucket_job)
|
|
464
472
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
|
465
473
|
@name = args[:name] if args.key?(:name)
|
|
466
474
|
@put_metadata = args[:put_metadata] if args.key?(:put_metadata)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module StoragebatchoperationsV1
|
|
18
18
|
# Version of the google-apis-storagebatchoperations_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.13.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -306,6 +306,7 @@ module Google
|
|
|
306
306
|
property :dry_run, as: 'dryRun'
|
|
307
307
|
collection :error_summaries, as: 'errorSummaries', class: Google::Apis::StoragebatchoperationsV1::ErrorSummary, decorator: Google::Apis::StoragebatchoperationsV1::ErrorSummary::Representation
|
|
308
308
|
|
|
309
|
+
property :is_multi_bucket_job, as: 'isMultiBucketJob'
|
|
309
310
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::StoragebatchoperationsV1::LoggingConfig, decorator: Google::Apis::StoragebatchoperationsV1::LoggingConfig::Representation
|
|
310
311
|
|
|
311
312
|
property :name, as: 'name'
|
|
@@ -81,7 +81,11 @@ module Google
|
|
|
81
81
|
execute_or_queue_command(command, &block)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
# Lists information about the supported locations for this service.
|
|
84
|
+
# Lists information about the supported locations for this service. This method
|
|
85
|
+
# can be called in two ways: * **List all public locations:** Use the path `GET /
|
|
86
|
+
# v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
|
|
87
|
+
# projects/`project_id`/locations`. This may include public locations as well as
|
|
88
|
+
# private or other locations specifically visible to the project.
|
|
85
89
|
# @param [String] name
|
|
86
90
|
# The resource that owns the locations collection, if applicable.
|
|
87
91
|
# @param [Array<String>, String] extra_location_types
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-storagebatchoperations_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagebatchoperations_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storagebatchoperations_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storagebatchoperations_v1/v0.13.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagebatchoperations_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|