google-apis-alertcenter_v1beta1 0.3.0 → 0.4.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97dd9fd5488de919ff710e8280d815a2ebf7e090e29f77d3f34d091220d4cc10
|
4
|
+
data.tar.gz: 1f90db94615646bfebcfc7ce83bf1e741fd086ccfb9a0de8d7363e53ada0159d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f77687cc6f9db30aadbca408d3475fc8f193d2ee7b970ada8f1847f6ef0273d7144d014cbf3a30138c6ac44104587d32db5c90461ee4289b6b467e9a1a5d4737
|
7
|
+
data.tar.gz: d7056bf2236de059a08681c95c0f3e4a058fa2b7d3920f4b74a38850a04608a591d0f0351e962a72779dcc84b101e80da4f22552dc514bdc737b7c66f2818cc3
|
data/CHANGELOG.md
CHANGED
@@ -47,7 +47,21 @@ module Google
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
-
#
|
50
|
+
# Metadata related to the action.
|
51
|
+
class ActionInfo
|
52
|
+
include Google::Apis::Core::Hashable
|
53
|
+
|
54
|
+
def initialize(**args)
|
55
|
+
update!(**args)
|
56
|
+
end
|
57
|
+
|
58
|
+
# Update properties of this object
|
59
|
+
def update!(**args)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
# Alerts from Google Workspace Security Center rules service configured by an
|
64
|
+
# admin.
|
51
65
|
class ActivityRule
|
52
66
|
include Google::Apis::Core::Hashable
|
53
67
|
|
@@ -702,8 +716,8 @@ module Google
|
|
702
716
|
class DlpRuleViolation
|
703
717
|
include Google::Apis::Core::Hashable
|
704
718
|
|
705
|
-
# Common alert information about violated rules that are configured by
|
706
|
-
# administrators.
|
719
|
+
# Common alert information about violated rules that are configured by Google
|
720
|
+
# Workspace administrators.
|
707
721
|
# Corresponds to the JSON property `ruleViolationInfo`
|
708
722
|
# @return [Google::Apis::AlertcenterV1beta1::RuleViolationInfo]
|
709
723
|
attr_accessor :rule_violation_info
|
@@ -841,7 +855,7 @@ module Google
|
|
841
855
|
end
|
842
856
|
end
|
843
857
|
|
844
|
-
# An incident reported by Google Operations for a
|
858
|
+
# An incident reported by Google Operations for a Google Workspace application.
|
845
859
|
class GoogleOperations
|
846
860
|
include Google::Apis::Core::Hashable
|
847
861
|
|
@@ -861,7 +875,7 @@ module Google
|
|
861
875
|
# @return [String]
|
862
876
|
attr_accessor :description
|
863
877
|
|
864
|
-
# A header to display above the incident message.
|
878
|
+
# A header to display above the incident message. Typically used to attach a
|
865
879
|
# localized notice on the timeline for followup comms translations.
|
866
880
|
# Corresponds to the JSON property `header`
|
867
881
|
# @return [String]
|
@@ -1227,8 +1241,8 @@ module Google
|
|
1227
1241
|
end
|
1228
1242
|
end
|
1229
1243
|
|
1230
|
-
# Common alert information about violated rules that are configured by
|
1231
|
-
# administrators.
|
1244
|
+
# Common alert information about violated rules that are configured by Google
|
1245
|
+
# Workspace administrators.
|
1232
1246
|
class RuleViolationInfo
|
1233
1247
|
include Google::Apis::Core::Hashable
|
1234
1248
|
|
@@ -1271,6 +1285,11 @@ module Google
|
|
1271
1285
|
# @return [String]
|
1272
1286
|
attr_accessor :trigger
|
1273
1287
|
|
1288
|
+
# Metadata related to the triggered actions.
|
1289
|
+
# Corresponds to the JSON property `triggeredActionInfo`
|
1290
|
+
# @return [Array<Google::Apis::AlertcenterV1beta1::ActionInfo>]
|
1291
|
+
attr_accessor :triggered_action_info
|
1292
|
+
|
1274
1293
|
# Actions applied as a consequence of the rule being triggered.
|
1275
1294
|
# Corresponds to the JSON property `triggeredActionTypes`
|
1276
1295
|
# @return [Array<String>]
|
@@ -1295,6 +1314,7 @@ module Google
|
|
1295
1314
|
@rule_info = args[:rule_info] if args.key?(:rule_info)
|
1296
1315
|
@suppressed_action_types = args[:suppressed_action_types] if args.key?(:suppressed_action_types)
|
1297
1316
|
@trigger = args[:trigger] if args.key?(:trigger)
|
1317
|
+
@triggered_action_info = args[:triggered_action_info] if args.key?(:triggered_action_info)
|
1298
1318
|
@triggered_action_types = args[:triggered_action_types] if args.key?(:triggered_action_types)
|
1299
1319
|
@triggering_user_email = args[:triggering_user_email] if args.key?(:triggering_user_email)
|
1300
1320
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AlertcenterV1beta1
|
18
18
|
# Version of the google-apis-alertcenter_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210303"
|
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 ActionInfo
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class ActivityRule
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -295,6 +301,12 @@ module Google
|
|
295
301
|
end
|
296
302
|
end
|
297
303
|
|
304
|
+
class ActionInfo
|
305
|
+
# @private
|
306
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
298
310
|
class ActivityRule
|
299
311
|
# @private
|
300
312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -647,6 +659,8 @@ module Google
|
|
647
659
|
|
648
660
|
collection :suppressed_action_types, as: 'suppressedActionTypes'
|
649
661
|
property :trigger, as: 'trigger'
|
662
|
+
collection :triggered_action_info, as: 'triggeredActionInfo', class: Google::Apis::AlertcenterV1beta1::ActionInfo, decorator: Google::Apis::AlertcenterV1beta1::ActionInfo::Representation
|
663
|
+
|
650
664
|
collection :triggered_action_types, as: 'triggeredActionTypes'
|
651
665
|
property :triggering_user_email, as: 'triggeringUserEmail'
|
652
666
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alertcenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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: 2021-03-
|
11
|
+
date: 2021-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.4.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|