google-apis-playintegrity_v1 0.4.0 → 0.5.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: 14e00191ef1dabd58a81151eb111a691e8f919fd19d705830bbe601382f9bb8f
4
- data.tar.gz: 4da46731657595bd0de3db7a233877d32f5d14f712d3dec4c90c47ef14795336
3
+ metadata.gz: 29efc6dd6a19c434cac34a4bc82e6a0bef4f07e43652fdb758a4f7e5d24eb211
4
+ data.tar.gz: 61e9cfe392fd2c60e5cd4af0c862852f1d3e2613765ca689d008e4103fc2718a
5
5
  SHA512:
6
- metadata.gz: 03b841bf79842988c0daea212f4fc6b77079b5faafd673735be412708ddb0afe7fcd1324cb84842697d981a4cb95ad66a0474809056deafc288e37fc3513f90e
7
- data.tar.gz: 86468c557f3d9a92d52581e5087111e234ead14935d6da7ee5a2477641cf78f913dd8a5c0a6d500b3a11529048041f3a5144d7ce730c913b5a19b27198a5f197
6
+ metadata.gz: 312c3b56336dc4a66b4b062bd5761188aefa5b5585d494bc8b26f5b27a5ed835733ac9657b04e79e3dcef20305d8e84192ec38ebbc4b621def78452365578aef
7
+ data.tar.gz: 23fa7da4ca05115fdf570a6cbcaffdfb88874049aa612e12557b1702998d8d70dd4ead0fa52c508aeb2e0b74b8ee239a6409da94cb0a9aac9a43914fc55b62b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-playintegrity_v1
2
2
 
3
+ ### v0.5.0 (2022-08-17)
4
+
5
+ * Regenerated from discovery document revision 20220816
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.4.0 (2022-06-30)
4
9
 
5
10
  * 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,32 @@ 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 `riskLevel`
62
+ # @return [String]
63
+ attr_accessor :risk_level
64
+
65
+ def initialize(**args)
66
+ update!(**args)
67
+ end
68
+
69
+ # Update properties of this object
70
+ def update!(**args)
71
+ @risk_level = args[:risk_level] if args.key?(:risk_level)
72
+ end
73
+ end
74
+
46
75
  # Contains the application integrity information.
47
76
  class AppIntegrity
48
77
  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.4.0"
19
+ GEM_VERSION = "0.5.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 = "20220816"
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,19 @@ 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_level, as: 'riskLevel'
92
+ end
93
+ end
94
+
80
95
  class AppIntegrity
81
96
  # @private
82
97
  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.5.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-08-22 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.5.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: []