google-apis-storage_v1 0.39.0 → 0.40.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: cc2817e120ad16d60743c2a442925e8a855dab1ad241d7cb9e44fdf4f71e1582
|
4
|
+
data.tar.gz: 8baf01d69125bf894fb49416a916a62e73a55cfe79ff58fecc32c065756fe8ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44a5a33c4d0d48747f2a68ab884764d5ccf7fe8f64eae86b1c301f4e5d088cc4888a58405e0d922200eb83978f8e39b60e268880401da42b4bac69ee824c212b
|
7
|
+
data.tar.gz: 8dc887aef896142eab243f127b9874e634ecbae9537e359bf2a60e029c510797f29f07f188269b3a4859549ffc150f9e1fe7d39fb7b0fd9c6d15e6a7aaba3243
|
data/CHANGELOG.md
CHANGED
@@ -1673,6 +1673,12 @@ module Google
|
|
1673
1673
|
class GoogleLongrunningListOperationsResponse
|
1674
1674
|
include Google::Apis::Core::Hashable
|
1675
1675
|
|
1676
|
+
# The kind of item this is. For lists of operations, this is always storage#
|
1677
|
+
# operations.
|
1678
|
+
# Corresponds to the JSON property `kind`
|
1679
|
+
# @return [String]
|
1680
|
+
attr_accessor :kind
|
1681
|
+
|
1676
1682
|
# The continuation token, used to page through large result sets. Provide this
|
1677
1683
|
# value in a subsequent request to return the next page of results.
|
1678
1684
|
# Corresponds to the JSON property `nextPageToken`
|
@@ -1690,6 +1696,7 @@ module Google
|
|
1690
1696
|
|
1691
1697
|
# Update properties of this object
|
1692
1698
|
def update!(**args)
|
1699
|
+
@kind = args[:kind] if args.key?(:kind)
|
1693
1700
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1694
1701
|
@operations = args[:operations] if args.key?(:operations)
|
1695
1702
|
end
|
@@ -1717,6 +1724,11 @@ module Google
|
|
1717
1724
|
# @return [Google::Apis::StorageV1::GoogleRpcStatus]
|
1718
1725
|
attr_accessor :error
|
1719
1726
|
|
1727
|
+
# The kind of item this is. For operations, this is always storage#operation.
|
1728
|
+
# Corresponds to the JSON property `kind`
|
1729
|
+
# @return [String]
|
1730
|
+
attr_accessor :kind
|
1731
|
+
|
1720
1732
|
# Service-specific metadata associated with the operation. It typically contains
|
1721
1733
|
# progress information and common metadata such as create time. Some services
|
1722
1734
|
# might not provide such metadata. Any method that returns a long-running
|
@@ -1743,6 +1755,11 @@ module Google
|
|
1743
1755
|
# @return [Hash<String,Object>]
|
1744
1756
|
attr_accessor :response
|
1745
1757
|
|
1758
|
+
# The link to this long running operation.
|
1759
|
+
# Corresponds to the JSON property `selfLink`
|
1760
|
+
# @return [String]
|
1761
|
+
attr_accessor :self_link
|
1762
|
+
|
1746
1763
|
def initialize(**args)
|
1747
1764
|
update!(**args)
|
1748
1765
|
end
|
@@ -1751,9 +1768,11 @@ module Google
|
|
1751
1768
|
def update!(**args)
|
1752
1769
|
@done = args[:done] if args.key?(:done)
|
1753
1770
|
@error = args[:error] if args.key?(:error)
|
1771
|
+
@kind = args[:kind] if args.key?(:kind)
|
1754
1772
|
@metadata = args[:metadata] if args.key?(:metadata)
|
1755
1773
|
@name = args[:name] if args.key?(:name)
|
1756
1774
|
@response = args[:response] if args.key?(:response)
|
1775
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
1757
1776
|
end
|
1758
1777
|
end
|
1759
1778
|
|
@@ -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.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -843,6 +843,7 @@ module Google
|
|
843
843
|
class GoogleLongrunningListOperationsResponse
|
844
844
|
# @private
|
845
845
|
class Representation < Google::Apis::Core::JsonRepresentation
|
846
|
+
property :kind, as: 'kind'
|
846
847
|
property :next_page_token, as: 'nextPageToken'
|
847
848
|
collection :operations, as: 'operations', class: Google::Apis::StorageV1::GoogleLongrunningOperation, decorator: Google::Apis::StorageV1::GoogleLongrunningOperation::Representation
|
848
849
|
|
@@ -855,9 +856,11 @@ module Google
|
|
855
856
|
property :done, as: 'done'
|
856
857
|
property :error, as: 'error', class: Google::Apis::StorageV1::GoogleRpcStatus, decorator: Google::Apis::StorageV1::GoogleRpcStatus::Representation
|
857
858
|
|
859
|
+
property :kind, as: 'kind'
|
858
860
|
hash :metadata, as: 'metadata'
|
859
861
|
property :name, as: 'name'
|
860
862
|
hash :response, as: 'response'
|
863
|
+
property :self_link, as: 'selfLink'
|
861
864
|
end
|
862
865
|
end
|
863
866
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.40.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|