google-apis-firebasestorage_v1beta 0.5.0 → 0.6.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/firebasestorage_v1beta/classes.rb +68 -0
- data/lib/google/apis/firebasestorage_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/firebasestorage_v1beta/representations.rb +31 -0
- data/lib/google/apis/firebasestorage_v1beta/service.rb +3 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae09eabc05875977c78d987103b7dfd789f73604b03ad58850335e18f80b4ffd
|
4
|
+
data.tar.gz: 0b74609e9ceb8b959075e4b8e2e4c1997883e5f8d19ca54b1c6e36567d9a7dcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96128d2ab5d8f921bb98b79e1d1f0498f1944c4cd5a087af0e581aea49d58e3a40b5f605e9432688dee4046f12649ee9a3cda3fd3d2f1ce1046b2fdbde2246cf
|
7
|
+
data.tar.gz: ba4608d5b9bad0595ff78367ab18585e8be8ece25da13a270718fb258e936ffb405102fef01e96434a2442291335e0db1a7b0a866e5bffb20e051c0f50096ce3
|
data/CHANGELOG.md
CHANGED
@@ -39,6 +39,11 @@ module Google
|
|
39
39
|
class Bucket
|
40
40
|
include Google::Apis::Core::Hashable
|
41
41
|
|
42
|
+
# Output only. Location of the storage bucket.
|
43
|
+
# Corresponds to the JSON property `location`
|
44
|
+
# @return [String]
|
45
|
+
attr_accessor :location
|
46
|
+
|
42
47
|
# Resource name of the bucket.
|
43
48
|
# Corresponds to the JSON property `name`
|
44
49
|
# @return [String]
|
@@ -57,6 +62,7 @@ module Google
|
|
57
62
|
|
58
63
|
# Update properties of this object
|
59
64
|
def update!(**args)
|
65
|
+
@location = args[:location] if args.key?(:location)
|
60
66
|
@name = args[:name] if args.key?(:name)
|
61
67
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
62
68
|
end
|
@@ -79,6 +85,68 @@ module Google
|
|
79
85
|
end
|
80
86
|
end
|
81
87
|
|
88
|
+
# Metadata for MigrateLocationDestructively LRO.
|
89
|
+
class GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
|
90
|
+
include Google::Apis::Core::Hashable
|
91
|
+
|
92
|
+
# The time the LRO was created.
|
93
|
+
# Corresponds to the JSON property `createTime`
|
94
|
+
# @return [String]
|
95
|
+
attr_accessor :create_time
|
96
|
+
|
97
|
+
# The time the LRO was last updated.
|
98
|
+
# Corresponds to the JSON property `lastUpdateTime`
|
99
|
+
# @return [String]
|
100
|
+
attr_accessor :last_update_time
|
101
|
+
|
102
|
+
# The current state of the migration.
|
103
|
+
# Corresponds to the JSON property `state`
|
104
|
+
# @return [String]
|
105
|
+
attr_accessor :state
|
106
|
+
|
107
|
+
def initialize(**args)
|
108
|
+
update!(**args)
|
109
|
+
end
|
110
|
+
|
111
|
+
# Update properties of this object
|
112
|
+
def update!(**args)
|
113
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
114
|
+
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
115
|
+
@state = args[:state] if args.key?(:state)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
# Metadata for MigrateLocationDestructively LRO.
|
120
|
+
class GoogleFirebaseStorageControlplaneV1betaMigrateLocationDestructivelyMetadata
|
121
|
+
include Google::Apis::Core::Hashable
|
122
|
+
|
123
|
+
# The time the LRO was created.
|
124
|
+
# Corresponds to the JSON property `createTime`
|
125
|
+
# @return [String]
|
126
|
+
attr_accessor :create_time
|
127
|
+
|
128
|
+
# The time the LRO was last updated.
|
129
|
+
# Corresponds to the JSON property `lastUpdateTime`
|
130
|
+
# @return [String]
|
131
|
+
attr_accessor :last_update_time
|
132
|
+
|
133
|
+
# The current state of the migration.
|
134
|
+
# Corresponds to the JSON property `state`
|
135
|
+
# @return [String]
|
136
|
+
attr_accessor :state
|
137
|
+
|
138
|
+
def initialize(**args)
|
139
|
+
update!(**args)
|
140
|
+
end
|
141
|
+
|
142
|
+
# Update properties of this object
|
143
|
+
def update!(**args)
|
144
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
145
|
+
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
146
|
+
@state = args[:state] if args.key?(:state)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
82
150
|
# The response returned by `ListBuckets`.
|
83
151
|
class ListBucketsResponse
|
84
152
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebasestorageV1beta
|
18
18
|
# Version of the google-apis-firebasestorage_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210709"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,18 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class GoogleFirebaseStorageControlplaneV1betaMigrateLocationDestructivelyMetadata
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
43
55
|
class ListBucketsResponse
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
57
|
|
@@ -61,6 +73,7 @@ module Google
|
|
61
73
|
class Bucket
|
62
74
|
# @private
|
63
75
|
class Representation < Google::Apis::Core::JsonRepresentation
|
76
|
+
property :location, as: 'location'
|
64
77
|
property :name, as: 'name'
|
65
78
|
property :reconciling, as: 'reconciling'
|
66
79
|
end
|
@@ -72,6 +85,24 @@ module Google
|
|
72
85
|
end
|
73
86
|
end
|
74
87
|
|
88
|
+
class GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
|
89
|
+
# @private
|
90
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
91
|
+
property :create_time, as: 'createTime'
|
92
|
+
property :last_update_time, as: 'lastUpdateTime'
|
93
|
+
property :state, as: 'state'
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
class GoogleFirebaseStorageControlplaneV1betaMigrateLocationDestructivelyMetadata
|
98
|
+
# @private
|
99
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
100
|
+
property :create_time, as: 'createTime'
|
101
|
+
property :last_update_time, as: 'lastUpdateTime'
|
102
|
+
property :state, as: 'state'
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
75
106
|
class ListBucketsResponse
|
76
107
|
# @private
|
77
108
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -53,8 +53,7 @@ module Google
|
|
53
53
|
# Links a Google Cloud Storage bucket to a Firebase project.
|
54
54
|
# @param [String] bucket
|
55
55
|
# Required. Resource name of the bucket, mirrors the ID of the underlying Google
|
56
|
-
# Cloud Storage bucket
|
57
|
-
# you may omit the project number, `projects/-/buckets/`bucket_id``.
|
56
|
+
# Cloud Storage bucket, `projects/`project_number`/buckets/`bucket_id``.
|
58
57
|
# @param [Google::Apis::FirebasestorageV1beta::AddFirebaseRequest] add_firebase_request_object
|
59
58
|
# @param [String] fields
|
60
59
|
# Selector specifying which fields to include in a partial response.
|
@@ -88,8 +87,7 @@ module Google
|
|
88
87
|
# Gets a single linked storage bucket.
|
89
88
|
# @param [String] name
|
90
89
|
# Required. Resource name of the bucket, mirrors the ID of the underlying Google
|
91
|
-
# Cloud Storage bucket
|
92
|
-
# you may omit the project number, `projects/-/buckets/`bucket_id``.
|
90
|
+
# Cloud Storage bucket, `projects/`project_number`/buckets/`bucket_id``.
|
93
91
|
# @param [String] fields
|
94
92
|
# Selector specifying which fields to include in a partial response.
|
95
93
|
# @param [String] quota_user
|
@@ -160,8 +158,7 @@ module Google
|
|
160
158
|
# Unlinks a linked Google Cloud Storage bucket from a Firebase project.
|
161
159
|
# @param [String] bucket
|
162
160
|
# Required. Resource name of the bucket, mirrors the ID of the underlying Google
|
163
|
-
# Cloud Storage bucket
|
164
|
-
# you may omit the project number, `projects/-/buckets/`bucket_id``.
|
161
|
+
# Cloud Storage bucket, `projects/`project_number`/buckets/`bucket_id``.
|
165
162
|
# @param [Google::Apis::FirebasestorageV1beta::RemoveFirebaseRequest] remove_firebase_request_object
|
166
163
|
# @param [String] fields
|
167
164
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebasestorage_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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: 2021-07-
|
11
|
+
date: 2021-07-19 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/master/generated/google-apis-firebasestorage_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasestorage_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasestorage_v1beta/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebasestorage_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|