google-apis-alertcenter_v1beta1 0.11.0 → 0.12.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: e8375992ec71f0c9740fa9e3f3f878371157daf410d56c063bef3fc654553441
|
4
|
+
data.tar.gz: a395a1c9ec8056791e1a3d894f8d55aaa5e51443f71d8c1592ed1be745745733
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b621b73dbd9cf1aa236d77096074255afbb7c891e4bfece85f4b8bf07563acbdc9b2ba06084e12e8a6191921abc12f9b94ce580905c93e1cf8bdf1ead6ca928
|
7
|
+
data.tar.gz: 82e57318941acb193a1fea6b951ec778098253a9cbbab2b366807376277ea7f2886102023852dd54b7b7c9f0e94611cd2179d67f05ab6eb165ffef37a196feca
|
data/CHANGELOG.md
CHANGED
@@ -423,6 +423,51 @@ module Google
|
|
423
423
|
end
|
424
424
|
end
|
425
425
|
|
426
|
+
# An outage incident reported by Google for a Google Workspace (formerly G Suite)
|
427
|
+
# application.
|
428
|
+
class AppsOutage
|
429
|
+
include Google::Apis::Core::Hashable
|
430
|
+
|
431
|
+
# Link to the outage event in Google Workspace Status Dashboard
|
432
|
+
# Corresponds to the JSON property `dashboardUri`
|
433
|
+
# @return [String]
|
434
|
+
attr_accessor :dashboard_uri
|
435
|
+
|
436
|
+
# Timestamp by which the next update shall be provided.
|
437
|
+
# Corresponds to the JSON property `nextUpdateTime`
|
438
|
+
# @return [String]
|
439
|
+
attr_accessor :next_update_time
|
440
|
+
|
441
|
+
# List of products impacted by the outage.
|
442
|
+
# Corresponds to the JSON property `products`
|
443
|
+
# @return [Array<String>]
|
444
|
+
attr_accessor :products
|
445
|
+
|
446
|
+
# Timestamp of the outage expected or confirmed resolution. (Used only when
|
447
|
+
# known).
|
448
|
+
# Corresponds to the JSON property `resolutionTime`
|
449
|
+
# @return [String]
|
450
|
+
attr_accessor :resolution_time
|
451
|
+
|
452
|
+
# Current outage status.
|
453
|
+
# Corresponds to the JSON property `status`
|
454
|
+
# @return [String]
|
455
|
+
attr_accessor :status
|
456
|
+
|
457
|
+
def initialize(**args)
|
458
|
+
update!(**args)
|
459
|
+
end
|
460
|
+
|
461
|
+
# Update properties of this object
|
462
|
+
def update!(**args)
|
463
|
+
@dashboard_uri = args[:dashboard_uri] if args.key?(:dashboard_uri)
|
464
|
+
@next_update_time = args[:next_update_time] if args.key?(:next_update_time)
|
465
|
+
@products = args[:products] if args.key?(:products)
|
466
|
+
@resolution_time = args[:resolution_time] if args.key?(:resolution_time)
|
467
|
+
@status = args[:status] if args.key?(:status)
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
426
471
|
# Attachment with application-specific information about an alert.
|
427
472
|
class Attachment
|
428
473
|
include Google::Apis::Core::Hashable
|
@@ -1129,44 +1174,6 @@ module Google
|
|
1129
1174
|
end
|
1130
1175
|
end
|
1131
1176
|
|
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
|
-
|
1170
1177
|
# Alert for a spike in user reported phishing. *Warning*: This type has been
|
1171
1178
|
# deprecated. Use [MailPhishing](/admin-sdk/alertcenter/reference/rest/v1beta1/
|
1172
1179
|
# 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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210720"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class AppsOutage
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class Attachment
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -214,12 +220,6 @@ module Google
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
215
221
|
end
|
216
222
|
|
217
|
-
class OutOfDomainForwarding
|
218
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
-
|
220
|
-
include Google::Apis::Core::JsonObjectSupport
|
221
|
-
end
|
222
|
-
|
223
223
|
class PhishingSpike
|
224
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
225
|
|
@@ -410,6 +410,17 @@ module Google
|
|
410
410
|
end
|
411
411
|
end
|
412
412
|
|
413
|
+
class AppsOutage
|
414
|
+
# @private
|
415
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
416
|
+
property :dashboard_uri, as: 'dashboardUri'
|
417
|
+
property :next_update_time, as: 'nextUpdateTime'
|
418
|
+
collection :products, as: 'products'
|
419
|
+
property :resolution_time, as: 'resolutionTime'
|
420
|
+
property :status, as: 'status'
|
421
|
+
end
|
422
|
+
end
|
423
|
+
|
413
424
|
class Attachment
|
414
425
|
# @private
|
415
426
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -633,16 +644,6 @@ module Google
|
|
633
644
|
end
|
634
645
|
end
|
635
646
|
|
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
|
-
|
646
647
|
class PhishingSpike
|
647
648
|
# @private
|
648
649
|
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.
|
4
|
+
version: 0.12.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-
|
11
|
+
date: 2021-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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/master/generated/google-apis-alertcenter_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|