google-apis-firebasehosting_v1beta1 0.8.0 → 0.12.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: fc8c3aaa6fc2c680367f2c35f585c867322b413962ab5844253c349637700de9
4
- data.tar.gz: 7cd0a8524efde578df811862f32e37ae250f3303b9a6d7fe6466b6ab7f254629
3
+ metadata.gz: 86aba686367a9dd14b8ed75fbf0a8e9f17f7809978bf435619a2cc5bb94f0a5d
4
+ data.tar.gz: 3972831ef32fe20b4f898efdf760708aaec00ac4e26ef00fa8d27beb86a55919
5
5
  SHA512:
6
- metadata.gz: 3d590fe8467f494abc7fc5a3b67eefa844acd3a5331b16e9003263b0a2319808718601d0cf33b1dd201a4b2c5bc12477324507e3c4e60a71770d0d802f73955e
7
- data.tar.gz: 27f5ad446259e43ec1b86c753bf6dd38db95d2f47eb8de90fe6a869129ae4a57bfb2d29abbf13c3c9cc0896b8a83df9546a3acaa4e5d3ecf62cda40ac4eb4a56
6
+ metadata.gz: 4aeb273964bc7b0472980689ad223ae877736b209ffe864f2f8fb24c091bb42011105db9e006187116b9e5572bbe691fc0e8a52121704f624bb9a2562e43f74a
7
+ data.tar.gz: ca4149e1cc3874229ad14e2a5dfee7b243f81389a843db93ba02061d1b5756843c506b4af6da89a667e65c000bb78426c36c8d1dc4d8396a1e39930f416e1b7f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-firebasehosting_v1beta1
2
2
 
3
+ ### v0.12.0 (2021-10-20)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.11.0 (2021-09-01)
8
+
9
+ * Regenerated from discovery document revision 20210811
10
+
11
+ ### v0.10.0 (2021-07-13)
12
+
13
+ * Regenerated from discovery document revision 20210628
14
+
15
+ ### v0.9.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.8.0 (2021-06-24)
4
20
 
5
21
  * Regenerated using generator version 0.3.0
data/OVERVIEW.md CHANGED
@@ -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 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.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210415"
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 Platform data
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 Platform services
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.8.0
4
+ version: 0.12.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-06-28 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-firebasehosting_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.8.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebasehosting_v1beta1
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.12.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: