google-apis-firebasestorage_v1beta 0.5.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43da9f2bd61f9e4033e835ccd5cfa99c7345e9eed0074d5c0c047e2c44400f88
4
- data.tar.gz: 062a1b3ef8beddbcbc5fedb361b94deecc5c5b202854e7e91126ab22184bf528
3
+ metadata.gz: 4ef130ccfb333c238deddf87f735bf80028adb6306ddf92c8a18506d95e15eb2
4
+ data.tar.gz: e848f76fa8325a148504d8cac52b33970c0d4e56f68277212e39d0c1835fc0d8
5
5
  SHA512:
6
- metadata.gz: 238ccd76ce4cc974eec7c97553f3925000acbbe384b41bf18ee8df86d8dd8351e6be0be3231682e8d3eb9964b71a2f46f8e572d4de798b12a3b5a32c4bbdc315
7
- data.tar.gz: '08687470c2a8f65be2fc61498d559d19c7f846cc520cef17cf26878cec2e1bd6db23c62a683ec52160302aa992720d1a42a0ea535f623ad7d82d5b9586a1bdc4'
6
+ metadata.gz: abae111ae958ad9c18389e40d4fce65cb529a840a8c218b049505bcf0069c3020dcc1f205390e50ece02176b027d98d1776a6e005392f5afadb55b58089c066d
7
+ data.tar.gz: 96bf643d7cea15cd602a7e719248aa87b204b5e505c09bd7b7f16f68e1e189825ebe830a25ca70067193dcd33499639ccf9e53c2afe17b0525da687bc15b4edc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-firebasestorage_v1beta
2
2
 
3
+ ### v0.9.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.8.0 (2021-10-20)
8
+
9
+ * Regenerated from discovery document revision 20210917
10
+
11
+ ### v0.7.0 (2021-08-31)
12
+
13
+ * Regenerated from discovery document revision 20210823
14
+
15
+ ### v0.6.0 (2021-07-16)
16
+
17
+ * Regenerated from discovery document revision 20210709
18
+
3
19
  ### v0.5.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/firebasestorage_v1beta"
51
51
  client = Google::Apis::FirebasestorageV1beta::FirebasestorageService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Firebasestorage service in particular.)
67
67
 
@@ -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.5.0"
19
+ GEM_VERSION = "0.9.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 = "20210517"
25
+ REVISION = "20210917"
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. Because bucket resource names are unique across projects,
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. Because bucket resource names are unique across projects,
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. Because bucket resource names are unique across projects,
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.
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
 
36
36
  # View and administer all your Firebase data and settings
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.5.0
4
+ version: 0.9.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-05 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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.5.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebasestorage_v1beta
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasestorage_v1beta/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebasestorage_v1beta/v0.9.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasestorage_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Storage for Firebase API V1beta