google-apis-alertcenter_v1beta1 0.29.0 → 0.31.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: 398b5e3cea08ea6cc7d83c5a10d70bf68ecb328825ae48540c671bf4764a1716
4
- data.tar.gz: dede369138c0aab8481dac7b14400ae5aa538326695fb26fdbf485d146fc3c14
3
+ metadata.gz: deda3be38fb424b28584e72f751ad547dfa5f955e16cb3a510d1d72a301fd404
4
+ data.tar.gz: '0648a6729f33beafd44a04091174644a035d2a1f70404b1dd8aff6bf03bc5d0f'
5
5
  SHA512:
6
- metadata.gz: 93bd680818adb5202a3a6ccf6a3341da1c13e180c6506ee1ea412ccc74e387a0454108cdcf19b67e75cbf3e54deca2b635ef128c9ac286f6a01d214130a87537
7
- data.tar.gz: 2fd2d34172c1202f528debc370fbac5a7c601a2c776b575609bc63efc2dc692ae21974a4090399a7e4a16b063cb379a40661e906d1e405ff393c143d95e9a7e3
6
+ metadata.gz: ef5f6f7d172d7c2e185a85af2a61941f92a9b878acb03115facdb6c3907084341474645cddef372fec7fe0547d0dd23687226fefdd2770b965d625d4295abea3
7
+ data.tar.gz: 9df02a353e2d50ca25ac2d42485edecdbdb1ffb3d7f4427172c2278a10dfe87b2a5f04685d3266d836abfc452968c0bd0e401540d11dee4178bba6243b4c376f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.31.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230313
6
+
7
+ ### v0.30.0 (2023-02-15)
8
+
9
+ * Regenerated from discovery document revision 20230214
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.29.0 (2023-01-29)
4
13
 
5
14
  * Regenerated from discovery document revision 20230123
@@ -22,59 +22,6 @@ 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
-
78
25
  # Details about why an account is receiving an account suspension warning.
79
26
  class AccountSuspensionDetails
80
27
  include Google::Apis::Core::Hashable
@@ -1031,73 +978,6 @@ module Google
1031
978
  end
1032
979
  end
1033
980
 
1034
- # Individual entity affected by, or related to, an alert.
1035
- class Entity
1036
- include Google::Apis::Core::Hashable
1037
-
1038
- # Link to a Security Investigation Tool search based on this entity, if
1039
- # available.
1040
- # Corresponds to the JSON property `link`
1041
- # @return [String]
1042
- attr_accessor :link
1043
-
1044
- # Human-readable name of this entity, such as an email address, file ID, or
1045
- # device name.
1046
- # Corresponds to the JSON property `name`
1047
- # @return [String]
1048
- attr_accessor :name
1049
-
1050
- # Extra values beyond name. The order of values should align with headers in
1051
- # EntityList.
1052
- # Corresponds to the JSON property `values`
1053
- # @return [Array<String>]
1054
- attr_accessor :values
1055
-
1056
- def initialize(**args)
1057
- update!(**args)
1058
- end
1059
-
1060
- # Update properties of this object
1061
- def update!(**args)
1062
- @link = args[:link] if args.key?(:link)
1063
- @name = args[:name] if args.key?(:name)
1064
- @values = args[:values] if args.key?(:values)
1065
- end
1066
- end
1067
-
1068
- # EntityList stores entities in a format that can be translated to a table in
1069
- # the Alert Center UI.
1070
- class EntityList
1071
- include Google::Apis::Core::Hashable
1072
-
1073
- # List of entities affected by the alert.
1074
- # Corresponds to the JSON property `entities`
1075
- # @return [Array<Google::Apis::AlertcenterV1beta1::Entity>]
1076
- attr_accessor :entities
1077
-
1078
- # Headers of the values in entities. If no value is defined in Entity, this
1079
- # field should be empty.
1080
- # Corresponds to the JSON property `headers`
1081
- # @return [Array<String>]
1082
- attr_accessor :headers
1083
-
1084
- # Name of the key detail used to display this entity list.
1085
- # Corresponds to the JSON property `name`
1086
- # @return [String]
1087
- attr_accessor :name
1088
-
1089
- def initialize(**args)
1090
- update!(**args)
1091
- end
1092
-
1093
- # Update properties of this object
1094
- def update!(**args)
1095
- @entities = args[:entities] if args.key?(:entities)
1096
- @headers = args[:headers] if args.key?(:headers)
1097
- @name = args[:name] if args.key?(:name)
1098
- end
1099
- end
1100
-
1101
981
  # Details of a message in phishing spike alert.
