google-apis-firebasestorage_v1beta 0.2.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/lib/google/apis/firebasestorage_v1beta/classes.rb +76 -0
- data/lib/google/apis/firebasestorage_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/firebasestorage_v1beta/representations.rb +32 -0
- data/lib/google/apis/firebasestorage_v1beta/service.rb +3 -6
- metadata +14 -8
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
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-firebasestorage_v1beta
|
2
2
|
|
3
|
+
### v0.6.0 (2021-07-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210709
|
6
|
+
|
7
|
+
### v0.5.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.4.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.3.0
|
14
|
+
|
15
|
+
### v0.3.0 (2021-05-22)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210517
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.2.0 (2021-03-28)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210323
|
@@ -39,18 +39,32 @@ 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]
|
45
50
|
attr_accessor :name
|
46
51
|
|
52
|
+
# Output only. Represents whether a bucket is being moved to a new location, in
|
53
|
+
# which case reconciling is set to true.
|
54
|
+
# Corresponds to the JSON property `reconciling`
|
55
|
+
# @return [Boolean]
|
56
|
+
attr_accessor :reconciling
|
57
|
+
alias_method :reconciling?, :reconciling
|
58
|
+
|
47
59
|
def initialize(**args)
|
48
60
|
update!(**args)
|
49
61
|
end
|
50
62
|
|
51
63
|
# Update properties of this object
|
52
64
|
def update!(**args)
|
65
|
+
@location = args[:location] if args.key?(:location)
|
53
66
|
@name = args[:name] if args.key?(:name)
|
67
|
+
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
54
68
|
end
|
55
69
|
end
|
56
70
|
|
@@ -71,6 +85,68 @@ module Google
|
|
71
85
|
end
|
72
86
|
end
|
73
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
|
+
|
74
150
|
# The response returned by `ListBuckets`.
|
75
151
|
class ListBucketsResponse
|
76
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
|
-
GENERATOR_VERSION = "0.
|
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,7 +73,9 @@ 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'
|
78
|
+
property :reconciling, as: 'reconciling'
|
65
79
|
end
|
66
80
|
end
|
67
81
|
|
@@ -71,6 +85,24 @@ module Google
|
|
71
85
|
end
|
72
86
|
end
|
73
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
|
+
|
74
106
|
class ListBucketsResponse
|
75
107
|
# @private
|
76
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,29 +1,35 @@
|
|
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-
|
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
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Storage for Firebase API V1beta.
|
28
34
|
Simple REST clients are Ruby client libraries that provide access to Google services
|
29
35
|
via their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebasestorage_v1beta/CHANGELOG.md
|
55
|
-
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
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebasestorage_v1beta
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Storage for Firebase API V1beta
|