google-apis-playintegrity_v1 0.3.0 → 0.6.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: 88c6dada8a0e78ff8b1c9cd7c8976f79b15c50347781da4cdabdb646123b50e6
4
- data.tar.gz: 665a40fd8e9007a583c040d321e6087c9a0d795ce0b1c643edad4456e384b6b3
3
+ metadata.gz: 9ff7cad857c8d0091468bcf85fcbc5d28b8ed62467f533b22b8b4a368cd012d5
4
+ data.tar.gz: 1b2e8f0c443d1477ea31e26777857e9800deca863be068158bb60138c05cb1a5
5
5
  SHA512:
6
- metadata.gz: 9470dae1310e299f70cf901dd91caf2516baa471aa8b6023fa5c83be40fc785ac3482fcab8ba9d116f632d70b5c967ec400ae61014abef6b6cc328d5092acc0c
7
- data.tar.gz: 4cf3d8e1b34d258d6b8c7534eef2613d9a07b3792acb096add10623ea5d85cf6e365e4a6dcab1c7ce9808d91658c56fc61c2727600fdc02c667207e4a6ecf51c
6
+ metadata.gz: 310352df6d32dd46520291cbd17288a6f20faecf2cf3323821b34dd3551cd8b6b83b13872db21d8e2593a46d5fd1f15da71b685cf927aca9b2d587cab31c92c4
7
+ data.tar.gz: 072fd654ff25a1aa7e990a6e846375c1db8b45fd3b1dbe4802ed439a9fbaf3dfca20f4cec22d2c9cee01953f2498582df431e1d97d6f9291529cdad384c9b965
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.6.0 (2022-09-01)
4
+
5
+ * Regenerated from discovery document revision 20220829
6
+
7
+ ### v0.5.0 (2022-08-17)
8
+
9
+ * Regenerated from discovery document revision 20220816
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.4.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.3.0 (2022-06-21)
4
17
 
5
18
  * Regenerated using generator version 0.7.0
@@ -27,6 +27,13 @@ module Google
27
27
  class AccountDetails
28
28
  include Google::Apis::Core::Hashable
29
29
 
30
+ # Contains information about account risk that indicates if the current user
31
+ # session seems low risk, unknown, or risky before you allow important actions
32
+ # to proceed.
33
+ # Corresponds to the JSON property `accountRiskVerdict`
34
+ # @return [Google::Apis::PlayintegrityV1::AccountRiskVerdict]
35
+ attr_accessor :account_risk_verdict
36
+
30
37
  # Required. Details about the licensing status of the user for the app in the
31
38
  # scope.
32
39
  # Corresponds to the JSON property `appLicensingVerdict`
@@ -39,10 +46,38 @@ module Google
39
46
 
40
47
  # Update properties of this object
41
48
  def update!(**args)
49
+ @account_risk_verdict = args[:account_risk_verdict] if args.key?(:account_risk_verdict)
42
50
  @app_licensing_verdict = args[:app_licensing_verdict] if args.key?(:app_licensing_verdict)
43
51
  end
44
52
  end
45
53
 
54
+ # Contains information about account risk that indicates if the current user
55
+ # session seems low risk, unknown, or risky before you allow important actions
56
+ # to proceed.
57
+ class AccountRiskVerdict
58
+ include Google::Apis::Core::Hashable
59
+
60
+ # Required. Indicates the account risk level of the current user session.
61
+ # Corresponds to the JSON property `risk`
62
+ # @return [String]
63
+ attr_accessor :risk
64
+
65
+ # Required. Indicates the account risk level of the current user session.
66
+ # Corresponds to the JSON property `riskLevel`
67
+ # @return [String]
68
+ attr_accessor :risk_level
69
+
70
+ def initialize(**args)
71
+ update!(**args)
72
+ end
73
+
74
+ # Update properties of this object
75
+ def update!(**args)
76
+ @risk = args[:risk] if args.key?(:risk)
77
+ @risk_level = args[:risk_level] if args.key?(:risk_level)
78
+ end
79
+ end
80
+
46
81
  # Contains the application integrity information.
47
82
  class AppIntegrity
48
83
  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.3.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220211"
25
+ REVISION = "20220829"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AccountRiskVerdict
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AppIntegrity
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -73,10 +79,20 @@ module Google
73
79
  class AccountDetails
74
80
  # @private
75
81
  class Representation < Google::Apis::Core::JsonRepresentation
82
+ property :account_risk_verdict, as: 'accountRiskVerdict', class: Google::Apis::PlayintegrityV1::AccountRiskVerdict, decorator: Google::Apis::PlayintegrityV1::AccountRiskVerdict::Representation
83
+
76
84
  property :app_licensing_verdict, as: 'appLicensingVerdict'
77
85
  end
78
86
  end
79
87
 
88
+ class AccountRiskVerdict
89
+ # @private
90
+ class Representation < Google::Apis::Core::JsonRepresentation
91
+ property :risk, as: 'risk'
92
+ property :risk_level, as: 'riskLevel'
93
+ end
94
+ end
95
+
80
96
  class AppIntegrity
81
97
  # @private
82
98
  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.3.0
4
+ version: 0.6.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-06-27 00:00:00.000000000 Z
11
+ date: 2022-09-05 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.6'
19
+ version: '0.7'
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.6'
29
+ version: '0.7'
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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.6.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: []