google-apis-playintegrity_v1 0.27.0 → 0.28.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: '0384c12675b1546794e5796019780a9a6726bb8d949437ccf13f2e09adfeb67f'
4
- data.tar.gz: c8531947d5b9d7b5822b01fa7f8adf2a1d9055ed56151bfcf8264ed965f4dc9a
3
+ metadata.gz: 753d9e71175cca8d2bc8765f925ec6190a5d99351dfb1fc7d99a8a8ff4964deb
4
+ data.tar.gz: 3c06111fc2c5baaab4964c56b4c2c19033826fce76b6add7422e07a843c82bbd
5
5
  SHA512:
6
- metadata.gz: 386bccb861b2c80e1f3c900560a7ab7024cfc5b3bbde72c8bd1da2f0333b5c7962fcf239fa4f40a40b4132c4f2336bf6e5d5da2c99ed3a848aa9790f84d65e42
7
- data.tar.gz: 18308d347019ba774deec809e4b6dc3522d7a79770cf5309d2b47c3b237d1ceedb5ecfe031ca53723a088221ede45253035d7a7a8824b98071547fa545a2658b
6
+ metadata.gz: 8cf268064d30be8f7e22723d37322f47093b2e1cecca8051d76cb56148a4a0c94c51f96583a2cd4c24c707c0ccf5c191f79a1ec2f717d6799e93c5f3019152b7
7
+ data.tar.gz: 55247ad5bccb31171b73eced916d429db4f810b94f1a162ebeb2ed2c0b444da01c5a494ea75b4c4f82ab65fcc4fc76334fe25ae51468d3387aa1f10fa26cc6dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.28.0 (2024-08-04)
4
+
5
+ * Regenerated from discovery document revision 20240725
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.27.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240711
@@ -189,6 +189,11 @@ module Google
189
189
  class DeviceIntegrity
190
190
  include Google::Apis::Core::Hashable
191
191
 
192
+ # Contains the recall bits per device set by the developer. Next tag: 3
193
+ # Corresponds to the JSON property `deviceRecall`
194
+ # @return [Google::Apis::PlayintegrityV1::DeviceRecall]
195
+ attr_accessor :device_recall
196
+
192
197
  # Details about the integrity of the device the app is running on.
193
198
  # Corresponds to the JSON property `deviceRecognitionVerdict`
194
199
  # @return [Array<String>]
@@ -207,11 +212,37 @@ module Google
207
212
 
208
213
  # Update properties of this object
209
214
  def update!(**args)
215
+ @device_recall = args[:device_recall] if args.key?(:device_recall)
210
216
  @device_recognition_verdict = args[:device_recognition_verdict] if args.key?(:device_recognition_verdict)
211
217
  @recent_device_activity = args[:recent_device_activity] if args.key?(:recent_device_activity)
212
218
  end
213
219
  end
214
220
 
221
+ # Contains the recall bits per device set by the developer. Next tag: 3
222
+ class DeviceRecall
223
+ include Google::Apis::Core::Hashable
224
+
225
+ # Contains the recall bits values.
226
+ # Corresponds to the JSON property `values`
227
+ # @return [Google::Apis::PlayintegrityV1::Values]
228
+ attr_accessor :values
229
+
230
+ # Contains the recall bits write dates.
231
+ # Corresponds to the JSON property `writeDates`
232
+ # @return [Google::Apis::PlayintegrityV1::WriteDates]
233
+ attr_accessor :write_dates
234
+
235
+ def initialize(**args)
236
+ update!(**args)
237
+ end
238
+
239
+ # Update properties of this object
240
+ def update!(**args)
241
+ @values = args[:values] if args.key?(:values)
242
+ @write_dates = args[:write_dates] if args.key?(:write_dates)
243
+ end
244
+ end
245
+
215
246
  # Contains information about the environment Play Integrity API runs in, e.g.
216
247
  # Play Protect verdict.
217
248
  class EnvironmentDetails
@@ -406,6 +437,40 @@ module Google
406
437
  end
