google-apis-firebaseappcheck_v1 0.7.0 → 0.9.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 682875f2bfff9a6e1e49ae2a49980f2ba9659f9a73434e2c2b8cca6ff3ec96e3
|
4
|
+
data.tar.gz: b27c9dad8381d0eb58c1a6f100060213be12a0bbec6cfb943742350415932cd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cabe5bb04c3b7e7403d17707e5a1e9fe48a9ee96f8cdf8bf862307a04f1d7ff7857bad7380ba2b0b314b22472ac315fea58dc410d38459c617211d05d9d0387b
|
7
|
+
data.tar.gz: 466938f1bc84e5ca189171bcb87b02059d52689de55f5b08950cbc2468386a80cade4da3fa208cef141fa2550ffbdaea564f6b4a2131be4f8b4c714acdc28eae
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseappcheck_v1
|
2
2
|
|
3
|
+
### v0.9.0 (2023-06-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230612
|
6
|
+
|
7
|
+
### v0.8.0 (2023-02-15)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.12.0
|
10
|
+
|
3
11
|
### v0.7.0 (2022-10-27)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.11.0
|
@@ -375,6 +375,13 @@ module Google
|
|
375
375
|
# @return [String]
|
376
376
|
attr_accessor :challenge
|
377
377
|
|
378
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
379
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
380
|
+
# Corresponds to the JSON property `limitedUse`
|
381
|
+
# @return [Boolean]
|
382
|
+
attr_accessor :limited_use
|
383
|
+
alias_method :limited_use?, :limited_use
|
384
|
+
|
378
385
|
def initialize(**args)
|
379
386
|
update!(**args)
|
380
387
|
end
|
@@ -384,6 +391,7 @@ module Google
|
|
384
391
|
@artifact = args[:artifact] if args.key?(:artifact)
|
385
392
|
@assertion = args[:assertion] if args.key?(:assertion)
|
386
393
|
@challenge = args[:challenge] if args.key?(:challenge)
|
394
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
387
395
|
end
|
388
396
|
end
|
389
397
|
|
@@ -411,6 +419,13 @@ module Google
|
|
411
419
|
# @return [String]
|
412
420
|
attr_accessor :key_id
|
413
421
|
|
422
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
423
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
424
|
+
# Corresponds to the JSON property `limitedUse`
|
425
|
+
# @return [Boolean]
|
426
|
+
attr_accessor :limited_use
|
427
|
+
alias_method :limited_use?, :limited_use
|
428
|
+
|
414
429
|
def initialize(**args)
|
415
430
|
update!(**args)
|
416
431
|
end
|
@@ -420,6 +435,7 @@ module Google
|
|
420
435
|
@attestation_statement = args[:attestation_statement] if args.key?(:attestation_statement)
|
421
436
|
@challenge = args[:challenge] if args.key?(:challenge)
|
422
437
|
@key_id = args[:key_id] if args.key?(:key_id)
|
438
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
423
439
|
end
|
424
440
|
end
|
425
441
|
|
@@ -460,6 +476,13 @@ module Google
|
|
460
476
|
# @return [String]
|
461
477
|
attr_accessor :custom_token
|
462
478
|
|
479
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
480
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
481
|
+
# Corresponds to the JSON property `limitedUse`
|
482
|
+
# @return [Boolean]
|
483
|
+
attr_accessor :limited_use
|
484
|
+
alias_method :limited_use?, :limited_use
|
485
|
+
|
463
486
|
def initialize(**args)
|
464
487
|
update!(**args)
|
465
488
|
end
|
@@ -467,6 +490,7 @@ module Google
|
|
467
490
|
# Update properties of this object
|
468
491
|
def update!(**args)
|
469
492
|
@custom_token = args[:custom_token] if args.key?(:custom_token)
|
493
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
470
494
|
end
|
471
495
|
end
|
472
496
|
|
@@ -480,6 +504,13 @@ module Google
|
|
480
504
|
# @return [String]
|
481
505
|
attr_accessor :debug_token
|
482
506
|
|
507
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
508
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
509
|
+
# Corresponds to the JSON property `limitedUse`
|
510
|
+
# @return [Boolean]
|
511
|
+
attr_accessor :limited_use
|
512
|
+
alias_method :limited_use?, :limited_use
|
513
|
+
|
483
514
|
def initialize(**args)
|
484
515
|
update!(**args)
|
485
516
|
end
|
@@ -487,6 +518,7 @@ module Google
|
|
487
518
|
# Update properties of this object
|
488
519
|
def update!(**args)
|
489
520
|
@debug_token = args[:debug_token] if args.key?(:debug_token)
|
521
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
490
522
|
end
|
491
523
|
end
|
492
524
|
|
@@ -501,6 +533,13 @@ module Google
|
|
501
533
|
# @return [String]
|
502
534
|
attr_accessor :device_token
|
503
535
|
|
536
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
537
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
538
|
+
# Corresponds to the JSON property `limitedUse`
|
539
|
+
# @return [Boolean]
|
540
|
+
attr_accessor :limited_use
|
541
|
+
alias_method :limited_use?, :limited_use
|
542
|
+
|
504
543
|
def initialize(**args)
|
505
544
|
update!(**args)
|
506
545
|
end
|
@@ -508,6 +547,7 @@ module Google
|
|
508
547
|
# Update properties of this object
|
509
548
|
def update!(**args)
|
510
549
|
@device_token = args[:device_token] if args.key?(:device_token)
|
550
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
511
551
|
end
|
512
552
|
end
|
513
553
|
|
@@ -515,6 +555,13 @@ module Google
|
|
515
555
|
class GoogleFirebaseAppcheckV1ExchangePlayIntegrityTokenRequest
|
516
556
|
include Google::Apis::Core::Hashable
|
517
557
|
|
558
|
+
# Forces a short-lived token with a 5 minute TTL. Useful when the client wishes
|
559
|
+
# to impose stricter TTL requirements for this exchange. Default: false.
|
560
|
+
# Corresponds to the JSON property `limitedUse`
|
561
|
+
# @return [Boolean]
|
562
|
+
attr_accessor :limited_use
|
563
|
+
alias_method :limited_use?, :limited_use
|
564
|
+
|
518
565
|
# Required. The [integrity verdict response token from Play Integrity](https://
|
519
566
|
# developer.android.com/google/play/integrity/verdict#decrypt-verify) issued to
|
520
567
|
# your app.
|
@@ -528,6 +575,7 @@ module Google
|
|
528
575
|
|
529
576
|
# Update properties of this object
|
530
577
|
def update!(**args)
|
578
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
531
579
|
@play_integrity_token = args[:play_integrity_token] if args.key?(:play_integrity_token)
|
532
580
|
end
|
533
581
|
end
|
@@ -536,6 +584,13 @@ module Google
|
|
536
584
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaEnterpriseTokenRequest
|
537
585
|
include Google::Apis::Core::Hashable
|
538
586
|
|
587
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
588
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
589
|
+
# Corresponds to the JSON property `limitedUse`
|
590
|
+
# @return [Boolean]
|
591
|
+
attr_accessor :limited_use
|
592
|
+
alias_method :limited_use?, :limited_use
|
593
|
+
|
539
594
|
# Required. The reCAPTCHA token as returned by the [reCAPTCHA Enterprise
|
540
595
|
# JavaScript API](https://cloud.google.com/recaptcha-enterprise/docs/instrument-
|
541
596
|
# web-pages).
|
@@ -549,6 +604,7 @@ module Google
|
|
549
604
|
|
550
605
|
# Update properties of this object
|
551
606
|
def update!(**args)
|
607
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
552
608
|
@recaptcha_enterprise_token = args[:recaptcha_enterprise_token] if args.key?(:recaptcha_enterprise_token)
|
553
609
|
end
|
554
610
|
end
|
@@ -557,6 +613,13 @@ module Google
|
|
557
613
|
class GoogleFirebaseAppcheckV1ExchangeRecaptchaV3TokenRequest
|
558
614
|
include Google::Apis::Core::Hashable
|
559
615
|
|
616
|
+
# Forces a short lived token with a 5 minute TTL. Useful when the client wishes
|
617
|
+
# to self impose stricter TTL requirements for this exchange. Default: false.
|
618
|
+
# Corresponds to the JSON property `limitedUse`
|
619
|
+
# @return [Boolean]
|
620
|
+
attr_accessor :limited_use
|
621
|
+
alias_method :limited_use?, :limited_use
|
622
|
+
|
560
623
|
# Required. The reCAPTCHA token as returned by the [reCAPTCHA v3 JavaScript API](
|
561
624
|
# https://developers.google.com/recaptcha/docs/v3).
|
562
625
|
# Corresponds to the JSON property `recaptchaV3Token`
|
@@ -569,6 +632,7 @@ module Google
|
|
569
632
|
|
570
633
|
# Update properties of this object
|
571
634
|
def update!(**args)
|
635
|
+
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
572
636
|
@recaptcha_v3_token = args[:recaptcha_v3_token] if args.key?(:recaptcha_v3_token)
|
573
637
|
end
|
574
638
|
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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230612"
|
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.9.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:
|
11
|
+
date: 2023-06-18 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.
|
19
|
+
version: 0.11.0
|
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.
|
29
|
+
version: 0.11.0
|
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-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.9.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.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Firebase App Check API V1
|