google-apis-storagebatchoperations_v1 0.14.0 → 0.15.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 +4 -0
- data/lib/google/apis/storagebatchoperations_v1/classes.rb +25 -1
- data/lib/google/apis/storagebatchoperations_v1/gem_version.rb +2 -2
- data/lib/google/apis/storagebatchoperations_v1/representations.rb +3 -0
- data/lib/google/apis/storagebatchoperations_v1/service.rb +9 -4
- 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: b34c3da7de82db279f2e76ed96d9a63ab578caf85cb7b87ec37bba6d5c679d8e
|
|
4
|
+
data.tar.gz: 9670f499dff644741b1b0d812fd8317c3a6fc4318a730ae0b01dc827b680c791
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c48316ac797185c7a33bff266a053e425745068b51531d11607552c5a1e3e2244b4e2b284cfd0c72df8e69381cd15a1b712bccf3d86c45024c3ec1fdb9bb41d8
|
|
7
|
+
data.tar.gz: f577b7c8f1bdccdc982de721271ae802183a9520a46dcf077747c1839c95465532e8dede5f94eb9a823a1b6c2a3be4d89051ad8caf7b90a9261a769461a669f1
|
data/CHANGELOG.md
CHANGED
|
@@ -232,11 +232,32 @@ module Google
|
|
|
232
232
|
class Counters
|
|
233
233
|
include Google::Apis::Core::Hashable
|
|
234
234
|
|
|
235
|
-
# Output only.
|
|
235
|
+
# Output only. The number of objects that failed due to user errors or service
|
|
236
|
+
# errors.
|
|
236
237
|
# Corresponds to the JSON property `failedObjectCount`
|
|
237
238
|
# @return [Fixnum]
|
|
238
239
|
attr_accessor :failed_object_count
|
|
239
240
|
|
|
241
|
+
# Output only. Number of object custom contexts created. This field is only
|
|
242
|
+
# populated for jobs with the UpdateObjectCustomContext transformation.
|
|
243
|
+
# Corresponds to the JSON property `objectCustomContextsCreated`
|
|
244
|
+
# @return [Fixnum]
|
|
245
|
+
attr_accessor :object_custom_contexts_created
|
|
246
|
+
|
|
247
|
+
# Output only. Number of object custom contexts deleted. This field is only
|
|
248
|
+
# populated for jobs with the UpdateObjectCustomContext transformation.
|
|
249
|
+
# Corresponds to the JSON property `objectCustomContextsDeleted`
|
|
250
|
+
# @return [Fixnum]
|
|
251
|
+
attr_accessor :object_custom_contexts_deleted
|
|
252
|
+
|
|
253
|
+
# Output only. Number of object custom contexts updated. This counter tracks
|
|
254
|
+
# custom contexts where the key already existed, but the payload was modified.
|
|
255
|
+
# This field is only populated for jobs with the UpdateObjectCustomContext
|
|
256
|
+
# transformation.
|
|
257
|
+
# Corresponds to the JSON property `objectCustomContextsUpdated`
|
|
258
|
+
# @return [Fixnum]
|
|
259
|
+
attr_accessor :object_custom_contexts_updated
|
|
260
|
+
|
|
240
261
|
# Output only. Number of objects completed.
|
|
241
262
|
# Corresponds to the JSON property `succeededObjectCount`
|
|
242
263
|
# @return [Fixnum]
|
|
@@ -260,6 +281,9 @@ module Google
|
|
|
260
281
|
# Update properties of this object
|
|
261
282
|
def update!(**args)
|
|
262
283
|
@failed_object_count = args[:failed_object_count] if args.key?(:failed_object_count)
|
|
284
|
+
@object_custom_contexts_created = args[:object_custom_contexts_created] if args.key?(:object_custom_contexts_created)
|
|
285
|
+
@object_custom_contexts_deleted = args[:object_custom_contexts_deleted] if args.key?(:object_custom_contexts_deleted)
|
|
286
|
+
@object_custom_contexts_updated = args[:object_custom_contexts_updated] if args.key?(:object_custom_contexts_updated)
|
|
263
287
|
@succeeded_object_count = args[:succeeded_object_count] if args.key?(:succeeded_object_count)
|
|
264
288
|
@total_bytes_found = args[:total_bytes_found] if args.key?(:total_bytes_found)
|
|
265
289
|
@total_object_count = args[:total_object_count] if args.key?(:total_object_count)
|
|
@@ -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.15.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 = "20260325"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -274,6 +274,9 @@ module Google
|
|
|
274
274
|
# @private
|
|
275
275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
276
276
|
property :failed_object_count, :numeric_string => true, as: 'failedObjectCount'
|
|
277
|
+
property :object_custom_contexts_created, :numeric_string => true, as: 'objectCustomContextsCreated'
|
|
278
|
+
property :object_custom_contexts_deleted, :numeric_string => true, as: 'objectCustomContextsDeleted'
|
|
279
|
+
property :object_custom_contexts_updated, :numeric_string => true, as: 'objectCustomContextsUpdated'
|
|
277
280
|
property :succeeded_object_count, :numeric_string => true, as: 'succeededObjectCount'
|
|
278
281
|
property :total_bytes_found, :numeric_string => true, as: 'totalBytesFound'
|
|
279
282
|
property :total_object_count, :numeric_string => true, as: 'totalObjectCount'
|
|
@@ -82,10 +82,15 @@ module Google
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# Lists information about the supported locations for this service. This method
|
|
85
|
-
#
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
85
|
+
# lists locations based on the resource scope provided in the [
|
|
86
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
87
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
88
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
89
|
+
# method lists locations visible to that specific project. This includes public,
|
|
90
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
91
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
92
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
93
|
+
# request path based on the specific service implementation and version.
|
|
89
94
|
# @param [String] name
|
|
90
95
|
# The resource that owns the locations collection, if applicable.
|
|
91
96
|
# @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.15.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.15.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:
|