1102
982
  class GmailMessageInfo
1103
983
  include Google::Apis::Core::Hashable
@@ -1137,6 +1017,11 @@ module Google
1137
1017
  # @return [String]
1138
1018
  attr_accessor :recipient
1139
1019
 
1020
+ # The sent time of the email.
1021
+ # Corresponds to the JSON property `sentTime`
1022
+ # @return [String]
1023
+ attr_accessor :sent_time
1024
+
1140
1025
  # The email subject text (only available for reported emails).
1141
1026
  # Corresponds to the JSON property `subjectText`
1142
1027
  # @return [String]
@@ -1155,6 +1040,7 @@ module Google
1155
1040
  @message_body_snippet = args[:message_body_snippet] if args.key?(:message_body_snippet)
1156
1041
  @message_id = args[:message_id] if args.key?(:message_id)
1157
1042
  @recipient = args[:recipient] if args.key?(:recipient)
1043
+ @sent_time = args[:sent_time] if args.key?(:sent_time)
1158
1044
  @subject_text = args[:subject_text] if args.key?(:subject_text)
1159
1045
  end
1160
1046
  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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230123"
25
+ REVISION = "20230313"
26
26
  end
27
27
  end
28
28
  end
@@ -22,12 +22,6 @@ 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
-
31
25
  class AccountSuspensionDetails
32
26
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
27
 
@@ -190,18 +184,6 @@ module Google
190
184
  include Google::Apis::Core::JsonObjectSupport
191
185
  end
192
186
 
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
-
205
187
  class GmailMessageInfo
206
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
189
 
@@ -430,19 +412,6 @@ module Google
430
412
  include Google::Apis::Core::JsonObjectSupport
431
413
  end
432
414
 
433
- class AbuseDetected
434
- # @private
435
- class Representation < Google::Apis::Core::JsonRepresentation
436
- property :additional_details, as: 'additionalDetails', class: Google::Apis::AlertcenterV1beta1::EntityList, decorator: Google::Apis::AlertcenterV1beta1::EntityList::Representation
437
-
438
- property :alert_descriptor, as: 'alertDescriptor'
439
- property :next_steps, as: 'nextSteps'
440
- property :product, as: 'product'
441
- property :sub_alert_id, as: 'subAlertId'
442
- property :summary, as: 'summary'
443
- end
444
- end
445
-
446
415
  class AccountSuspensionDetails
447
416
  # @private
448
417
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -708,25 +677,6 @@ module Google
708
677
  end
709
678
  end
710
679
 
711
- class Entity
712
- # @private
713
- class Representation < Google::Apis::Core::JsonRepresentation
714
- property :link, as: 'link'
715
- property :name, as: 'name'
716
- collection :values, as: 'values'
717
- end
718
- end
719
-
720
- class EntityList
721
- # @private
722
- class Representation < Google::Apis::Core::JsonRepresentation
723
- collection :entities, as: 'entities', class: Google::Apis::AlertcenterV1beta1::Entity, decorator: Google::Apis::AlertcenterV1beta1::Entity::Representation
724
-
725
- collection :headers, as: 'headers'
726
- property :name, as: 'name'
727
- end
728
- end
729
-
730
680
  class GmailMessageInfo
731
681
  # @private
732
682
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -737,6 +687,7 @@ module Google
737
687
  property :message_body_snippet, as: 'messageBodySnippet'
738
688
  property :message_id, as: 'messageId'
739
689
  property :recipient, as: 'recipient'
690
+ property :sent_time, as: 'sentTime'
740
691
  property :subject_text, as: 'subjectText'
741
692
  end
742
693
  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.29.0
4
+ version: 0.31.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: 2023-01-29 00:00:00.000000000 Z
11
+ date: 2023-03-19 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.1
19
+ version: 0.11.0
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.1
29
+ version: 0.11.0
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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.31.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: []