google-apis-alertcenter_v1beta1 0.14.0 → 0.15.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: 2ec5215f733bd1986ebb5bc7deafc917d5606e0f714a087e370285ed0403530b
|
4
|
+
data.tar.gz: ccefdc0730c96ef03b0bc49dd584cceb7d7a5c2a4087b7c22280c0431d346476
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e102a4a79f194d0e02750a05a0d208342f80c54f54386fc1653cb6ba7d4981650b72273af0c86298beb01be7b06f87f0a1c98b2b5f91df8a8ac78a7da2f24c2
|
7
|
+
data.tar.gz: 354ee2ae5034ba31f21267256e2253a3865a1f3f7609aff217db36720b56c098b306a1e3f71707844e73f16a88bdc0a192c843489a8dd1dd3fce6c32e36ffb9c
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/alertcenter_v1beta1"
|
|
51
51
|
client = Google::Apis::AlertcenterV1beta1::AlertCenterService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -492,6 +492,16 @@ module Google
|
|
492
492
|
# @return [String]
|
493
493
|
attr_accessor :dashboard_uri
|
494
494
|
|
495
|
+
# Incident tracking ID.
|
496
|
+
# Corresponds to the JSON property `incidentTrackingId`
|
497
|
+
# @return [String]
|
498
|
+
attr_accessor :incident_tracking_id
|
499
|
+
|
500
|
+
# New alert tracking numbers.
|
501
|
+
# Corresponds to the JSON property `mergeInfo`
|
502
|
+
# @return [Google::Apis::AlertcenterV1beta1::MergeInfo]
|
503
|
+
attr_accessor :merge_info
|
504
|
+
|
495
505
|
# Timestamp by which the next update is expected to arrive.
|
496
506
|
# Corresponds to the JSON property `nextUpdateTime`
|
497
507
|
# @return [String]
|
@@ -520,6 +530,8 @@ module Google
|
|
520
530
|
# Update properties of this object
|
521
531
|
def update!(**args)
|
522
532
|
@dashboard_uri = args[:dashboard_uri] if args.key?(:dashboard_uri)
|
533
|
+
@incident_tracking_id = args[:incident_tracking_id] if args.key?(:incident_tracking_id)
|
534
|
+
@merge_info = args[:merge_info] if args.key?(:merge_info)
|
523
535
|
@next_update_time = args[:next_update_time] if args.key?(:next_update_time)
|
524
536
|
@products = args[:products] if args.key?(:products)
|
525
537
|
@resolution_time = args[:resolution_time] if args.key?(:resolution_time)
|
@@ -1210,6 +1222,32 @@ module Google
|
|
1210
1222
|
end
|
1211
1223
|
end
|
1212
1224
|
|
1225
|
+
# New alert tracking numbers.
|
1226
|
+
class MergeInfo
|
1227
|
+
include Google::Apis::Core::Hashable
|
1228
|
+
|
1229
|
+
# New alert ID. Reference the [google.apps.alertcenter.Alert] with this ID for
|
1230
|
+
# the current state.
|
1231
|
+
# Corresponds to the JSON property `newAlertId`
|
1232
|
+
# @return [String]
|
1233
|
+
attr_accessor :new_alert_id
|
1234
|
+
|
1235
|
+
# The new tracking ID from the parent incident.
|
1236
|
+
# Corresponds to the JSON property `newIncidentTrackingId`
|
1237
|
+
# @return [String]
|
1238
|
+
attr_accessor :new_incident_tracking_id
|
1239
|
+
|
1240
|
+
def initialize(**args)
|
1241
|
+
update!(**args)
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
# Update properties of this object
|
1245
|
+
def update!(**args)
|
1246
|
+
@new_alert_id = args[:new_alert_id] if args.key?(:new_alert_id)
|
1247
|
+
@new_incident_tracking_id = args[:new_incident_tracking_id] if args.key?(:new_incident_tracking_id)
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
|
1213
1251
|
# Settings for callback notifications. For more details see [Google Workspace
|
1214
1252
|
# Alert Notification](https://developers.google.com/admin-sdk/alertcenter/guides/
|
1215
1253
|
# notifications).
|
@@ -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.15.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 = "20211214"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class MergeInfo
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class Notification
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -444,6 +450,9 @@ module Google
|
|
444
450
|
# @private
|
445
451
|
class Representation < Google::Apis::Core::JsonRepresentation
|
446
452
|
property :dashboard_uri, as: 'dashboardUri'
|
453
|
+
property :incident_tracking_id, as: 'incidentTrackingId'
|
454
|
+
property :merge_info, as: 'mergeInfo', class: Google::Apis::AlertcenterV1beta1::MergeInfo, decorator: Google::Apis::AlertcenterV1beta1::MergeInfo::Representation
|
455
|
+
|
447
456
|
property :next_update_time, as: 'nextUpdateTime'
|
448
457
|
collection :products, as: 'products'
|
449
458
|
property :resolution_time, as: 'resolutionTime'
|
@@ -666,6 +675,14 @@ module Google
|
|
666
675
|
end
|
667
676
|
end
|
668
677
|
|
678
|
+
class MergeInfo
|
679
|
+
# @private
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
681
|
+
property :new_alert_id, as: 'newAlertId'
|
682
|
+
property :new_incident_tracking_id, as: 'newIncidentTrackingId'
|
683
|
+
end
|
684
|
+
end
|
685
|
+
|
669
686
|
class Notification
|
670
687
|
# @private
|
671
688
|
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.15.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:
|
11
|
+
date: 2022-01-10 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/main/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.15.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Workspace Alert Center API V1beta1
|