google-apis-playintegrity_v1 0.2.0 → 0.5.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: 55fec6f978b87332d73272090fd4bbae4402d090f32a3b4e1ba2921d0cca247b
4
- data.tar.gz: baa4aef579cfcfbd3b107544e5e578272b6f53836f209326c3a8c4a357c37dfb
3
+ metadata.gz: 29efc6dd6a19c434cac34a4bc82e6a0bef4f07e43652fdb758a4f7e5d24eb211
4
+ data.tar.gz: 61e9cfe392fd2c60e5cd4af0c862852f1d3e2613765ca689d008e4103fc2718a
5
5
  SHA512:
6
- metadata.gz: e3b14671c4f72fc0c3f049e87ad4a427ce06f91dfa6359cf8f6619cc1a142736383e6986c663563a7473d453b94e13ee29b35320e83099306db8fb76b8294857
7
- data.tar.gz: e74ba7264af235f06cef6c64c3a432f7653be121ada7d91d006f176bf58731c0026eb9c0c6046fe85253f09b83765f118c140eca6a0ead143289467c661a6881
6
+ metadata.gz: 312c3b56336dc4a66b4b062bd5761188aefa5b5585d494bc8b26f5b27a5ed835733ac9657b04e79e3dcef20305d8e84192ec38ebbc4b621def78452365578aef
7
+ data.tar.gz: 23fa7da4ca05115fdf570a6cbcaffdfb88874049aa612e12557b1702998d8d70dd4ead0fa52c508aeb2e0b74b8ee239a6409da94cb0a9aac9a43914fc55b62b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
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
+
8
+ ### v0.4.0 (2022-06-30)
9
+
10
+ * Regenerated using generator version 0.8.0
11
+
12
+ ### v0.3.0 (2022-06-21)
13
+
14
+ * Regenerated using generator version 0.7.0
15
+
3
16
  ### v0.2.0 (2022-06-06)
4
17
 
5
18
  * Regenerated using generator version 0.5.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.2.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.5.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.2.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-06-13 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
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.5'
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.2.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: []