google-apis-playintegrity_v1 0.20.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afd69d123a485a8c00d636109cc2648941ec7b1415d3044595d07f27b3833c1e
4
- data.tar.gz: 83fd0cb6028cf42f3bdb5dc2c14ca58930e5fb20f5197220f0a19b006f704a98
3
+ metadata.gz: 05ce0c217529fd8d0fba1a5483e58525b4639b6b1e3a685aaa25f07c0066787e
4
+ data.tar.gz: 8f893953ca00adc3457f9ad631caf009d3fef2172881b315898a14b5d7a7fa9d
5
5
  SHA512:
6
- metadata.gz: 5c8c3d69639ac3a0bf63e0deb57da60ae25a145afe7c3ef63165e29b89d77de235aa09265b0d7d7bc4ef1ff739480ef15dffe02ee2dcbfae1a61f84d3f8d6f9c
7
- data.tar.gz: 597d7a0e29eff4ebdeef65e95da90d73ab58ca01c58a69b2f1fdd00691a969fae6dff29f554526b713deb5e40fa4903c69153fbd9fd30df35b023ec7ee610b38
6
+ metadata.gz: 3adfb38b82fd8b77927c08a6e295e649620002bcbcd9faffe101ec11018a95edb3241da3165aa57ee5ccf5901f26395c08f3cc77cab50b2b9bc0b267482d796e
7
+ data.tar.gz: 3b682f1092c7a76b61a7db2dbba8492a209e9e44e18e57197488039c5d2135af411112ae7a08a8d2e9826f70ac1b7abf25a53f99bca29c22a50fcf666bb2dbad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.21.0 (2024-01-07)
4
+
5
+ * Regenerated from discovery document revision 20240101
6
+
3
7
  ### v0.20.0 (2023-11-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20231109
@@ -188,6 +188,13 @@ module Google
188
188
  # @return [Array<String>]
189
189
  attr_accessor :device_recognition_verdict
190
190
 
191
+ # Recent device activity can help developers identify devices that have
192
+ # exhibited hyperactive attestation activity, which could be a sign of an attack
193
+ # or token farming.
194
+ # Corresponds to the JSON property `recentDeviceActivity`
195
+ # @return [Google::Apis::PlayintegrityV1::RecentDeviceActivity]
196
+ attr_accessor :recent_device_activity
197
+
191
198
  def initialize(**args)
192
199
  update!(**args)
193
200
  end
@@ -195,6 +202,7 @@ module Google
195
202
  # Update properties of this object
196
203
  def update!(**args)
197
204
  @device_recognition_verdict = args[:device_recognition_verdict] if args.key?(:device_recognition_verdict)
205
+ @recent_device_activity = args[:recent_device_activity] if args.key?(:recent_device_activity)
198
206
  end
199
207
  end
200
208
 
@@ -225,6 +233,27 @@ module Google
225
233
  end
226
234
  end
227
235
 
236
+ # Recent device activity can help developers identify devices that have
237
+ # exhibited hyperactive attestation activity, which could be a sign of an attack
238
+ # or token farming.
239
+ class RecentDeviceActivity
240
+ include Google::Apis::Core::Hashable
241
+
242
+ # Required. Indicates the activity level of the device.
243
+ # Corresponds to the JSON property `deviceActivityLevel`
244
+ # @return [String]
245
+ attr_accessor :device_activity_level
246
+
247
+ def initialize(**args)
248
+ update!(**args)
249
+ end
250
+
251
+ # Update properties of this object
252
+ def update!(**args)
253
+ @device_activity_level = args[:device_activity_level] if args.key?(:device_activity_level)
254
+ end
255
+ end
256
+
228
257
  # Contains the integrity request information.
229
258
  class RequestDetails
230
259
  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.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231109"
25
+ REVISION = "20240101"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class RecentDeviceActivity
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class RequestDetails
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -141,6 +147,8 @@ module Google
141
147
  # @private
142
148
  class Representation < Google::Apis::Core::JsonRepresentation
143
149
  collection :device_recognition_verdict, as: 'deviceRecognitionVerdict'
150
+ property :recent_device_activity, as: 'recentDeviceActivity', class: Google::Apis::PlayintegrityV1::RecentDeviceActivity, decorator: Google::Apis::PlayintegrityV1::RecentDeviceActivity::Representation
151
+
144
152
  end
145
153
  end
146
154
 
@@ -153,6 +161,13 @@ module Google
153
161
  end
154
162
  end
155
163
 
164
+ class RecentDeviceActivity
165
+ # @private
166
+ class Representation < Google::Apis::Core::JsonRepresentation
167
+ property :device_activity_level, as: 'deviceActivityLevel'
168
+ end
169
+ end
170
+
156
171
  class RequestDetails
157
172
  # @private
158
173
  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.20.0
4
+ version: 0.21.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: 2023-11-12 00:00:00.000000000 Z
11
+ date: 2024-01-07 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.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.21.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: []
@@ -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.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Integrity API V1