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: 70e86e95ad5aa2f9fde6ee22f7be6a412927bcedb121c3811f69618be721e685
4
- data.tar.gz: 52a3efc5893b9d5e46a86424532267fcdebaa7d093429a1a6f052d8fcc8f3fc6
3
+ metadata.gz: cb41625abc24198ef116a69b6bdebd51c75c369b7982c75dbf033830635d3ecb
4
+ data.tar.gz: 00ca01bd2698a46bf92bf3b7271ad4d035b4930357f9aeadeb77c8853ea0a180
5
5
  SHA512:
6
- metadata.gz: 3e2efd89a85df84aca44bdf957fd5901848d079750ac2ce2440a1325e34cd6317fc77749548c71ca4f103e9b5faa9579788ec4fe5e0690d2e1a19983831f3891
7
- data.tar.gz: 82e496468ea52dbda0e4044aa8d210a8780745b40d7fd9ba34e316bf121ba065a9e5a1880a6042c6bda14f77b461157a8538a678bf248184e607f1ba48f1f04c
6
+ metadata.gz: 3bbdba8886ec3e7b96d470b0732323107f69b92d4920896b1b0d21f29d43c834b4cc66ea488a5768a2405e6a74b0ab3984576f80b1583d7d2666b354d2d7919a
7
+ data.tar.gz: afc8f3f09c4d9c2dcefbfdcef048c7fc0fe49f65a28bdc68276407789ab0c7b8ed6fd984243b2edac6912176d2abb01b8093ae2dfedaed7fefadb1937887b181
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.34.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250828
6
+
3
7
  ### v0.33.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250818
@@ -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.33.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 = "20250818"
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.33.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.33.0
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: