google-apis-alertcenter_v1beta1 0.16.0 → 0.19.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: 8929df54c85d9609bed339f0bd29c737d671acb5b3296908966c614ae8e368cf
4
- data.tar.gz: 5da2507d2137931ab06bb44e26b6bead31e7ba5168f3af8ccece43a702ce97bf
3
+ metadata.gz: 1d05c06f9eb0a715a69e222b147c4c35b079afbc6be677b2c3d83a54d3d65ee0
4
+ data.tar.gz: 1b42aa8f8fd49c67723f89bce69685a144c7076094fee6874e46990bd2e0d591
5
5
  SHA512:
6
- metadata.gz: a5b36863e24fc53ca2c6900f9baef5e8ec6c901f70fa8d198044f5462b200a2b60dd08bea5cf995db393fa2dc6b7c02cc2e56a5c7319485a8b9376adedcc5bdd
7
- data.tar.gz: 83a13d2d480d1e7debf32e6f249c62808853187b320fc269af78cfaf2331c28acb5b9879c0c589c0afb084979f3029845a765e21da975de70ddb482ef75014d3
6
+ metadata.gz: 2ca6dfa23560ea363cdfdd6d2606866824975117eb27672bf7d5217ed9534cd54bf5926a16a47d0c090f85aee6a4512d79613d1192ef683e058600ca91a8b116
7
+ data.tar.gz: 2676542867d6b4e5897fc489888db9d632dc088c394b6dc58d9fd9646fd9b26d9b971030eee16a03faeceb175555c419476bc426835efb30b77c58552447eaff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.19.0 (2022-03-31)
4
+
5
+ * Regenerated from discovery document revision 20220321
6
+
7
+ ### v0.18.0 (2022-03-09)
8
+
9
+ * Regenerated from discovery document revision 20220307
10
+
11
+ ### v0.17.0 (2022-02-23)
12
+
13
+ * Regenerated from discovery document revision 20220221
14
+
3
15
  ### v0.16.0 (2022-02-10)
4
16
 
5
17
  * Regenerated from discovery document revision 20220131
@@ -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
@@ -924,8 +924,7 @@ module Google
924
924
  # A generic empty message that you can re-use to avoid defining duplicated empty
925
925
  # messages in your APIs. A typical example is to use it as the request or the
926
926
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
927
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
928
- # `Empty` is empty JSON object ````.
927
+ # protobuf.Empty) returns (google.protobuf.Empty); `
929
928
  class Empty
930
929
  include Google::Apis::Core::Hashable
931
930
 
@@ -1019,6 +1018,11 @@ module Google
1019
1018
  # @return [String]
1020
1019
  attr_accessor :description
1021
1020
 
1021
+ # Customer domain for email template personalization.
1022
+ # Corresponds to the JSON property `domain`
1023
+ # @return [String]
1024
+ attr_accessor :domain
1025
+
1022
1026
  # A header to display above the incident message. Typically used to attach a
1023
1027
  # localized notice on the timeline for followup comms translations.
1024
1028
  # Corresponds to the JSON property `header`
@@ -1039,6 +1043,7 @@ module Google
1039
1043
  @affected_user_emails = args[:affected_user_emails] if args.key?(:affected_user_emails)
1040
1044
  @attachment_data = args[:attachment_data] if args.key?(:attachment_data)
1041
1045
  @description = args[:description] if args.key?(:description)
1046
+ @domain = args[:domain] if args.key?(:domain)
1042
1047
  @header = args[:header] if args.key?(:header)
1043
1048
  @title = args[:title] if args.key?(:title)
1044
1049
  end
@@ -1197,6 +1202,32 @@ module Google
1197
1202
  end
1198
1203
  end
1199
1204
 
1205
+ # Alert Created by the MSA team for communications necessary for continued use
1206
+ # of Google Workspace Products.
1207
+ class MandatoryServiceAnnouncement
1208
+ include Google::Apis::Core::Hashable
1209
+
1210
+ # Detailed, freeform text describing the announcement
1211
+ # Corresponds to the JSON property `description`
1212
+ # @return [String]
1213
+ attr_accessor :description
1214
+
1215
+ # One line summary of the announcement
1216
+ # Corresponds to the JSON property `title`
1217
+ # @return [String]
1218
+ attr_accessor :title
1219
+
1220
+ def initialize(**args)
1221
+ update!(**args)
1222
+ end
1223
+
1224
+ # Update properties of this object
1225
+ def update!(**args)
1226
+ @description = args[:description] if args.key?(:description)
1227
+ @title = args[:title] if args.key?(:title)
1228
+ end
1229
+ end
1230
+
1200
1231
  # Proto that contains match information from the condition part of the rule.
1201
1232
  class MatchInfo
1202
1233
  include Google::Apis::Core::Hashable
@@ -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.16.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220131"
25
+ REVISION = "20220321"
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.16.0
4
+ version: 0.19.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-02-14 00:00:00.000000000 Z
11
+ date: 2022-04-04 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.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.19.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: []