google-apis-alertcenter_v1beta1 0.25.0 → 0.27.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: ec9980c08e6747373efe7cc58a5e4839e6a32209a8258c2d31a03e6a25993e79
4
- data.tar.gz: 61ba34fb6639a6db26e9b987375b9b742e7a240aef4baa0c7ce937db3f31234c
3
+ metadata.gz: 93dceeecf1b3ac01c60cadc2fb794ea9e0e6956662286bb9e0f10aeb6d311046
4
+ data.tar.gz: 80d9dd87abf390013dd756b6517c70f74c01f72d9fdbda52149095e2a0685593
5
5
  SHA512:
6
- metadata.gz: 3aed845a9ce8ab677fa37245704086a9f92f2937eada2c9eb5927b500891d8c8368f8174793b79e0325f48c650c205229fd325651417d75d869a44e497c9ecbd
7
- data.tar.gz: 403ecb94bcf0b4865ddc084d4d2d6e0dcbde2812dd430812bd7241f20a9f4cf05f51e393bd065bb8ef41c70de07178a428c7626282ccf2357008c6dc036742b5
6
+ metadata.gz: 550c0b8c447ca6d00e0d3f8629c59bcafe09f638dfb6b9dd42fc61e382de4003e7b495cc5bcadb815b3a77205151da3182ce9138231647eee5c0b9395a864701
7
+ data.tar.gz: c2402a92e846472b27c017c43b57973322c443e5d8811a92552ae79bfc567f1c71d011b9220f9f24a5b8ef62327e366d6bbdbdecd215c2d22c50cc5cbc52ac46
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.27.0 (2022-10-20)
4
+
5
+ * Regenerated from discovery document revision 20221017
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.26.0 (2022-10-05)
9
+
10
+ * Regenerated from discovery document revision 20221004
11
+
3
12
  ### v0.25.0 (2022-09-22)
4
13
 
5
14
  * Regenerated using generator version 0.10.0
@@ -22,6 +22,59 @@ module Google
22
22
  module Apis
23
23
  module AlertcenterV1beta1
24
24
 
25
+ # A generic alert for abusive user activity occurring with a customer.
26
+ class AbuseDetected
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # EntityList stores entities in a format that can be translated to a table in
30
+ # the Alert Center UI.
31
+ # Corresponds to the JSON property `additionalDetails`
32
+ # @return [Google::Apis::AlertcenterV1beta1::EntityList]
33
+ attr_accessor :additional_details
34
+
35
+ # Displayed after Customer abuse detected - `alert_descriptor`. If missing,
36
+ # alert name will be displayed as Customer abuse detected.
37
+ # Corresponds to the JSON property `alertDescriptor`
38
+ # @return [String]
39
+ attr_accessor :alert_descriptor
40
+
41
+ # Customizable text to display in the next steps section of the alert. Will be
42
+ # parsed as HTML to allow new paragraphs and hyperlinks.
43
+ # Corresponds to the JSON property `nextSteps`
44
+ # @return [String]
45
+ attr_accessor :next_steps
46
+
47
+ # Product that the abuse is originating from.
48
+ # Corresponds to the JSON property `product`
49
+ # @return [String]
50
+ attr_accessor :product
51
+
52
+ # Unique identifier of each alert that is onboarded.
53
+ # Corresponds to the JSON property `subAlertId`
54
+ # @return [String]
55
+ attr_accessor :sub_alert_id
56
+
57
+ # Customizable text to display in the summary section of the alert. Will be
58
+ # parsed as HTML to allow new paragraphs and hyperlinks.
59
+ # Corresponds to the JSON property `summary`
60
+ # @return [String]
61
+ attr_accessor :summary
62
+
63
+ def initialize(**args)
64
+ update!(**args)
65
+ end
66
+
67
+ # Update properties of this object
68
+ def update!(**args)
69
+ @additional_details = args[:additional_details] if args.key?(:additional_details)
70
+ @alert_descriptor = args[:alert_descriptor] if args.key?(:alert_descriptor)
71
+ @next_steps = args[:next_steps] if args.key?(:next_steps)
72
+ @product = args[:product] if args.key?(:product)
73
+ @sub_alert_id = args[:sub_alert_id] if args.key?(:sub_alert_id)
74
+ @summary = args[:summary] if args.key?(:summary)
75
+ end
76
+ end
77
+
25
78
  # Details about why an account is receiving an account suspension warning.
26
79
  class AccountSuspensionDetails
27
80
  include Google::Apis::Core::Hashable
@@ -969,6 +1022,73 @@ module Google
969
1022
  end
970
1023
  end
971
1024
 
