google-apis-firebasehosting_v1beta1 0.9.0 → 0.13.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 +16 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/firebasehosting_v1beta1/classes.rb +0 -33
- data/lib/google/apis/firebasehosting_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/firebasehosting_v1beta1/representations.rb +0 -16
- data/lib/google/apis/firebasehosting_v1beta1.rb +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b1dd035b30f93929023901094477761761eeddbb18f4c6eec7aa1af7f925e19
|
4
|
+
data.tar.gz: b6047a487a0d646439242e85475811d237007996014e7361821d42c04de2e70d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12d3b805acf26cd1d3a3107ed338593c99ceed18d3f593151eb7688b9d53d42f7f87d5c30b249be46e7889b6eed04624508db2235abd32b396c554693491b872
|
7
|
+
data.tar.gz: 1b18e37ce158986de5b4d7e18ff6b9504ee4e2a951298fb60b2299ad696e25cb77d770efab46e40716ab2cbecc14f9f17eb9386eac40ce796f95dabb8253ea5a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-firebasehosting_v1beta1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-12-14)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.12.0 (2021-10-20)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.11.0 (2021-09-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210811
|
14
|
+
|
15
|
+
### v0.10.0 (2021-07-13)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210628
|
18
|
+
|
3
19
|
### v0.9.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/firebasehosting_v1beta1"
|
|
51
51
|
client = Google::Apis::FirebasehostingV1beta1::FirebaseHostingService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
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/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
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 Firebasehosting service in particular.)
|
67
67
|
|
@@ -758,33 +758,6 @@ module Google
|
|
758
758
|
end
|
759
759
|
end
|
760
760
|
|
761
|
-
# Deprecated in favor of [site channels](sites.channels).
|
762
|
-
class PreviewConfig
|
763
|
-
include Google::Apis::Core::Hashable
|
764
|
-
|
765
|
-
# If true, preview URLs are enabled for this version.
|
766
|
-
# Corresponds to the JSON property `active`
|
767
|
-
# @return [Boolean]
|
768
|
-
attr_accessor :active
|
769
|
-
alias_method :active?, :active
|
770
|
-
|
771
|
-
# Indicates the expiration time for previewing this version; preview URL
|
772
|
-
# requests received after this time will 404.
|
773
|
-
# Corresponds to the JSON property `expireTime`
|
774
|
-
# @return [String]
|
775
|
-
attr_accessor :expire_time
|
776
|
-
|
777
|
-
def initialize(**args)
|
778
|
-
update!(**args)
|
779
|
-
end
|
780
|
-
|
781
|
-
# Update properties of this object
|
782
|
-
def update!(**args)
|
783
|
-
@active = args[:active] if args.key?(:active)
|
784
|
-
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
785
|
-
end
|
786
|
-
end
|
787
|
-
|
788
761
|
# A [`Redirect`](https://firebase.google.com/docs/hosting/full-config#redirects)
|
789
762
|
# specifies a URL pattern that, if matched to the request URL path, triggers
|
790
763
|
# Hosting to respond with a redirect to the specified destination path.
|
@@ -1201,11 +1174,6 @@ module Google
|
|
1201
1174
|
# @return [String]
|
1202
1175
|
attr_accessor :name
|
1203
1176
|
|
1204
|
-
# Deprecated in favor of [site channels](sites.channels).
|
1205
|
-
# Corresponds to the JSON property `preview`
|
1206
|
-
# @return [Google::Apis::FirebasehostingV1beta1::PreviewConfig]
|
1207
|
-
attr_accessor :preview
|
1208
|
-
|
1209
1177
|
# The deploy status of the version. For a successful deploy, call [`
|
1210
1178
|
# CreateVersion`](sites.versions/create) to make a new version (`CREATED` status)
|
1211
1179
|
# , [upload all desired files](sites.versions/populateFiles) to the version,
|
@@ -1240,7 +1208,6 @@ module Google
|
|
1240
1208
|
@finalize_user = args[:finalize_user] if args.key?(:finalize_user)
|
1241
1209
|
@labels = args[:labels] if args.key?(:labels)
|
1242
1210
|
@name = args[:name] if args.key?(:name)
|
1243
|
-
@preview = args[:preview] if args.key?(:preview)
|
1244
1211
|
@status = args[:status] if args.key?(:status)
|
1245
1212
|
@version_bytes = args[:version_bytes] if args.key?(:version_bytes)
|
1246
1213
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebasehostingV1beta1
|
18
18
|
# Version of the google-apis-firebasehosting_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.13.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 = "20210811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -154,12 +154,6 @@ module Google
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
155
155
|
end
|
156
156
|
|
157
|
-
class PreviewConfig
|
158
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
-
|
160
|
-
include Google::Apis::Core::JsonObjectSupport
|
161
|
-
end
|
162
|
-
|
163
157
|
class Redirect
|
164
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
159
|
|
@@ -422,14 +416,6 @@ module Google
|
|
422
416
|
end
|
423
417
|
end
|
424
418
|
|
425
|
-
class PreviewConfig
|
426
|
-
# @private
|
427
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
428
|
-
property :active, as: 'active'
|
429
|
-
property :expire_time, as: 'expireTime'
|
430
|
-
end
|
431
|
-
end
|
432
|
-
|
433
419
|
class Redirect
|
434
420
|
# @private
|
435
421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -529,8 +515,6 @@ module Google
|
|
529
515
|
|
530
516
|
hash :labels, as: 'labels'
|
531
517
|
property :name, as: 'name'
|
532
|
-
property :preview, as: 'preview', class: Google::Apis::FirebasehostingV1beta1::PreviewConfig, decorator: Google::Apis::FirebasehostingV1beta1::PreviewConfig::Representation
|
533
|
-
|
534
518
|
property :status, as: 'status'
|
535
519
|
property :version_bytes, :numeric_string => true, as: 'versionBytes'
|
536
520
|
end
|
@@ -32,10 +32,10 @@ module Google
|
|
32
32
|
# This is NOT the gem version.
|
33
33
|
VERSION = 'V1beta1'
|
34
34
|
|
35
|
-
# See, edit, configure, and delete your Google Cloud
|
35
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
36
36
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
37
37
|
|
38
|
-
# View your data across Google Cloud
|
38
|
+
# View your data across Google Cloud services and see the email address of your Google Account
|
39
39
|
AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
|
40
40
|
|
41
41
|
# 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-firebasehosting_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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:
|
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/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasehosting_v1beta1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.13.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasehosting_v1beta1
|
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.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Firebase Hosting API V1beta1
|