google-apis-alertcenter_v1beta1 0.15.0 → 0.18.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: 2ec5215f733bd1986ebb5bc7deafc917d5606e0f714a087e370285ed0403530b
4
- data.tar.gz: ccefdc0730c96ef03b0bc49dd584cceb7d7a5c2a4087b7c22280c0431d346476
3
+ metadata.gz: '0852f456b7529c0142a8c93b63c4d1b23b1133045a1c20a1fac11f26f8ac45f5'
4
+ data.tar.gz: c6424fdd8abad4f3817fac3d3821aef4604e599b054ea8ef763783d9220c0279
5
5
  SHA512:
6
- metadata.gz: 1e102a4a79f194d0e02750a05a0d208342f80c54f54386fc1653cb6ba7d4981650b72273af0c86298beb01be7b06f87f0a1c98b2b5f91df8a8ac78a7da2f24c2
7
- data.tar.gz: 354ee2ae5034ba31f21267256e2253a3865a1f3f7609aff217db36720b56c098b306a1e3f71707844e73f16a88bdc0a192c843489a8dd1dd3fce6c32e36ffb9c
6
+ metadata.gz: 95b78598be7845ea3b4b02eaca48c2e1688e543c93bf7151d476bd3e6e59b926d1ef69f5600c29325959ca3c368239ae3e858f79ae39dc8703c555a06e3b6b70
7
+ data.tar.gz: 3ded884b0ac2994aabab0be18550038ceca1477e3b2749333ea422396f260b1f3dc842cbf5843dfeed1728bc134580ddebbf80c22da6d50fc4f06f15b4ca8200
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.18.0 (2022-03-09)
4
+
5
+ * Regenerated from discovery document revision 20220307
6
+
7
+ ### v0.17.0 (2022-02-23)
8
+
9
+ * Regenerated from discovery document revision 20220221
10
+
11
+ ### v0.16.0 (2022-02-10)
12
+
13
+ * Regenerated from discovery document revision 20220131
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.15.0 (2021-12-21)
4
17
 
5
18
  * Regenerated from discovery document revision 20211214
@@ -391,7 +391,7 @@ module Google
391
391
  # Optional. `etag` is used for optimistic concurrency control as a way to help
392
392
  # prevent simultaneous updates of an alert metadata from overwriting each other.
393
393
  # It is strongly suggested that systems make use of the `etag` in the read-
394
- # modify-write cycle to perform metatdata updates in order to avoid race
394
+ # modify-write cycle to perform metadata updates in order to avoid race
395
395
  # conditions: An `etag` is returned in the response which contains alert
396
396
  # metadata, and systems are expected to put that etag in the request to update
397
397
  # alert metadata to ensure that their change will be applied to the same version
@@ -1019,6 +1019,11 @@ module Google
1019
1019
  # @return [String]
1020
1020
  attr_accessor :description
1021
1021
 
1022
+ # Customer domain for email template personalization.
1023
+ # Corresponds to the JSON property `domain`
1024
+ # @return [String]
1025
+ attr_accessor :domain
1026
+
1022
1027
  # A header to display above the incident message. Typically used to attach a
1023
1028
  # localized notice on the timeline for followup comms translations.
1024
1029
  # Corresponds to the JSON property `header`
@@ -1039,6 +1044,7 @@ module Google
1039
1044
  @affected_user_emails = args[:affected_user_emails] if args.key?(:affected_user_emails)
1040
1045
  @attachment_data = args[:attachment_data] if args.key?(:attachment_data)
1041
1046
  @description = args[:description] if args.key?(:description)
1047
+ @domain = args[:domain] if args.key?(:domain)
1042
1048
  @header = args[:header] if args.key?(:header)
1043
1049
  @title = args[:title] if args.key?(:title)
1044
1050
  end
@@ -1197,6 +1203,32 @@ module Google
1197
1203
  end
1198
1204
  end
1199
1205
 
1206
+ # Alert Created by the MSA team for communications necessary for continued use
1207
+ # of Google Workspace Products.
1208
+ class MandatoryServiceAnnouncement
1209
+ include Google::Apis::Core::Hashable
1210
+
1211
+ # Detailed, freeform text describing the announcement
1212
+ # Corresponds to the JSON property `description`
1213
+ # @return [String]
1214
+ attr_accessor :description
1215
+
1216
+ # One line summary of the announcement
1217
+ # Corresponds to the JSON property `title`
1218
+ # @return [String]
1219
+ attr_accessor :title
1220
+
1221
+ def initialize(**args)
1222
+ update!(**args)
1223
+ end
1224
+
1225
+ # Update properties of this object
1226
+ def update!(**args)
1227
+ @description = args[:description] if args.key?(:description)
1228
+ @title = args[:title] if args.key?(:title)
1229
+ end
1230
+ end
1231
+
1200
1232
  # Proto that contains match information from the condition part of the rule.
1201
1233
  class MatchInfo
1202
1234
  include Google::Apis::Core::Hashable
@@ -1226,8 +1258,8 @@ module Google
1226
1258
  class MergeInfo
1227
1259
  include Google::Apis::Core::Hashable
1228
1260
 
1229
- # New alert ID. Reference the [google.apps.alertcenter.Alert] with this ID for
1230
- # the current state.
1261
+ # Optional. New alert ID. Reference the [google.apps.alertcenter.Alert] with
1262
+ # this ID for the current state.
1231
1263
  # Corresponds to the JSON property `newAlertId`
1232
1264
  # @return [String]
1233
1265
  attr_accessor :new_alert_id
@@ -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.15.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211214"
25
+ REVISION = "20220307"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,12 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class MandatoryServiceAnnouncement
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
223
229
  class MatchInfo
224
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
231
 
@@ -611,6 +617,7 @@ module Google
611
617
  property :attachment_data, as: 'attachmentData', class: Google::Apis::AlertcenterV1beta1::Attachment, decorator: Google::Apis::AlertcenterV1beta1::Attachment::Representation
612
618
 
613
619
  property :description, as: 'description'
620
+ property :domain, as: 'domain'
614
621
  property :header, as: 'header'
615
622
  property :title, as: 'title'
616
623
  end
@@ -665,6 +672,14 @@ module Google
665
672
  end
666
673
  end
667
674
 
675
+ class MandatoryServiceAnnouncement
676
+ # @private
677
+ class Representation < Google::Apis::Core::JsonRepresentation
678
+ property :description, as: 'description'
679
+ property :title, as: 'title'
680
+ end
681
+ end
682
+
668
683
  class MatchInfo
669
684
  # @private
670
685
  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.15.0
4
+ version: 0.18.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-14 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.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.18.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.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Workspace Alert Center API V1beta1