google-apis-firebase_v1beta1 0.10.0 → 0.13.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: 05f4b7c59b1325b3e9986570cd0a09e4350fa2bf0b97cd05f6d5ce16e529d704
4
- data.tar.gz: 719971502e51f08b906aaa528798350f052e9d2907fd64790276170232675b66
3
+ metadata.gz: e2a3d383c6bbb0d3f31c6fa338b262c7a174884e00d15286e0f719efbf8a4a3a
4
+ data.tar.gz: b20b0e9feadafe22a717ceac5abd9b84147b3c301a6cacd7769d40ffd8d854d1
5
5
  SHA512:
6
- metadata.gz: 06b5040824002a6ef97ce153194140b5511ca4a48e5083b29a5296a4950bfe5b001e386f75db8d9dd7a2c438d3df0033e08f80ccdfa1c925fa865691596b29f1
7
- data.tar.gz: ceed9f6f74c8d984c0cbb2f059fc395fbef4e489ad78a4d642fc07c4496a4f70ff81597a70b76fca340f3120aacec04ad49c6a624f3b36afa469c6374f44e959
6
+ metadata.gz: 3f083124508dc9db567bfa5fb9581d421219ec00daf5b0b3c442c46f0905b1b3b591cfffc66c7aff436f7fdbbc0962a32b55af8bdc0c87e27eb82201712a83de
7
+ data.tar.gz: 24dc1681865fd0633686e865de9092800fade468a690c6ad9ff98a55c89065510483f40830cda34ffc703d44dc0d73013eb93de3ba01d907cf7e2ebe60056da9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-firebase_v1beta1
2
2
 
3
+ ### v0.13.0 (2022-02-26)
4
+
5
+ * Regenerated from discovery document revision 20220224
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.12.0 (2021-12-14)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.11.0 (2021-10-20)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.10.0 (2021-10-15)
4
17
 
5
18
  * Regenerated from discovery document revision 20211013
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/firebase_v1beta1"
51
51
  client = Google::Apis::FirebaseV1beta1::FirebaseManagementService.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 Firebase service in particular.)
67
67
 
@@ -191,6 +191,15 @@ module Google
191
191
  class AndroidApp
192
192
  include Google::Apis::Core::Hashable
193
193
 
194
+ # The key_id of the GCP ApiKey associated with this App. If set must have no
195
+ # restrictions, or only have restrictions that are valid for the associated
196
+ # Firebase App. Cannot be set in create requests, instead an existing valid API
197
+ # Key will be chosen, or if no valid API Keys exist, one will be provisioned for
198
+ # you. Cannot be set to an empty value in update requests.
199
+ # Corresponds to the JSON property `apiKeyId`
200
+ # @return [String]
201
+ attr_accessor :api_key_id
202
+
194
203
  # Immutable. The globally unique, Firebase-assigned identifier for the `
195
204
  # AndroidApp`. This identifier should be treated as an opaque token, as the data
196
205
  # format is not specified.
@@ -234,6 +243,7 @@ module Google
234
243
 
235
244
  # Update properties of this object
236
245
  def update!(**args)
246
+ @api_key_id = args[:api_key_id] if args.key?(:api_key_id)
237
247
  @app_id = args[:app_id] if args.key?(:app_id)
238
248
  @display_name = args[:display_name] if args.key?(:display_name)
239
249
  @name = args[:name] if args.key?(:name)
@@ -491,6 +501,15 @@ module Google
491
501
  class IosApp
492
502
  include Google::Apis::Core::Hashable
493
503
 
504
+ # The key_id of the GCP ApiKey associated with this App. If set must have no
505
+ # restrictions, or only have restrictions that are valid for the associated
506
+ # Firebase App. Cannot be set in create requests, instead an existing valid API
507
+ # Key will be chosen, or if no valid API Keys exist, one will be provisioned for
508
+ # you. Cannot be set to an empty value in update requests.
509
+ # Corresponds to the JSON property `apiKeyId`
510
+ # @return [String]
511
+ attr_accessor :api_key_id
512
+
494
513
  # Immutable. The globally unique, Firebase-assigned identifier for the `IosApp`.
495
514
  # This identifier should be treated as an opaque token, as the data format is
496
515
  # not specified.
@@ -545,6 +564,7 @@ module Google
545
564
 
546
565
  # Update properties of this object
547
566
  def update!(**args)
567
+ @api_key_id = args[:api_key_id] if args.key?(:api_key_id)
548
568
  @app_id = args[:app_id] if args.key?(:app_id)
549
569
  @app_store_id = args[:app_store_id] if args.key?(:app_store_id)
550
570
  @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
@@ -1148,6 +1168,15 @@ module Google
1148
1168
  class WebApp
1149
1169
  include Google::Apis::Core::Hashable
1150
1170
 
1171
+ # The key_id of the GCP ApiKey associated with this App. If set must have no
1172
+ # restrictions, or only have restrictions that are valid for the associated
1173
+ # Firebase App. Cannot be set in create requests, instead an existing valid API
1174
+ # Key will be chosen, or if no valid API Keys exist, one will be provisioned for
1175
+ # you. Cannot be set to an empty value in update requests.
1176
+ # Corresponds to the JSON property `apiKeyId`
1177
+ # @return [String]
1178
+ attr_accessor :api_key_id
1179
+
1151
1180
  # Immutable. The globally unique, Firebase-assigned identifier for the `WebApp`.
1152
1181
  # This identifier should be treated as an opaque token, as the data format is
1153
1182
  # not specified.
@@ -1199,6 +1228,7 @@ module Google
1199
1228
 
1200
1229
  # Update properties of this object
1201
1230
  def update!(**args)
1231
+ @api_key_id = args[:api_key_id] if args.key?(:api_key_id)
1202
1232
  @app_id = args[:app_id] if args.key?(:app_id)
1203
1233
  @app_urls = args[:app_urls] if args.key?(:app_urls)
1204
1234
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseV1beta1
18
18
  # Version of the google-apis-firebase_v1beta1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211013"
25
+ REVISION = "20220224"
26
26
  end
27
27
  end
28
28
  end
@@ -267,6 +267,7 @@ module Google
267
267
  class AndroidApp
268
268
  # @private
269
269
  class Representation < Google::Apis::Core::JsonRepresentation
270
+ property :api_key_id, as: 'apiKeyId'
270
271
  property :app_id, as: 'appId'
271
272
  property :display_name, as: 'displayName'
272
273
  property :name, as: 'name'
@@ -333,6 +334,7 @@ module Google
333
334
  class IosApp
334
335
  # @private
335
336
  class Representation < Google::Apis::Core::JsonRepresentation
337
+ property :api_key_id, as: 'apiKeyId'
336
338
  property :app_id, as: 'appId'
337
339
  property :app_store_id, as: 'appStoreId'
338
340
  property :bundle_id, as: 'bundleId'
@@ -507,6 +509,7 @@ module Google
507
509
  class WebApp
508
510
  # @private
509
511
  class Representation < Google::Apis::Core::JsonRepresentation
512
+ property :api_key_id, as: 'apiKeyId'
510
513
  property :app_id, as: 'appId'
511
514
  collection :app_urls, as: 'appUrls'
512
515
  property :display_name, as: 'displayName'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebase_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-02-28 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-firebase_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.10.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-firebase_v1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_v1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.13.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_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.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Firebase Management API V1beta1