1025
+ # Individual entity affected by, or related to, an alert.
1026
+ class Entity
1027
+ include Google::Apis::Core::Hashable
1028
+
1029
+ # Link to a Security Investigation Tool search based on this entity, if
1030
+ # available.
1031
+ # Corresponds to the JSON property `link`
1032
+ # @return [String]
1033
+ attr_accessor :link
1034
+
1035
+ # Human-readable name of this entity, such as an email address, file ID, or
1036
+ # device name.
1037
+ # Corresponds to the JSON property `name`
1038
+ # @return [String]
1039
+ attr_accessor :name
1040
+
1041
+ # Extra values beyond name. The order of values should align with headers in
1042
+ # EntityList.
1043
+ # Corresponds to the JSON property `values`
1044
+ # @return [Array<String>]
1045
+ attr_accessor :values
1046
+
1047
+ def initialize(**args)
1048
+ update!(**args)
1049
+ end
1050
+
1051
+ # Update properties of this object
1052
+ def update!(**args)
1053
+ @link = args[:link] if args.key?(:link)
1054
+ @name = args[:name] if args.key?(:name)
1055
+ @values = args[:values] if args.key?(:values)
1056
+ end
1057
+ end
1058
+
1059
+ # EntityList stores entities in a format that can be translated to a table in
1060
+ # the Alert Center UI.
1061
+ class EntityList
1062
+ include Google::Apis::Core::Hashable
1063
+
1064
+ # List of entities affected by the alert.
1065
+ # Corresponds to the JSON property `entities`
1066
+ # @return [Array<Google::Apis::AlertcenterV1beta1::Entity>]
1067
+ attr_accessor :entities
1068
+
1069
+ # Headers of the values in entities. If no value is defined in Entity, this
1070
+ # field should be empty.
1071
+ # Corresponds to the JSON property `headers`
1072
+ # @return [Array<String>]
1073
+ attr_accessor :headers
1074
+
1075
+ # Name of the key detail used to display this entity list.
1076
+ # Corresponds to the JSON property `name`
1077
+ # @return [String]
1078
+ attr_accessor :name
1079
+
1080
+ def initialize(**args)
1081
+ update!(**args)
1082
+ end
1083
+
1084
+ # Update properties of this object
1085
+ def update!(**args)
1086
+ @entities = args[:entities] if args.key?(:entities)
1087
+ @headers = args[:headers] if args.key?(:headers)
1088
+ @name = args[:name] if args.key?(:name)
1089
+ end
1090
+ end
1091
+
972
1092
  # Details of a message in phishing spike alert.
973
1093
  class GmailMessageInfo
974
1094
  include Google::Apis::Core::Hashable
@@ -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.25.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220718"
25
+ REVISION = "20221017"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module AlertcenterV1beta1
24
24
 
25
+ class AbuseDetected
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AccountSuspensionDetails
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -184,6 +190,18 @@ module Google
184
190
  include Google::Apis::Core::JsonObjectSupport
185
191
  end
186
192
 
193
+ class Entity
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class EntityList
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
187
205
  class GmailMessageInfo
188
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
207
 
@@ -382,6 +400,19 @@ module Google
382
400
  include Google::Apis::Core::JsonObjectSupport
383
401
  end
384
402
 
403
+ class AbuseDetected
404
+ # @private
405
+ class Representation < Google::Apis::Core::JsonRepresentation
406
+ property :additional_details, as: 'additionalDetails', class: Google::Apis::AlertcenterV1beta1::EntityList, decorator: Google::Apis::AlertcenterV1beta1::EntityList::Representation
407
+
408
+ property :alert_descriptor, as: 'alertDescriptor'
409
+ property :next_steps, as: 'nextSteps'
410
+ property :product, as: 'product'
411
+ property :sub_alert_id, as: 'subAlertId'
412
+ property :summary, as: 'summary'
413
+ end
414
+ end
415
+
385
416
  class AccountSuspensionDetails
386
417
  # @private
387
418
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -647,6 +678,25 @@ module Google
647
678
  end
648
679
  end
649
680
 
681
+ class Entity
682
+ # @private
683
+ class Representation < Google::Apis::Core::JsonRepresentation
684
+ property :link, as: 'link'
685
+ property :name, as: 'name'
686
+ collection :values, as: 'values'
687
+ end
688
+ end
689
+
690
+ class EntityList
691
+ # @private
692
+ class Representation < Google::Apis::Core::JsonRepresentation
693
+ collection :entities, as: 'entities', class: Google::Apis::AlertcenterV1beta1::Entity, decorator: Google::Apis::AlertcenterV1beta1::Entity::Representation
694
+
695
+ collection :headers, as: 'headers'
696
+ property :name, as: 'name'
697
+ end
698
+ end
699
+
650
700
  class GmailMessageInfo
651
701
  # @private
652
702
  class Representation < Google::Apis::Core::JsonRepresentation
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.25.0
4
+ version: 0.27.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-21 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.9.0
19
+ version: 0.9.1
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.9.0
29
+ version: 0.9.1
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-alertcenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alertcenter_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []