google-apis-storage_v1 0.55.0 → 0.57.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 479b6913ba37888c18755e9af57b39898c1b6fb4eef2751344d83cabca64c394
|
4
|
+
data.tar.gz: 10488848814ec6bad2825d12febc63e491a9f66185a77fd9c87d31d7a4f3126d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38dc19e326cfc20a5823e126497eeab70a67a1a92460e3a8986b0bf0c90d9a8da3eaf7c824a15a63760e77de1bd97e7eaff4ff073d01393093418d297e16f182
|
7
|
+
data.tar.gz: 6b41b62735c0d4ccf3734e76dbb95336b725924bd54ddaecadfb67d825d65f29616af288feba977aeb97cc213a4d540ad6b6d1175b3cc05d42a824679354dc38
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-storage_v1
|
2
2
|
|
3
|
+
### v0.57.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250925
|
6
|
+
|
7
|
+
### v0.56.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250814
|
10
|
+
|
3
11
|
### v0.55.0 (2025-07-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250718
|
@@ -1552,6 +1552,12 @@ module Google
|
|
1552
1552
|
# @return [String]
|
1553
1553
|
attr_accessor :next_page_token
|
1554
1554
|
|
1555
|
+
# The list of bucket resource names that could not be reached during the listing
|
1556
|
+
# operation.
|
1557
|
+
# Corresponds to the JSON property `unreachable`
|
1558
|
+
# @return [Array<String>]
|
1559
|
+
attr_accessor :unreachable
|
1560
|
+
|
1555
1561
|
def initialize(**args)
|
1556
1562
|
update!(**args)
|
1557
1563
|
end
|
@@ -1561,6 +1567,7 @@ module Google
|
|
1561
1567
|
@items = args[:items] if args.key?(:items)
|
1562
1568
|
@kind = args[:kind] if args.key?(:kind)
|
1563
1569
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1570
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1564
1571
|
end
|
1565
1572
|
end
|
1566
1573
|
|
@@ -1586,6 +1593,16 @@ module Google
|
|
1586
1593
|
attr_accessor :copy_source_acl
|
1587
1594
|
alias_method :copy_source_acl?, :copy_source_acl
|
1588
1595
|
|
1596
|
+
# Restores only the objects that were created after this time.
|
1597
|
+
# Corresponds to the JSON property `createdAfterTime`
|
1598
|
+
# @return [DateTime]
|
1599
|
+
attr_accessor :created_after_time
|
1600
|
+
|
1601
|
+
# Restores only the objects that were created before this time.
|
1602
|
+
# Corresponds to the JSON property `createdBeforeTime`
|
1603
|
+
# @return [DateTime]
|
1604
|
+
attr_accessor :created_before_time
|
1605
|
+
|
1589
1606
|
# Restores only the objects matching any of the specified glob(s). If this
|
1590
1607
|
# parameter is not specified, all objects will be restored within the specified
|
1591
1608
|
# time range.
|
@@ -1611,6 +1628,8 @@ module Google
|
|
1611
1628
|
def update!(**args)
|
1612
1629
|
@allow_overwrite = args[:allow_overwrite] if args.key?(:allow_overwrite)
|
1613
1630
|
@copy_source_acl = args[:copy_source_acl] if args.key?(:copy_source_acl)
|
1631
|
+
@created_after_time = args[:created_after_time] if args.key?(:created_after_time)
|
1632
|
+
@created_before_time = args[:created_before_time] if args.key?(:created_before_time)
|
1614
1633
|
@match_globs = args[:match_globs] if args.key?(:match_globs)
|
1615
1634
|
@soft_deleted_after_time = args[:soft_deleted_after_time] if args.key?(:soft_deleted_after_time)
|
1616
1635
|
@soft_deleted_before_time = args[:soft_deleted_before_time] if args.key?(:soft_deleted_before_time)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StorageV1
|
18
18
|
# Version of the google-apis-storage_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.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 = "20250925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -879,6 +879,7 @@ module Google
|
|
879
879
|
|
880
880
|
property :kind, as: 'kind'
|
881
881
|
property :next_page_token, as: 'nextPageToken'
|
882
|
+
collection :unreachable, as: 'unreachable'
|
882
883
|
end
|
883
884
|
end
|
884
885
|
|
@@ -887,6 +888,10 @@ module Google
|
|
887
888
|
class Representation < Google::Apis::Core::JsonRepresentation
|
888
889
|
property :allow_overwrite, as: 'allowOverwrite'
|
889
890
|
property :copy_source_acl, as: 'copySourceAcl'
|
891
|
+
property :created_after_time, as: 'createdAfterTime', type: DateTime
|
892
|
+
|
893
|
+
property :created_before_time, as: 'createdBeforeTime', type: DateTime
|
894
|
+
|
890
895
|
collection :match_globs, as: 'matchGlobs'
|
891
896
|
property :soft_deleted_after_time, as: 'softDeletedAfterTime', type: DateTime
|
892
897
|
|
@@ -796,6 +796,9 @@ module Google
|
|
796
796
|
# Filter results to buckets whose names begin with this prefix.
|
797
797
|
# @param [String] projection
|
798
798
|
# Set of properties to return. Defaults to noAcl.
|
799
|
+
# @param [Boolean] return_partial_success
|
800
|
+
# If true, return a list of bucket resource names for buckets that are in
|
801
|
+
# unreachable locations.
|
799
802
|
# @param [Boolean] soft_deleted
|
800
803
|
# If true, only soft-deleted bucket versions will be returned. The default is
|
801
804
|
# false. For more information, see [Soft Delete](https://cloud.google.com/
|
@@ -821,7 +824,7 @@ module Google
|
|
821
824
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
822
825
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
823
826
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
824
|
-
def list_buckets(project, max_results: nil, page_token: nil, prefix: nil, projection: nil, soft_deleted: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
827
|
+
def list_buckets(project, max_results: nil, page_token: nil, prefix: nil, projection: nil, return_partial_success: nil, soft_deleted: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
825
828
|
command = make_simple_command(:get, 'b', options)
|
826
829
|
command.response_representation = Google::Apis::StorageV1::Buckets::Representation
|
827
830
|
command.response_class = Google::Apis::StorageV1::Buckets
|
@@ -830,6 +833,7 @@ module Google
|
|
830
833
|
command.query['prefix'] = prefix unless prefix.nil?
|
831
834
|
command.query['project'] = project unless project.nil?
|
832
835
|
command.query['projection'] = projection unless projection.nil?
|
836
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
833
837
|
command.query['softDeleted'] = soft_deleted unless soft_deleted.nil?
|
834
838
|
command.query['userProject'] = user_project unless user_project.nil?
|
835
839
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-storage_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.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-storage_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.57.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|