google-apis-alertcenter_v1beta1 0.8.0 → 0.9.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: 2829ce0e3fd76738764cce7a6e43908e0153803c4e6538edb3e1089f9d6c1b22
|
4
|
+
data.tar.gz: 4828ade639c25a6d9c64762d1fea8bfd13370fa716bfc4d2db27763393f0312d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bae7141475d59f4476d47e27ef01537947f6c99dfb16e5479c487a515cf1e65b922ae1d964b83e4cbdb4ce3e0b3af65ae08c60720cc0f5547fa26872ae8aab8
|
7
|
+
data.tar.gz: ba9dd953a1f33d42cba1e3586ed3131d9d47ee10e2d0a6924a811de487b5b18ae1eee0793b55f69217900be613a7e5570baec751d525fa019b3a4a1ae2223beb
|
data/CHANGELOG.md
CHANGED
@@ -1129,6 +1129,44 @@ module Google
|
|
1129
1129
|
end
|
1130
1130
|
end
|
1131
1131
|
|
1132
|
+
# An alert that gets triggered when a user enables autoforwarding to an email
|
1133
|
+
# which is outside of its domain
|
1134
|
+
class OutOfDomainForwarding
|
1135
|
+
include Google::Apis::Core::Hashable
|
1136
|
+
|
1137
|
+
# Email of the actor who triggered the alert.
|
1138
|
+
# Corresponds to the JSON property `actorEmail`
|
1139
|
+
# @return [String]
|
1140
|
+
attr_accessor :actor_email
|
1141
|
+
|
1142
|
+
# The time the email forwarding was enabled
|
1143
|
+
# Corresponds to the JSON property `enableTime`
|
1144
|
+
# @return [String]
|
1145
|
+
attr_accessor :enable_time
|
1146
|
+
|
1147
|
+
# Email to which emails are being forwarded
|
1148
|
+
# Corresponds to the JSON property `forwardeeEmail`
|
1149
|
+
# @return [String]
|
1150
|
+
attr_accessor :forwardee_email
|
1151
|
+
|
1152
|
+
# IP address of the user while enabling forwarding
|
1153
|
+
# Corresponds to the JSON property `ipAddress`
|
1154
|
+
# @return [String]
|
1155
|
+
attr_accessor :ip_address
|
1156
|
+
|
1157
|
+
def initialize(**args)
|
1158
|
+
update!(**args)
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
# Update properties of this object
|
1162
|
+
def update!(**args)
|
1163
|
+
@actor_email = args[:actor_email] if args.key?(:actor_email)
|
1164
|
+
@enable_time = args[:enable_time] if args.key?(:enable_time)
|
1165
|
+
@forwardee_email = args[:forwardee_email] if args.key?(:forwardee_email)
|
1166
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
1167
|
+
end
|
1168
|
+
end
|
1169
|
+
|
1132
1170
|
# Alert for a spike in user reported phishing. *Warning*: This type has been
|
1133
1171
|
# deprecated. Use [MailPhishing](/admin-sdk/alertcenter/reference/rest/v1beta1/
|
1134
1172
|
# MailPhishing) instead.
|
@@ -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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210619"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class OutOfDomainForwarding
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class PhishingSpike
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -627,6 +633,16 @@ module Google
|
|
627
633
|
end
|
628
634
|
end
|
629
635
|
|
636
|
+
class OutOfDomainForwarding
|
637
|
+
# @private
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
639
|
+
property :actor_email, as: 'actorEmail'
|
640
|
+
property :enable_time, as: 'enableTime'
|
641
|
+
property :forwardee_email, as: 'forwardeeEmail'
|
642
|
+
property :ip_address, as: 'ipAddress'
|
643
|
+
end
|
644
|
+
end
|
645
|
+
|
630
646
|
class PhishingSpike
|
631
647
|
# @private
|
632
648
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.9.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-06-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Google Workspace Alert Center API
|
28
34
|
V1beta1. Simple REST clients are Ruby client libraries that provide access to Google
|
29
35
|
services via their HTTP REST API endpoints. These libraries are generated and updated
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.9.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|