google-apis-firebase_v1beta1 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46c6f36f3154d34e50e5216f835dd7979616f85a0beffac568dc525ccc2da43f
4
- data.tar.gz: 3dcc4476e067334010ecd74a7711eee855ec1491a83b7e55e2b545d017ff400e
3
+ metadata.gz: 62005f70a8cdb91ecb87222e9d4bca07ad2c262c8a1024caf3f03f7fa4c51d8f
4
+ data.tar.gz: 34ab14058a4e15075f8191617728b4b88bc52c60f0ba1d8a91a44ed696bbe35b
5
5
  SHA512:
6
- metadata.gz: 1281959a2336a157f8dcb18da5652fb5bd3f0967b1db2eb6c55af7138c59419f431d68ead61dc96f1d06bdb0ecdd619e836f511c49005e8e002d2b052a9dd14c
7
- data.tar.gz: 4ddc6c05bff64b04149123fe308f2a9de039c7438a049d82f1677870581dbf5b1b7e7796c207dee9d4eff3db5fd1f6f17f89dd6875e9c29a737c76944359ffe9
6
+ metadata.gz: c7e54f725b4dbb33be1aca7f5e844e7fa3e7d11d0af9de771c3a0faa349492ec8b8c5605c1c8ebf23b9f17cbdf2a51fda3480911a903eac316790f96e6421e78
7
+ data.tar.gz: 05adddd8cc71d4df04f5ddd235d8a2c371226786b077876a59423f3d20c2778582570ad66fcf5e66193009431c66b580fbc542524a612b2cd9e5299f3ba63c84
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firebase_v1beta1
2
2
 
3
+ ### v0.18.0 (2022-06-30)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+ * Regenerated from discovery document revision 20220624
7
+
3
8
  ### v0.17.0 (2022-06-23)
4
9
 
5
10
  * Regenerated from discovery document revision 20220621
@@ -237,6 +237,11 @@ module Google
237
237
  # @return [String]
238
238
  attr_accessor :project_id
239
239
 
240
+ # Output only. The lifecycle state of the App.
241
+ # Corresponds to the JSON property `state`
242
+ # @return [String]
243
+ attr_accessor :state
244
+
240
245
  def initialize(**args)
241
246
  update!(**args)
242
247
  end
@@ -249,6 +254,7 @@ module Google
249
254
  @name = args[:name] if args.key?(:name)
250
255
  @package_name = args[:package_name] if args.key?(:package_name)
251
256
  @project_id = args[:project_id] if args.key?(:project_id)
257
+ @state = args[:state] if args.key?(:state)
252
258
  end
253
259
  end
254
260
 
@@ -411,6 +417,11 @@ module Google
411
417
  # @return [String]
412
418
  attr_accessor :platform
413
419
 
420
+ # Output only. The lifecycle state of the App.
421
+ # Corresponds to the JSON property `state`
422
+ # @return [String]
423
+ attr_accessor :state
424
+
414
425
  def initialize(**args)
415
426
  update!(**args)
416
427
  end
@@ -422,6 +433,7 @@ module Google
422
433
  @name = args[:name] if args.key?(:name)
423
434
  @namespace = args[:namespace] if args.key?(:namespace)
424
435
  @platform = args[:platform] if args.key?(:platform)
436
+ @state = args[:state] if args.key?(:state)
425
437
  end
426
438
  end
427
439
 
@@ -552,6 +564,11 @@ module Google
552
564
  # @return [String]
553
565
  attr_accessor :project_id
554
566
 
567
+ # Output only. The lifecycle state of the App.
568
+ # Corresponds to the JSON property `state`
569
+ # @return [String]
570
+ attr_accessor :state
571
+
555
572
  # The Apple Developer Team ID associated with the App in the App Store.
556
573
  # Corresponds to the JSON property `teamId`
557
574
  # @return [String]
@@ -570,6 +587,7 @@ module Google
570
587
  @display_name = args[:display_name] if args.key?(:display_name)
571
588
  @name = args[:name] if args.key?(:name)
572
589
  @project_id = args[:project_id] if args.key?(:project_id)
590
+ @state = args[:state] if args.key?(:state)
573
591
  @team_id = args[:team_id] if args.key?(:team_id)
574
592
  end
575
593
  end
@@ -1212,6 +1230,11 @@ module Google
1212
1230
  # @return [String]
1213
1231
  attr_accessor :project_id
1214
1232
 
1233
+ # Output only. The lifecycle state of the App.
1234
+ # Corresponds to the JSON property `state`
1235
+ # @return [String]
1236
+ attr_accessor :state
1237
+
1215
1238
  # Output only. Immutable. A unique, Firebase-assigned identifier for the `WebApp`
1216
1239
  # . This identifier is only used to populate the `namespace` value for the `
