google-apis-playintegrity_v1 0.33.0 → 0.34.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: cb41625abc24198ef116a69b6bdebd51c75c369b7982c75dbf033830635d3ecb
|
4
|
+
data.tar.gz: 00ca01bd2698a46bf92bf3b7271ad4d035b4930357f9aeadeb77c8853ea0a180
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bbdba8886ec3e7b96d470b0732323107f69b92d4920896b1b0d21f29d43c834b4cc66ea488a5768a2405e6a74b0ab3984576f80b1583d7d2666b354d2d7919a
|
7
|
+
data.tar.gz: afc8f3f09c4d9c2dcefbfdcef048c7fc0fe49f65a28bdc68276407789ab0c7b8ed6fd984243b2edac6912176d2abb01b8093ae2dfedaed7fefadb1937887b181
|
data/CHANGELOG.md
CHANGED
@@ -403,6 +403,27 @@ module Google
|
|
403
403
|
end
|
404
404
|
end
|
405
405
|
|
406
|
+
# Contains additional information generated for testing responses.
|
407
|
+
class PcTestingDetails
|
408
|
+
include Google::Apis::Core::Hashable
|
409
|
+
|
410
|
+
# Indicates that the information contained in this payload is a testing response
|
411
|
+
# that is statically overridden for a tester.
|
412
|
+
# Corresponds to the JSON property `isTestingResponse`
|
413
|
+
# @return [Boolean]
|
414
|
+
attr_accessor :is_testing_response
|
415
|
+
alias_method :is_testing_response?, :is_testing_response
|
416
|
+
|
417
|
+
def initialize(**args)
|
418
|
+
update!(**args)
|
419
|
+
end
|
420
|
+
|
421
|
+
# Update properties of this object
|
422
|
+
def update!(**args)
|
423
|
+
@is_testing_response = args[:is_testing_response] if args.key?(:is_testing_response)
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
406
427
|
# Contains PC device attestation details.
|
407
428
|
class PcTokenPayloadExternal
|
408
429
|
include Google::Apis::Core::Hashable
|
@@ -423,6 +444,11 @@ module Google
|
|
423
444
|
# @return [Google::Apis::PlayintegrityV1::PcRequestDetails]
|
424
445
|
attr_accessor :request_details
|
425
446
|
|
447
|
+
# Contains additional information generated for testing responses.
|
448
|
+
# Corresponds to the JSON property `testingDetails`
|
449
|
+
# @return [Google::Apis::PlayintegrityV1::PcTestingDetails]
|
450
|
+
attr_accessor :testing_details
|
451
|
+
|
426
452
|
def initialize(**args)
|
427
453
|
update!(**args)
|
428
454
|
end
|
@@ -432,6 +458,7 @@ module Google
|
|
432
458
|
@account_details = args[:account_details] if args.key?(:account_details)
|
433
459
|
@device_integrity = args[:device_integrity] if args.key?(:device_integrity)
|
434
460
|
@request_details = args[:request_details] if args.key?(:request_details)
|
461
|
+
@testing_details = args[:testing_details] if args.key?(:testing_details)
|
435
462
|
end
|
436
463
|
end
|
437
464
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PlayintegrityV1
|
18
18
|
# Version of the google-apis-playintegrity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250828"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -112,6 +112,12 @@ module Google
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
113
113
|
end
|
114
114
|
|
115
|
+
class PcTestingDetails
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
115
121
|
class PcTokenPayloadExternal
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
123
|
|
@@ -292,6 +298,13 @@ module Google
|
|
292
298
|
end
|
293
299
|
end
|
294
300
|
|
301
|
+
class PcTestingDetails
|
302
|
+
# @private
|
303
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
304
|
+
property :is_testing_response, as: 'isTestingResponse'
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
295
308
|
class PcTokenPayloadExternal
|
296
309
|
# @private
|
297
310
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -301,6 +314,8 @@ module Google
|
|
301
314
|
|
302
315
|
property :request_details, as: 'requestDetails', class: Google::Apis::PlayintegrityV1::PcRequestDetails, decorator: Google::Apis::PlayintegrityV1::PcRequestDetails::Representation
|
303
316
|
|
317
|
+
property :testing_details, as: 'testingDetails', class: Google::Apis::PlayintegrityV1::PcTestingDetails, decorator: Google::Apis::PlayintegrityV1::PcTestingDetails::Representation
|
318
|
+
|
304
319
|
end
|
305
320
|
end
|
306
321
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-playintegrity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playintegrity_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.34.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playintegrity_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|