407
438
  end
408
439
 
440
+ # Contains the recall bits write dates.
441
+ class WriteDates
442
+ include Google::Apis::Core::Hashable
443
+
444
+ # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the first bit.
445
+ # Note that this value won't be set if the first bit is false.
446
+ # Corresponds to the JSON property `yyyymmFirst`
447
+ # @return [Fixnum]
448
+ attr_accessor :yyyymm_first
449
+
450
+ # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the second bit.
451
+ # Note that this value won't be set if the second bit is false.
452
+ # Corresponds to the JSON property `yyyymmSecond`
453
+ # @return [Fixnum]
454
+ attr_accessor :yyyymm_second
455
+
456
+ # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the third bit.
457
+ # Note that this value won't be set if the third bit is false.
458
+ # Corresponds to the JSON property `yyyymmThird`
459
+ # @return [Fixnum]
460
+ attr_accessor :yyyymm_third
461
+
462
+ def initialize(**args)
463
+ update!(**args)
464
+ end
465
+
466
+ # Update properties of this object
467
+ def update!(**args)
468
+ @yyyymm_first = args[:yyyymm_first] if args.key?(:yyyymm_first)
469
+ @yyyymm_second = args[:yyyymm_second] if args.key?(:yyyymm_second)
470
+ @yyyymm_third = args[:yyyymm_third] if args.key?(:yyyymm_third)
471
+ end
472
+ end
473
+
409
474
  # Request to write device recall bits.
410
475
  class WriteDeviceRecallRequest
411
476
  include Google::Apis::Core::Hashable
@@ -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.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240711"
25
+ REVISION = "20240725"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class DeviceRecall
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class EnvironmentDetails
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -100,6 +106,12 @@ module Google
100
106
  include Google::Apis::Core::JsonObjectSupport
101
107
  end
102
108
 
109
+ class WriteDates
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class WriteDeviceRecallRequest
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -165,12 +177,24 @@ module Google
165
177
  class DeviceIntegrity
166
178
  # @private
167
179
  class Representation < Google::Apis::Core::JsonRepresentation
180
+ property :device_recall, as: 'deviceRecall', class: Google::Apis::PlayintegrityV1::DeviceRecall, decorator: Google::Apis::PlayintegrityV1::DeviceRecall::Representation
181
+
168
182
  collection :device_recognition_verdict, as: 'deviceRecognitionVerdict'
169
183
  property :recent_device_activity, as: 'recentDeviceActivity', class: Google::Apis::PlayintegrityV1::RecentDeviceActivity, decorator: Google::Apis::PlayintegrityV1::RecentDeviceActivity::Representation
170
184
 
171
185
  end
172
186
  end
173
187
 
188
+ class DeviceRecall
189
+ # @private
190
+ class Representation < Google::Apis::Core::JsonRepresentation
191
+ property :values, as: 'values', class: Google::Apis::PlayintegrityV1::Values, decorator: Google::Apis::PlayintegrityV1::Values::Representation
192
+
193
+ property :write_dates, as: 'writeDates', class: Google::Apis::PlayintegrityV1::WriteDates, decorator: Google::Apis::PlayintegrityV1::WriteDates::Representation
194
+
195
+ end
196
+ end
197
+
174
198
  class EnvironmentDetails
175
199
  # @private
176
200
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -231,6 +255,15 @@ module Google
231
255
  end
232
256
  end
233
257
 
258
+ class WriteDates
259
+ # @private
260
+ class Representation < Google::Apis::Core::JsonRepresentation
261
+ property :yyyymm_first, as: 'yyyymmFirst'
262
+ property :yyyymm_second, as: 'yyyymmSecond'
263
+ property :yyyymm_third, as: 'yyyymmThird'
264
+ end
265
+ end
266
+
234
267
  class WriteDeviceRecallRequest
235
268
  # @private
236
269
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-playintegrity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.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: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-04 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-playintegrity_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playintegrity_v1
63
63
  post_install_message:
64
64
  rdoc_options: []