1217
1240
  # WebApp`. For most use cases, use `appId` to identify or reference the App. The
@@ -1233,6 +1256,7 @@ module Google
1233
1256
  @display_name = args[:display_name] if args.key?(:display_name)
1234
1257
  @name = args[:name] if args.key?(:name)
1235
1258
  @project_id = args[:project_id] if args.key?(:project_id)
1259
+ @state = args[:state] if args.key?(:state)
1236
1260
  @web_id = args[:web_id] if args.key?(:web_id)
1237
1261
  end
1238
1262
  end
@@ -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.17.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220621"
25
+ REVISION = "20220624"
26
26
  end
27
27
  end
28
28
  end
@@ -273,6 +273,7 @@ module Google
273
273
  property :name, as: 'name'
274
274
  property :package_name, as: 'packageName'
275
275
  property :project_id, as: 'projectId'
276
+ property :state, as: 'state'
276
277
  end
277
278
  end
278
279
 
@@ -315,6 +316,7 @@ module Google
315
316
  property :name, as: 'name'
316
317
  property :namespace, as: 'namespace'
317
318
  property :platform, as: 'platform'
319
+ property :state, as: 'state'
318
320
  end
319
321
  end
320
322
 
@@ -341,6 +343,7 @@ module Google
341
343
  property :display_name, as: 'displayName'
342
344
  property :name, as: 'name'
343
345
  property :project_id, as: 'projectId'
346
+ property :state, as: 'state'
344
347
  property :team_id, as: 'teamId'
345
348
  end
346
349
  end
@@ -515,6 +518,7 @@ module Google
515
518
  property :display_name, as: 'displayName'
516
519
  property :name, as: 'name'
517
520
  property :project_id, as: 'projectId'
521
+ property :state, as: 'state'
518
522
  property :web_id, as: 'webId'
519
523
  end
520
524
  end
@@ -522,6 +522,9 @@ module Google
522
522
  # @param [String] page_token
523
523
  # Token returned from a previous call to `SearchFirebaseApps` indicating where
524
524
  # in the set of Apps to resume listing.
525
+ # @param [Boolean] show_deleted
526
+ # Controls whether Apps in the DELETED state should be returned. Defaults to
527
+ # false.
525
528
  # @param [String] fields
526
529
  # Selector specifying which fields to include in a partial response.
527
530
  # @param [String] quota_user
@@ -539,7 +542,7 @@ module Google
539
542
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
540
543
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
541
544
  # @raise [Google::Apis::AuthorizationError] Authorization is required
