google-apis-firebase_v1beta1 0.11.0 → 0.14.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: 463ce47bb291a17254f89010d2dae77655f0535d60f24a9e0db894976a71e904
4
- data.tar.gz: fae36eae0daa75fdddf9487b66d07f2fc26502083ef7a461aed9f8f45ffab2fc
3
+ metadata.gz: 38a6c6e4f1bd67ec459c69c7d78d8f957b4067ffc27975e478d978e191390e64
4
+ data.tar.gz: 41fe9da596936b66952c29358d3f81a84043d24c42f84c4632cd5ba6027a2545
5
5
  SHA512:
6
- metadata.gz: db2ad1466c1c0974dc3e2f0911fcb070acf32b9d49a9c2d4755ade6bd001c3de3bd98bdd7d841813f578d683dc27eff08922552717a032b29f4945b649e58eb7
7
- data.tar.gz: f3d1f2d39a633f2abb1f800813c288e7d96f3a1243fc6567a707041073e39520e899277f881e0b39ebecf2d7dc13b44f3aaaca1855bca52ae71546350b25bee3
6
+ metadata.gz: b41ef48048bc31740176d53ad37b6e77f8245075b8736d53e8b210d16bb5ae003bbc66f451694c01c0f4e66a6ea251fcd183d4f2f0645351df912627f4bdf32f
7
+ data.tar.gz: 05a58985253a265331937054f05a9797c9b4a7b684261195ee2c0a902f0057c8e67fad3184857d0ef7e0afb7e17525e88a5ab637660fc37f7a8b820811cf6753
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-firebase_v1beta1
2
2
 
3
+ ### v0.14.0 (2022-03-23)
4
+
5
+ * Regenerated from discovery document revision 20220319
6
+
7
+ ### v0.13.0 (2022-02-26)
8
+
9
+ * Regenerated from discovery document revision 20220224
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.12.0 (2021-12-14)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.11.0 (2021-10-20)
4
17
 
5
18
  * Unspecified changes
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.
@@ -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)
@@ -328,8 +338,7 @@ module Google
328
338
  # A generic empty message that you can re-use to avoid defining duplicated empty
329
339
  # messages in your APIs. A typical example is to use it as the request or the
330
340
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
331
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
332
- # `Empty` is empty JSON object ````.
341
+ # protobuf.Empty) returns (google.protobuf.Empty); `
333
342
  class Empty
334
343
  include Google::Apis::Core::Hashable
335
344
 
@@ -491,6 +500,15 @@ module Google
491
500
  class IosApp
492
501
  include Google::Apis::Core::Hashable
493
502
 
503
+ # The key_id of the GCP ApiKey associated with this App. If set must have no
504
+ # restrictions, or only have restrictions that are valid for the associated
505
+ # Firebase App. Cannot be set in create requests, instead an existing valid API
506
+ # Key will be chosen, or if no valid API Keys exist, one will be provisioned for
507
+ # you. Cannot be set to an empty value in update requests.
508
+ # Corresponds to the JSON property `apiKeyId`
509
+ # @return [String]
510
+ attr_accessor :api_key_id
511
+
494
512
  # Immutable. The globally unique, Firebase-assigned identifier for the `IosApp`.
495
513
  # This identifier should be treated as an opaque token, as the data format is
496
514
  # not specified.
@@ -545,6 +563,7 @@ module Google
545
563
 
546
564
  # Update properties of this object
547
565
  def update!(**args)
566
+ @api_key_id = args[:api_key_id] if args.key?(:api_key_id)
548
567
  @app_id = args[:app_id] if args.key?(:app_id)
549
568
  @app_store_id = args[:app_store_id] if args.key?(:app_store_id)
550
569
  @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
@@ -1148,6 +1167,15 @@ module Google
1148
1167
  class WebApp
1149
1168
  include Google::Apis::Core::Hashable
1150
1169
 
1170
+ # The key_id of the GCP ApiKey associated with this App. If set must have no
1171
+ # restrictions, or only have restrictions that are valid for the associated
1172
+ # Firebase App. Cannot be set in create requests, instead an existing valid API
1173
+ # Key will be chosen, or if no valid API Keys exist, one will be provisioned for
1174
+ # you. Cannot be set to an empty value in update requests.
1175
+ # Corresponds to the JSON property `apiKeyId`
1176
+ # @return [String]
1177
+ attr_accessor :api_key_id
1178
+
1151
1179
  # Immutable. The globally unique, Firebase-assigned identifier for the `WebApp`.
1152
1180
  # This identifier should be treated as an opaque token, as the data format is
1153
1181
  # not specified.
@@ -1199,6 +1227,7 @@ module Google
1199
1227
 
1200
1228
  # Update properties of this object
1201
1229
  def update!(**args)
1230
+ @api_key_id = args[:api_key_id] if args.key?(:api_key_id)
1202
1231
  @app_id = args[:app_id] if args.key?(:app_id)
1203
1232
  @app_urls = args[:app_urls] if args.key?(:app_urls)
1204
1233
  @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.11.0"
19
+ GEM_VERSION = "0.14.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 = "20220319"
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.11.0
4
+ version: 0.14.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-27 00:00:00.000000000 Z
11
+ date: 2022-03-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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.14.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.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