google-apis-playintegrity_v1 0.4.0 → 0.7.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: 14e00191ef1dabd58a81151eb111a691e8f919fd19d705830bbe601382f9bb8f
4
- data.tar.gz: 4da46731657595bd0de3db7a233877d32f5d14f712d3dec4c90c47ef14795336
3
+ metadata.gz: 9533674c4c9ca22c7338644d14a127cd3b429c08f06174c5cb3764126ad04f0c
4
+ data.tar.gz: 9fec223723cfc3ab91d59e179a025f1b96fea69e9f2278ef68d5ee2b26bc720c
5
5
  SHA512:
6
- metadata.gz: 03b841bf79842988c0daea212f4fc6b77079b5faafd673735be412708ddb0afe7fcd1324cb84842697d981a4cb95ad66a0474809056deafc288e37fc3513f90e
7
- data.tar.gz: 86468c557f3d9a92d52581e5087111e234ead14935d6da7ee5a2477641cf78f913dd8a5c0a6d500b3a11529048041f3a5144d7ce730c913b5a19b27198a5f197
6
+ metadata.gz: 4faffc0ba62717fb3bbefb4afd0e0f4fbeedb04fcf9f68abc83689ecf33fbd7fcd9395686e7e972b1b090a764e82c35729dad4c7a0fd66936c2383a9e5cf8b7f
7
+ data.tar.gz: 2b3c491133e8a48f8ada9cc0982cd98b2e7a9b250d0e233b776ab9a3abcbac1dda185def8f71b44df4b2893b91703e2d0ceb15d6e223d5045586bfd699f89f57
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.7.0 (2022-09-05)
4
+
5
+ * Regenerated from discovery document revision 20220904
6
+
7
+ ### v0.6.0 (2022-09-01)
8
+
9
+ * Regenerated from discovery document revision 20220829
10
+
11
+ ### v0.5.0 (2022-08-17)
12
+
13
+ * Regenerated from discovery document revision 20220816
14
+ * Regenerated using generator version 0.9.0
15
+
3
16
  ### v0.4.0 (2022-06-30)
4
17
 
5
18
  * Regenerated using generator version 0.8.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
@@ -52,8 +87,8 @@ module Google
52
87
  # @return [String]
53
88
  attr_accessor :app_recognition_verdict
54
89
 
55
- # Hex fingerprint of the application signing certificate. e.g. “ABCE1F....” Set
56
- # iff app_recognition_verdict != UNEVALUATED.
90
+ # The SHA256 hash of the requesting app's signing certificates (base64 web-safe
91
+ # encoded). Set iff app_recognition_verdict != UNEVALUATED.
57
92
  # Corresponds to the JSON property `certificateSha256Digest`
58
93
  # @return [Array<String>]
59
94
  attr_accessor :certificate_sha256_digest
@@ -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.4.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.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 = "20220904"
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.4.0
4
+ version: 0.7.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-09-12 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.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playintegrity_v1/v0.7.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: []