542
- def search_project_apps(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
545
+ def search_project_apps(parent, filter: nil, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
543
546
  command = make_simple_command(:get, 'v1beta1/{+parent}:searchApps', options)
544
547
  command.response_representation = Google::Apis::FirebaseV1beta1::SearchFirebaseAppsResponse::Representation
545
548
  command.response_class = Google::Apis::FirebaseV1beta1::SearchFirebaseAppsResponse
@@ -547,6 +550,7 @@ module Google
547
550
  command.query['filter'] = filter unless filter.nil?
548
551
  command.query['pageSize'] = page_size unless page_size.nil?
549
552
  command.query['pageToken'] = page_token unless page_token.nil?
553
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
550
554
  command.query['fields'] = fields unless fields.nil?
551
555
  command.query['quotaUser'] = quota_user unless quota_user.nil?
552
556
  execute_or_queue_command(command, &block)
@@ -676,6 +680,9 @@ module Google
676
680
  # @param [String] page_token
677
681
  # Token returned from a previous call to `ListAndroidApps` indicating where in
678
682
  # the set of Apps to resume listing.
683
+ # @param [Boolean] show_deleted
684
+ # Controls whether Apps in the DELETED state should be returned. Defaults to
685
+ # false.
679
686
  # @param [String] fields
680
687
  # Selector specifying which fields to include in a partial response.
681
688
  # @param [String] quota_user
@@ -693,13 +700,14 @@ module Google
693
700
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
694
701
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
695
702
  # @raise [Google::Apis::AuthorizationError] Authorization is required
696
- def list_project_android_apps(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
703
+ def list_project_android_apps(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
697
704
  command = make_simple_command(:get, 'v1beta1/{+parent}/androidApps', options)
698
705
  command.response_representation = Google::Apis::FirebaseV1beta1::ListAndroidAppsResponse::Representation
699
706
  command.response_class = Google::Apis::FirebaseV1beta1::ListAndroidAppsResponse
700
707
  command.params['parent'] = parent unless parent.nil?
701
708
  command.query['pageSize'] = page_size unless page_size.nil?
702
709
  command.query['pageToken'] = page_token unless page_token.nil?
710
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
703
711
  command.query['fields'] = fields unless fields.nil?
704
712
  command.query['quotaUser'] = quota_user unless quota_user.nil?
705
713
  execute_or_queue_command(command, &block)
@@ -719,7 +727,7 @@ module Google
719
727
  # @param [Google::Apis::FirebaseV1beta1::AndroidApp] android_app_object
720
728
  # @param [String] update_mask
721
729
  # Specifies which fields to update. Note that the fields `name`, `app_id`, `
722
- # project_id`, and `package_name` are all immutable.
730
+ # project_id`, `package_name`, and `state` are all immutable.
723
731
  # @param [String] fields
724
732
  # Selector specifying which fields to include in a partial response.
725
733
  # @param [String] quota_user
@@ -1103,6 +1111,9 @@ module Google
1103
1111
  # @param [String] page_token
1104
1112
  # Token returned from a previous call to `ListIosApps` indicating where in the
1105
1113
  # set of Apps to resume listing.
1114
+ # @param [Boolean] show_deleted
1115
+ # Controls whether Apps in the DELETED state should be returned. Defaults to
1116
+ # false.
1106
1117
  # @param [String] fields
1107
1118
  # Selector specifying which fields to include in a partial response.
1108
1119
  # @param [String] quota_user
@@ -1120,13 +1131,14 @@ module Google
1120
1131
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1121
1132
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1122
1133
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1123
- def list_project_ios_apps(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1134
+ def list_project_ios_apps(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
1124
1135
  command = make_simple_command(:get, 'v1beta1/{+parent}/iosApps', options)
1125
1136
  command.response_representation = Google::Apis::FirebaseV1beta1::ListIosAppsResponse::Representation
1126
1137
  command.response_class = Google::Apis::FirebaseV1beta1::ListIosAppsResponse
1127
1138
  command.params['parent'] = parent unless parent.nil?
1128
1139
  command.query['pageSize'] = page_size unless page_size.nil?
1129
1140
  command.query['pageToken'] = page_token unless page_token.nil?
1141
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
1130
1142
  command.query['fields'] = fields unless fields.nil?
1131
1143
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1132
1144
  execute_or_queue_command(command, &block)
@@ -1146,7 +1158,7 @@ module Google
1146
1158
  # @param [Google::Apis::FirebaseV1beta1::IosApp] ios_app_object
1147
1159
  # @param [String] update_mask
1148
1160
  # Specifies which fields to update. Note that the fields `name`, `appId`, `
1149
- # projectId`, and `bundleId` are all immutable.
1161
+ # projectId`, `bundleId`, and `state` are all immutable
1150
1162
  # @param [String] fields
1151
1163
  # Selector specifying which fields to include in a partial response.
1152
1164
  # @param [String] quota_user
@@ -1300,6 +1312,9 @@ module Google
1300
1312
  # @param [String] page_token
1301
1313
  # Token returned from a previous call to `ListWebApps` indicating where in the
1302
1314
  # set of Apps to resume listing.
1315
+ # @param [Boolean] show_deleted
1316
+ # Controls whether Apps in the DELETED state should be returned. Defaults to
1317
+ # false.
1303
1318
  # @param [String] fields
1304
1319
  # Selector specifying which fields to include in a partial response.
1305
1320
  # @param [String] quota_user
@@ -1317,13 +1332,14 @@ module Google
1317
1332
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1318
1333
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1319
1334
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1320
- def list_project_web_apps(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1335
+ def list_project_web_apps(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
1321
1336
  command = make_simple_command(:get, 'v1beta1/{+parent}/webApps', options)
1322
1337
  command.response_representation = Google::Apis::FirebaseV1beta1::ListWebAppsResponse::Representation
1323
1338
  command.response_class = Google::Apis::FirebaseV1beta1::ListWebAppsResponse
1324
1339
  command.params['parent'] = parent unless parent.nil?
1325
1340
  command.query['pageSize'] = page_size unless page_size.nil?
1326
1341
  command.query['pageToken'] = page_token unless page_token.nil?
1342
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
1327
1343
  command.query['fields'] = fields unless fields.nil?
1328
1344
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1329
1345
  execute_or_queue_command(command, &block)
@@ -1342,8 +1358,8 @@ module Google
1342
1358
  # ).
1343
1359
  # @param [Google::Apis::FirebaseV1beta1::WebApp] web_app_object
1344
1360
  # @param [String] update_mask
1345
- # Specifies which fields to update. Note that the fields `name`, `appId`, and `
1346
- # projectId` are all immutable.
1361
+ # Specifies which fields to update. Note that the fields `name`, `appId`, `
1362
+ # projectId` and `state` are all immutable
1347
1363
  # @param [String] fields
1348
1364
  # Selector specifying which fields to include in a partial response.
1349
1365
  # @param [String] quota_user
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.17.0
4
+ version: 0.18.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-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-04 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.6'
19
+ version: '0.7'
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.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.18.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: []