google-apis-alertcenter_v1beta1 0.14.0 → 0.15.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: 4b65e875c9c910841f479c8c66af56c571834f5efe86e5ff4236fff46f22b768
4
- data.tar.gz: 728b3d5577708035b6c0727137722809e1673a15cc13229bcfacafc9fe509da5
3
+ metadata.gz: 2ec5215f733bd1986ebb5bc7deafc917d5606e0f714a087e370285ed0403530b
4
+ data.tar.gz: ccefdc0730c96ef03b0bc49dd584cceb7d7a5c2a4087b7c22280c0431d346476
5
5
  SHA512:
6
- metadata.gz: b61b9f9f8fa61a31cea4f6ab0dac20653d9f1a6f5a38a43d1ccfb3f4c305153b040dfd40c7abead52f0ab27796624c4f273ee3a84ee01835804255efa746f570
7
- data.tar.gz: a5864fb54d7f726fcd6abb52ebea6b665842bae72ce0e8322605cacd432ffd968566af70ac139baccea280b067bbf177951975ff3640439a02b1d1e4f57b892c
6
+ metadata.gz: 1e102a4a79f194d0e02750a05a0d208342f80c54f54386fc1653cb6ba7d4981650b72273af0c86298beb01be7b06f87f0a1c98b2b5f91df8a8ac78a7da2f24c2
7
+ data.tar.gz: 354ee2ae5034ba31f21267256e2253a3865a1f3f7609aff217db36720b56c098b306a1e3f71707844e73f16a88bdc0a192c843489a8dd1dd3fce6c32e36ffb9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.15.0 (2021-12-21)
4
+
5
+ * Regenerated from discovery document revision 20211214
6
+ * Unspecified changes
7
+
3
8
  ### v0.14.0 (2021-10-20)
4
9
 
5
10
  * Regenerated from discovery document revision 20211012
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.authentication = # ... use the googleauth gem to create credentials
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.14.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 = "20211012"
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.14.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: 2021-10-27 00:00:00.000000000 Z
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.14.0
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.2.17
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