google-apis-playintegrity_v1 0.32.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: 61842f70b1a3c33f13280b8d385b3a58417b5f51a6bbc83fc546acced605f25f
4
- data.tar.gz: 6aa3c0664aa3b4b3db7d09462ece7c78463bf27d8a1953e1517cb0cb54e34835
3
+ metadata.gz: cb41625abc24198ef116a69b6bdebd51c75c369b7982c75dbf033830635d3ecb
4
+ data.tar.gz: 00ca01bd2698a46bf92bf3b7271ad4d035b4930357f9aeadeb77c8853ea0a180
5
5
  SHA512:
6
- metadata.gz: 5372de685f65f9f3db23a94469ef96adfc091add272a2f312b9bf4c99899a3863ccb1800468f3501821ac1e4a46abc4521eaed41a1de559bb1baa116380d83b0
7
- data.tar.gz: 43cbbb8553e06c52300365edab20a85aa0b48cd34ef7ae06b93838017c6aa6cd4e153b55d2a7d480a80b7d98906b41f5b4ef427b51aae3964988fd25cbac3f24
6
+ metadata.gz: 3bbdba8886ec3e7b96d470b0732323107f69b92d4920896b1b0d21f29d43c834b4cc66ea488a5768a2405e6a74b0ab3984576f80b1583d7d2666b354d2d7919a
7
+ data.tar.gz: afc8f3f09c4d9c2dcefbfdcef048c7fc0fe49f65a28bdc68276407789ab0c7b8ed6fd984243b2edac6912176d2abb01b8093ae2dfedaed7fefadb1937887b181
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
7
+ ### v0.33.0 (2025-08-24)
8
+
9
+ * Regenerated from discovery document revision 20250818
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.32.0 (2025-05-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20250514
@@ -331,6 +331,27 @@ module Google
331
331
  end
332
332
  end
333
333
 
334
+ # Contains the account information such as the licensing status for the user in
335
+ # the scope.
336
+ class PcAccountDetails
337
+ include Google::Apis::Core::Hashable
338
+
339
+ # Required. Details about the licensing status of the user for the app in the
340
+ # scope.
341
+ # Corresponds to the JSON property `appLicensingVerdict`
342
+ # @return [String]
343
+ attr_accessor :app_licensing_verdict
344
+
345
+ def initialize(**args)
346
+ update!(**args)
347
+ end
348
+
349
+ # Update properties of this object
350
+ def update!(**args)
351
+ @app_licensing_verdict = args[:app_licensing_verdict] if args.key?(:app_licensing_verdict)
352
+ end
353
+ end
354
+
334
355
  # Contains the device attestation information.
335
356
  class PcDeviceIntegrity
336
357
  include Google::Apis::Core::Hashable
@@ -382,10 +403,37 @@ module Google
382
403
  end
383
404
  end
384
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
+
385
427
  # Contains PC device attestation details.
386
428
  class PcTokenPayloadExternal
387
429
  include Google::Apis::Core::Hashable
388
430
 
431
+ # Contains the account information such as the licensing status for the user in
432
+ # the scope.
433
+ # Corresponds to the JSON property `accountDetails`
434
+ # @return [Google::Apis::PlayintegrityV1::PcAccountDetails]
435
+ attr_accessor :account_details
436
+
389
437
  # Contains the device attestation information.
390
438
  # Corresponds to the JSON property `deviceIntegrity`
391
439
  # @return [Google::Apis::PlayintegrityV1::PcDeviceIntegrity]
@@ -396,14 +444,21 @@ module Google
396
444
  # @return [Google::Apis::PlayintegrityV1::PcRequestDetails]
397
445
  attr_accessor :request_details
398
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
+
399
452
  def initialize(**args)
400
453
  update!(**args)
401
454
  end
402
455
 
403
456
  # Update properties of this object
404
457
  def update!(**args)
458
+ @account_details = args[:account_details] if args.key?(:account_details)
405
459
  @device_integrity = args[:device_integrity] if args.key?(:device_integrity)
406
460
  @request_details = args[:request_details] if args.key?(:request_details)
461
+ @testing_details = args[:testing_details] if args.key?(:testing_details)
407
462
  end
408
463
  end
409
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.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250514"
25
+ REVISION = "20250828"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class PcAccountDetails
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class PcDeviceIntegrity
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -106,6 +112,12 @@ module Google
106
112
  include Google::Apis::Core::JsonObjectSupport
107
113
  end
108
114
 
115
+ class PcTestingDetails
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
109
121
  class PcTokenPayloadExternal
110
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
123
 
@@ -263,6 +275,13 @@ module Google
263
275
  end
264
276
  end
265
277
 
278
+ class PcAccountDetails
279
+ # @private
280
+ class Representation < Google::Apis::Core::JsonRepresentation
281
+ property :app_licensing_verdict, as: 'appLicensingVerdict'
282
+ end
283
+ end
284
+
266
285
  class PcDeviceIntegrity
267
286
  # @private
268
287
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -279,13 +298,24 @@ module Google
279
298
  end
280
299
  end
281
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
+
282
308
  class PcTokenPayloadExternal
283
309
  # @private
284
310
  class Representation < Google::Apis::Core::JsonRepresentation
311
+ property :account_details, as: 'accountDetails', class: Google::Apis::PlayintegrityV1::PcAccountDetails, decorator: Google::Apis::PlayintegrityV1::PcAccountDetails::Representation
312
+
285
313
  property :device_integrity, as: 'deviceIntegrity', class: Google::Apis::PlayintegrityV1::PcDeviceIntegrity, decorator: Google::Apis::PlayintegrityV1::PcDeviceIntegrity::Representation
286
314
 
287
315
  property :request_details, as: 'requestDetails', class: Google::Apis::PlayintegrityV1::PcRequestDetails, decorator: Google::Apis::PlayintegrityV1::PcRequestDetails::Representation
288
316
 
317
+ property :testing_details, as: 'testingDetails', class: Google::Apis::PlayintegrityV1::PcTestingDetails, decorator: Google::Apis::PlayintegrityV1::PcTestingDetails::Representation
318
+
289
319
  end
290
320
  end
291
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.32.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.32.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Play Integrity API V1
79
79
  test_files: []