google-apis-firebase_v1beta1 0.12.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: 3a09ba2f6bf56b06387f556a2c37681d58ceea4404f01b1ce0d87c99cda40f2f
4
- data.tar.gz: e091da134ef3ed789a76027ee3c6c91f6b46b88010fb854467bcd67aa663bb1e
3
+ metadata.gz: e2a3d383c6bbb0d3f31c6fa338b262c7a174884e00d15286e0f719efbf8a4a3a
4
+ data.tar.gz: b20b0e9feadafe22a717ceac5abd9b84147b3c301a6cacd7769d40ffd8d854d1
5
5
  SHA512:
6
- metadata.gz: 499c34ec4800d16c5295751d407a629a5c03dea5f7858faa74c79cbecd250d173028b0bd0893ec214b73333591471246dfab00943aa08c0574b57a7ad6f18c99
7
- data.tar.gz: 3badea4cc18fdd9f6860a3a3c256618b024968f551a28a7554169db13de5896e4e2ec74c5b6a951da67069ce3f4ccbc2aebe09894938e134a643ea957cdc7aad
6
+ metadata.gz: 3f083124508dc9db567bfa5fb9581d421219ec00daf5b0b3c442c46f0905b1b3b591cfffc66c7aff436f7fdbbc0962a32b55af8bdc0c87e27eb82201712a83de
7
+ data.tar.gz: 24dc1681865fd0633686e865de9092800fade468a690c6ad9ff98a55c89065510483f40830cda34ffc703d44dc0d73013eb93de3ba01d907cf7e2ebe60056da9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.12.0 (2021-12-14)
4
9
 
5
10
  * Unspecified changes
@@ -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.12.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.12.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: 2022-01-10 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
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.13.0
62
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: []
@@ -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.3.4
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