google-apis-playintegrity_v1 0.8.0 → 0.10.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: e114df142f825f48e25533cf2bd338d92714726bca9899868b4acdadc01eebe6
4
- data.tar.gz: fac8cfbac4cf6b533c5180e3aa9e6264228de3f07e73601c47b95ba1c0836073
3
+ metadata.gz: adaeff45c9ead1f6d9665921c675d691c0e5a0c2a681f4f98e6c628bbf95497b
4
+ data.tar.gz: 03ae6096d8c38fc5268edfaef2bdd65ec38309c9c628deffab28419bc6084e86
5
5
  SHA512:
6
- metadata.gz: 20e74928d61e95f57a48f40168848b76455fe21893a3d54153a71eb72a41d065e309c636163149c56bdd7b816de996c8f4a5ffe7652e7d32485f691e0bbcc57e
7
- data.tar.gz: 5b596bba30f5b99a13582ce9bca12a6d8a0165b4641ea3f5fe670e21f1bd7e078bfdbc3055f88be489b989b87a9ef734bd39e72e73c6fb5f9e31569a42b6720b
6
+ metadata.gz: 99d1f56e3d71cb52dabe830f1eb8771d5ac309541e5c11390bd098ef6882c9b7337c69b4608113efc0e220e4907e751ccb754e4899e3ea365852a009afbab13b
7
+ data.tar.gz: 77cde942214ab8ac499e0e999a371fec22b7f00de6ad879207dcc91034a6d510f9f4a603518f92e31d1883e3f94bf792614fcd97e44b1dd6345ec65de656cf18
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.10.0 (2022-10-08)
4
+
5
+ * Regenerated from discovery document revision 20220928
6
+
7
+ ### v0.9.0 (2022-09-24)
8
+
9
+ * Regenerated using generator version 0.10.0
10
+
3
11
  ### v0.8.0 (2022-09-16)
4
12
 
5
13
  * Unspecified changes
@@ -22,11 +22,41 @@ module Google
22
22
  module Apis
23
23
  module PlayintegrityV1
24
24
 
25
+ # Contains a signal helping apps differentiating between likely genuine users
26
+ # and likely non-genuine traffic (such as accounts being used for fraud,
27
+ # accounts used by automated traffic, or accounts used in device farms) based on
28
+ # the presence and volume of Play store activity.
29
+ class AccountActivity
30
+ include Google::Apis::Core::Hashable
31
+
32
+ # Required. Indicates the activity level of the account.
33
+ # Corresponds to the JSON property `activityLevel`
34
+ # @return [String]
35
+ attr_accessor :activity_level
36
+
37
+ def initialize(**args)
38
+ update!(**args)
39
+ end
40
+
41
+ # Update properties of this object
42
+ def update!(**args)
43
+ @activity_level = args[:activity_level] if args.key?(:activity_level)
44
+ end
45
+ end
46
+
25
47
  # Contains the account information such as the licensing status for the user in
26
48
  # the scope.
27
49
  class AccountDetails
28
50
  include Google::Apis::Core::Hashable
29
51
 
52
+ # Contains a signal helping apps differentiating between likely genuine users
53
+ # and likely non-genuine traffic (such as accounts being used for fraud,
54
+ # accounts used by automated traffic, or accounts used in device farms) based on
55
+ # the presence and volume of Play store activity.
56
+ # Corresponds to the JSON property `accountActivity`
57
+ # @return [Google::Apis::PlayintegrityV1::AccountActivity]
58
+ attr_accessor :account_activity
59
+
30
60
  # Contains information about account risk that indicates if the current user
31
61
  # session seems low risk, unknown, or risky before you allow important actions
32
62
  # to proceed.
@@ -46,6 +76,7 @@ module Google
46
76
 
47
77
  # Update properties of this object
48
78
  def update!(**args)
79
+ @account_activity = args[:account_activity] if args.key?(:account_activity)
49
80
  @account_risk_verdict = args[:account_risk_verdict] if args.key?(:account_risk_verdict)
50
81
  @app_licensing_verdict = args[:app_licensing_verdict] if args.key?(:app_licensing_verdict)
51
82
  end
@@ -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.8.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220904"
25
+ REVISION = "20220928"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module PlayintegrityV1
24
24
 
25
+ class AccountActivity
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AccountDetails
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -76,9 +82,18 @@ module Google
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
85
+ class AccountActivity
86
+ # @private
87
+ class Representation < Google::Apis::Core::JsonRepresentation
88
+ property :activity_level, as: 'activityLevel'
89
+ end
90
+ end
91
+
79
92
  class AccountDetails
80
93
  # @private
81
94
  class Representation < Google::Apis::Core::JsonRepresentation
95
+ property :account_activity, as: 'accountActivity', class: Google::Apis::PlayintegrityV1::AccountActivity, decorator: Google::Apis::PlayintegrityV1::AccountActivity::Representation
96
+
82
97
  property :account_risk_verdict, as: 'accountRiskVerdict', class: Google::Apis::PlayintegrityV1::AccountRiskVerdict, decorator: Google::Apis::PlayintegrityV1::AccountRiskVerdict::Representation
83
98
 
84
99
  property :app_licensing_verdict, as: 'appLicensingVerdict'
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.8.0
4
+ version: 0.10.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: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2022-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.2
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.7.2
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.10.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: []