google-apis-firebaseappcheck_v1 0.8.0 → 0.10.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59e668e103acc01b547794da16fdd0f53fd02fd5f661bf3eeacdc48c035eff4d
|
4
|
+
data.tar.gz: 7f3fe1de45859cb2192321272b88733520a32eca9ec4cdb0744a57c9b5806375
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6126fb7fbbecfc8a37422d139c84bb3c3549c071644c16a47bf12d911600da3aa7b9975591e51e01ee1a4856fa95a1671f64a322f61eb7c37d79ff45a5341dc7
|
7
|
+
data.tar.gz: '0827e5652cac493d3f27990125275ecdd2d8b64214154d3c2a995923e3e591adea83808ce306f965b266bae04fbd66b6f605b823b7b6adecd35fabac3ece80bc'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseappcheck_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2023-10-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231009
|
6
|
+
|
7
|
+
### v0.9.0 (2023-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230612
|
10
|
+
|
3
11
|
### v0.8.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -375,6 +375,15 @@ module Google
|
|
375
375
|
# @return [String]
|
376
376
|
attr_accessor :challenge
|
377
377
|
|
378
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
379
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
380
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
381
|
+
# false`.
|
382
|
+
# Corresponds to the JSON property `limitedUse`
|
383
|
+
# @return [Boolean]
|
384
|
+
attr_accessor :limited_use
|
385
|
+
alias_method :limited_use?, :limited_use
|
386
|
+
|
378
387
|
def initialize(**args)
|
379
388
|
update!(**args)
|
380
389
|
end
|
@@ -384,6 +393,7 @@ module Google
|
|
384
393
|
@artifact = args[:artifact] if args.key?(:artifact)
|
385
394
|
@assertion = args[:assertion] if args.key?(:assertion)
|
386
395
|
@challenge = args[:challenge] if args.key?(:challenge)
|
396
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
387
397
|
end
|
388
398
|
end
|
389
399
|
|
@@ -411,6 +421,15 @@ module Google
|
|
411
421
|
# @return [String]
|
412
422
|
attr_accessor :key_id
|
413
423
|
|
424
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
425
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
426
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
427
|
+
# false`.
|
428
|
+
# Corresponds to the JSON property `limitedUse`
|
429
|
+
# @return [Boolean]
|
430
|
+
attr_accessor :limited_use
|
431
|
+
alias_method :limited_use?, :limited_use
|
432
|
+
|
414
433
|
def initialize(**args)
|
415
434
|
update!(**args)
|
416
435
|
end
|
@@ -420,6 +439,7 @@ module Google
|
|
420
439
|
@attestation_statement = args[:attestation_statement] if args.key?(:attestation_statement)
|
421
440
|
@challenge = args[:challenge] if args.key?(:challenge)
|
422
441
|
@key_id = args[:key_id] if args.key?(:key_id)
|
442
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
423
443
|
end
|
424
444
|
end
|
425
445
|
|
@@ -460,6 +480,15 @@ module Google
|
|
460
480
|
# @return [String]
|
461
481
|
attr_accessor :custom_token
|
462
482
|
|
483
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
484
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
485
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
486
|
+
# false`.
|
487
|
+
# Corresponds to the JSON property `limitedUse`
|
488
|
+
# @return [Boolean]
|
489
|
+
attr_accessor :limited_use
|
490
|
+
alias_method :limited_use?, :limited_use
|
491
|
+
|
463
492
|
def initialize(**args)
|
464
493
|
update!(**args)
|
465
494
|
end
|
@@ -467,6 +496,7 @@ module Google
|
|
467
496
|
# Update properties of this object
|
468
497
|
def update!(**args)
|
469
498
|
@custom_token = args[:custom_token] if args.key?(:custom_token)
|
499
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
470
500
|
end
|
471
501
|
end
|
472
502
|
|
@@ -480,6 +510,15 @@ module Google
|
|
480
510
|
# @return [String]
|
481
511
|
attr_accessor :debug_token
|
482
512
|
|
513
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
514
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
515
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
516
|
+
# false`.
|
517
|
+
# Corresponds to the JSON property `limitedUse`
|
518
|
+
# @return [Boolean]
|
519
|
+
attr_accessor :limited_use
|
520
|
+
alias_method :limited_use?, :limited_use
|
521
|
+
|
483
522
|
def initialize(**args)
|
484
523
|
update!(**args)
|
485
524
|
end
|
@@ -487,6 +526,7 @@ module Google
|
|
487
526
|
# Update properties of this object
|
488
527
|
def update!(**args)
|
489
528
|
@debug_token = args[:debug_token] if args.key?(:debug_token)
|
529
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
490
530
|
end
|
491
531
|
end
|
492
532
|
|
@@ -501,6 +541,15 @@ module Google
|
|
501
541
|
# @return [String]
|
502
542
|
attr_accessor :device_token
|
503
543
|
|
544
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
545
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
546
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
547
|
+
# false`.
|
548
|
+
# Corresponds to the JSON property `limitedUse`
|
549
|
+
# @return [Boolean]
|
550
|
+
attr_accessor :limited_use
|
551
|
+
alias_method :limited_use?, :limited_use
|
552
|
+
|
504
553
|
def initialize(**args)
|
505
554
|
update!(**args)
|
506
555
|
end
|
@@ -508,6 +557,7 @@ module Google
|
|
508
557
|
# Update properties of this object
|
509
558
|
def update!(**args)
|
510
559
|
@device_token = args[:device_token] if args.key?(:device_token)
|
560
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
511
561
|
end
|
512
562
|
end
|
513
563
|
|
@@ -515,6 +565,15 @@ module Google
|
|
515
565
|
class GoogleFirebaseAppcheckV1ExchangePlayIntegrityTokenRequest
|
516
566
|
include Google::Apis::Core::Hashable
|
517
567
|
|
568
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
569
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
570
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
571
|
+
# false`.
|
572
|
+
# Corresponds to the JSON property `limitedUse`
|
573
|
+
# @return [Boolean]
|
574
|
+
attr_accessor :limited_use
|
575
|
+
alias_method :limited_use?, :limited_use
|
576
|
+
|
518
577
|
# Required. The [integrity verdict response token from Play Integrity](https://
|
519
578
|
# developer.android.com/google/play/integrity/verdict#decrypt-verify) issued to
|
520
579
|
# your app.
|
@@ -528,6 +587,7 @@ module Google
|
|
528
587
|
|
529
588
|
# Update properties of this object
|
530
589
|
def update!(**args)
|
590
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
531
591
|
@play_integrity_token = args[:play_integrity_token] if args.key?(:play_integrity_token)
|
532
592
|
end
|
533
593
|
end
|
@@ -536,6 +596,15 @@ module Google
|
|
536
596
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaEnterpriseTokenRequest
|
537
597
|
include Google::Apis::Core::Hashable
|
538
598
|
|
599
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
600
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
601
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
602
|
+
# false`.
|
603
|
+
# Corresponds to the JSON property `limitedUse`
|
604
|
+
# @return [Boolean]
|
605
|
+
attr_accessor :limited_use
|
606
|
+
alias_method :limited_use?, :limited_use
|
607
|
+
|
539
608
|
# Required. The reCAPTCHA token as returned by the [reCAPTCHA Enterprise
|
540
609
|
# JavaScript API](https://cloud.google.com/recaptcha-enterprise/docs/instrument-
|
541
610
|
# web-pages).
|
@@ -549,6 +618,7 @@ module Google
|
|
549
618
|
|
550
619
|
# Update properties of this object
|
551
620
|
def update!(**args)
|
621
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
552
622
|
@recaptcha_enterprise_token = args[:recaptcha_enterprise_token] if args.key?(:recaptcha_enterprise_token)
|
553
623
|
end
|
554
624
|
end
|
@@ -557,6 +627,15 @@ module Google
|
|
557
627
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaV3TokenRequest
|
558
628
|
include Google::Apis::Core::Hashable
|
559
629
|
|
630
|
+
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
631
|
+
# session based* (`false`) context. To enable this attestation to be used with
|
632
|
+
# the *replay protection* feature, set this to `true`. The default value is `
|
633
|
+
# false`.
|
634
|
+
# Corresponds to the JSON property `limitedUse`
|
635
|
+
# @return [Boolean]
|
636
|
+
attr_accessor :limited_use
|
637
|
+
alias_method :limited_use?, :limited_use
|
638
|
+
|
560
639
|
# Required. The reCAPTCHA token as returned by the [reCAPTCHA v3 JavaScript API](
|
561
640
|
# https://developers.google.com/recaptcha/docs/v3).
|
562
641
|
# Corresponds to the JSON property `recaptchaV3Token`
|
@@ -569,6 +648,7 @@ module Google
|
|
569
648
|
|
570
649
|
# Update properties of this object
|
571
650
|
def update!(**args)
|
651
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
572
652
|
@recaptcha_v3_token = args[:recaptcha_v3_token] if args.key?(:recaptcha_v3_token)
|
573
653
|
end
|
574
654
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebaseappcheckV1
|
18
18
|
# Version of the google-apis-firebaseappcheck_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231009"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -351,6 +351,7 @@ module Google
|
|
351
351
|
property :artifact, :base64 => true, as: 'artifact'
|
352
352
|
property :assertion, :base64 => true, as: 'assertion'
|
353
353
|
property :challenge, :base64 => true, as: 'challenge'
|
354
|
+
property :limited_use, as: 'limitedUse'
|
354
355
|
end
|
355
356
|
end
|
356
357
|
|
@@ -360,6 +361,7 @@ module Google
|
|
360
361
|
property :attestation_statement, :base64 => true, as: 'attestationStatement'
|
361
362
|
property :challenge, :base64 => true, as: 'challenge'
|
362
363
|
property :key_id, :base64 => true, as: 'keyId'
|
364
|
+
property :limited_use, as: 'limitedUse'
|
363
365
|
end
|
364
366
|
end
|
365
367
|
|
@@ -376,6 +378,7 @@ module Google
|
|
376
378
|
# @private
|
377
379
|
class Representation < Google::Apis::Core::JsonRepresentation
|
378
380
|
property :custom_token, as: 'customToken'
|
381
|
+
property :limited_use, as: 'limitedUse'
|
379
382
|
end
|
380
383
|
end
|
381
384
|
|
@@ -383,6 +386,7 @@ module Google
|
|
383
386
|
# @private
|
384
387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
385
388
|
property :debug_token, as: 'debugToken'
|
389
|
+
property :limited_use, as: 'limitedUse'
|
386
390
|
end
|
387
391
|
end
|
388
392
|
|
@@ -390,12 +394,14 @@ module Google
|
|
390
394
|
# @private
|
391
395
|
class Representation < Google::Apis::Core::JsonRepresentation
|
392
396
|
property :device_token, as: 'deviceToken'
|
397
|
+
property :limited_use, as: 'limitedUse'
|
393
398
|
end
|
394
399
|
end
|
395
400
|
|
396
401
|
class GoogleFirebaseAppcheckV1ExchangePlayIntegrityTokenRequest
|
397
402
|
# @private
|
398
403
|
class Representation < Google::Apis::Core::JsonRepresentation
|
404
|
+
property :limited_use, as: 'limitedUse'
|
399
405
|
property :play_integrity_token, as: 'playIntegrityToken'
|
400
406
|
end
|
401
407
|
end
|
@@ -403,6 +409,7 @@ module Google
|
|
403
409
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaEnterpriseTokenRequest
|
404
410
|
# @private
|
405
411
|
class Representation < Google::Apis::Core::JsonRepresentation
|
412
|
+
property :limited_use, as: 'limitedUse'
|
406
413
|
property :recaptcha_enterprise_token, as: 'recaptchaEnterpriseToken'
|
407
414
|
end
|
408
415
|
end
|
@@ -410,6 +417,7 @@ module Google
|
|
410
417
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaV3TokenRequest
|
411
418
|
# @private
|
412
419
|
class Representation < Google::Apis::Core::JsonRepresentation
|
420
|
+
property :limited_use, as: 'limitedUse'
|
413
421
|
property :recaptcha_v3_token, as: 'recaptchaV3Token'
|
414
422
|
end
|
415
423
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebaseappcheck_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2023-
|
11
|
+
date: 2023-10-15 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-firebaseappcheck_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1
|
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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Firebase App Check API V1
|