google-apis-alertcenter_v1beta1 0.26.0 → 0.28.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: 5e51ea1ba6b4f255438defe3399d619cc5abd8219a7638fba2b62bff52000558
4
- data.tar.gz: c5d865107384d030fd4264eceb57449fb475a34eeb998689bae598cd30fdd289
3
+ metadata.gz: 57a7038ee427b7f443b83e4fbdbf89cfcf49dd5c62e374b6c97d060065a286a7
4
+ data.tar.gz: 18d83b7e5877c7128323e4c160f8a54944f9b7571eb30358d68f15438c2b080a
5
5
  SHA512:
6
- metadata.gz: e3440d51a26a027e11b48b5087c1c59c0e381ea853de7431f9d082a33fc77f5158d1ba4dd6595594aa7a26d313d27a960731e4872786a945d34c0ca3eb3072cd
7
- data.tar.gz: 25f9475df4443effd9d2b3318a52a6a5c3a7b1ca2bca41083c0124e9590bbc5b032118a79094595325e3cf3c5ff3a2a3bd9f4a79ad52aee040b566bfabec020f
6
+ metadata.gz: c7cd85de50c9f51445c04f0696ed70317dca315218fb5506d57f1778fcd010fadd0c02e7d566333d93d57447822a05e0499246cc86e8fb80543d91b28f2964fb
7
+ data.tar.gz: 9e92f18cb79704d7620a4f47667508ec8646f6ded1e1cf1c8adb6d9ef0b3c51b30b6c03106c496199878f7d86e3fb2433a6c7d5593baa0620c80cdba3274c0f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.28.0 (2022-12-14)
4
+
5
+ * Regenerated from discovery document revision 20221212
6
+
7
+ ### v0.27.0 (2022-10-20)
8
+
9
+ * Regenerated from discovery document revision 20221017
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.26.0 (2022-10-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20221004
@@ -38,6 +38,12 @@ module Google
38
38
  # @return [String]
39
39
  attr_accessor :alert_descriptor
40
40
 
41
+ # Customizable text to display in the next steps section of the alert. Will be
42
+ # parsed as HTML to allow new paragraphs and hyperlinks.
43
+ # Corresponds to the JSON property `nextSteps`
44
+ # @return [String]
45
+ attr_accessor :next_steps
46
+
41
47
  # Product that the abuse is originating from.
42
48
  # Corresponds to the JSON property `product`
43
49
  # @return [String]
@@ -62,6 +68,7 @@ module Google
62
68
  def update!(**args)
63
69
  @additional_details = args[:additional_details] if args.key?(:additional_details)
64
70
  @alert_descriptor = args[:alert_descriptor] if args.key?(:alert_descriptor)
71
+ @next_steps = args[:next_steps] if args.key?(:next_steps)
65
72
  @product = args[:product] if args.key?(:product)
66
73
  @sub_alert_id = args[:sub_alert_id] if args.key?(:sub_alert_id)
67
74
  @summary = args[:summary] if args.key?(:summary)
@@ -487,7 +494,7 @@ module Google
487
494
  class ApnsCertificateExpirationInfo
488
495
  include Google::Apis::Core::Hashable
489
496
 
490
- # The Apple ID used for the certificate, may be blank if admins did not enter it.
497
+ # The Apple ID used for the certificate may be blank if admins didn't enter it.
491
498
  # Corresponds to the JSON property `appleId`
492
499
  # @return [String]
493
500
  attr_accessor :apple_id
@@ -2049,6 +2056,70 @@ module Google
2049
2056
  end
2050
2057
  end
2051
2058
 
2059
+ # Details for an invalid transfer or forward.
2060
+ class TransferError
2061
+ include Google::Apis::Core::Hashable
2062
+
2063
+ # User's email address. This may be unavailable if the entity was deleted.
2064
+ # Corresponds to the JSON property `email`
2065
+ # @return [String]
2066
+ attr_accessor :email
2067
+
2068
+ # Type of entity being transferred to. For ring group members, this should
2069
+ # always be USER.
2070
+ # Corresponds to the JSON property `entityType`
2071
+ # @return [String]
2072
+ attr_accessor :entity_type
2073
+
2074
+ # Ring group or auto attendant ID. Not set for users.
2075
+ # Corresponds to the JSON property `id`
2076
+ # @return [String]
2077
+ attr_accessor :id
2078
+
2079
+ # Reason for the error.
2080
+ # Corresponds to the JSON property `invalidReason`
2081
+ # @return [String]
2082
+ attr_accessor :invalid_reason
2083
+
2084
+ # User's full name, or the ring group / auto attendant name. This may be
2085
+ # unavailable if the entity was deleted.
2086
+ # Corresponds to the JSON property `name`
2087
+ # @return [String]
2088
+ attr_accessor :name
2089
+
2090
+ def initialize(**args)
2091
+ update!(**args)
2092
+ end
2093
+
2094
+ # Update properties of this object
2095
+ def update!(**args)
2096
+ @email = args[:email] if args.key?(:email)
2097
+ @entity_type = args[:entity_type] if args.key?(:entity_type)
2098
+ @id = args[:id] if args.key?(:id)
2099
+ @invalid_reason = args[:invalid_reason] if args.key?(:invalid_reason)
2100
+ @name = args[:name] if args.key?(:name)
2101
+ end
2102
+ end
2103
+
2104
+ # Error related to transferring or forwarding a phone call.
2105
+ class TransferMisconfiguration
2106
+ include Google::Apis::Core::Hashable
2107
+
2108
+ # Details for each invalid transfer or forward.
2109
+ # Corresponds to the JSON property `errors`
2110
+ # @return [Array<Google::Apis::AlertcenterV1beta1::TransferError>]
2111
+ attr_accessor :errors
2112
+
2113
+ def initialize(**args)
2114
+ update!(**args)
2115
+ end
2116
+
2117
+ # Update properties of this object
2118
+ def update!(**args)
2119
+ @errors = args[:errors] if args.key?(:errors)
2120
+ end
2121
+ end
2122
+
2052
2123
  # A request to undelete a specific alert that was marked for deletion.
2053
2124
  class UndeleteAlertRequest
2054
2125
  include Google::Apis::Core::Hashable
@@ -2141,6 +2212,101 @@ module Google
2141
2212
  @resource_name = args[:resource_name] if args.key?(:resource_name)
2142
2213
  end
2143
2214
  end
2215
+
2216
+ # An alert triggered when Google Voice configuration becomes invalid, generally
2217
+ # due to an external entity being modified or deleted.
2218
+ class VoiceMisconfiguration
2219
+ include Google::Apis::Core::Hashable
2220
+
2221
+ # Name of the entity whose configuration is now invalid.
2222
+ # Corresponds to the JSON property `entityName`
2223
+ # @return [String]
2224
+ attr_accessor :entity_name
2225
+
2226
+ # Type of the entity whose configuration is now invalid.
2227
+ # Corresponds to the JSON property `entityType`
2228
+ # @return [String]
2229
+ attr_accessor :entity_type
2230
+
2231
+ # Link that the admin can follow to fix the issue.
2232
+ # Corresponds to the JSON property `fixUri`
2233
+ # @return [String]
2234
+ attr_accessor :fix_uri
2235
+
2236
+ # Error related to transferring or forwarding a phone call.
2237
+ # Corresponds to the JSON property `membersMisconfiguration`
2238
+ # @return [Google::Apis::AlertcenterV1beta1::TransferMisconfiguration]
2239
+ attr_accessor :members_misconfiguration
2240
+
2241
+ # Error related to transferring or forwarding a phone call.
2242
+ # Corresponds to the JSON property `transferMisconfiguration`
2243
+ # @return [Google::Apis::AlertcenterV1beta1::TransferMisconfiguration]
2244
+ attr_accessor :transfer_misconfiguration
2245
+
2246
+ # Issue(s) with sending to voicemail.
2247
+ # Corresponds to the JSON property `voicemailMisconfiguration`
2248
+ # @return [Google::Apis::AlertcenterV1beta1::VoicemailMisconfiguration]
2249
+ attr_accessor :voicemail_misconfiguration
2250
+
2251
+ def initialize(**args)
2252
+ update!(**args)
2253
+ end
2254
+
2255
+ # Update properties of this object
2256
+ def update!(**args)
2257
+ @entity_name = args[:entity_name] if args.key?(:entity_name)
2258
+ @entity_type = args[:entity_type] if args.key?(:entity_type)
2259
+ @fix_uri = args[:fix_uri] if args.key?(:fix_uri)
2260
+ @members_misconfiguration = args[:members_misconfiguration] if args.key?(:members_misconfiguration)
2261
+ @transfer_misconfiguration = args[:transfer_misconfiguration] if args.key?(:transfer_misconfiguration)
2262
+ @voicemail_misconfiguration = args[:voicemail_misconfiguration] if args.key?(:voicemail_misconfiguration)
2263
+ end
2264
+ end
2265
+
2266
+ # Issue(s) with sending to voicemail.
2267
+ class VoicemailMisconfiguration
2268
+ include Google::Apis::Core::Hashable
2269
+
2270
+ # Issue(s) with voicemail recipients.
2271
+ # Corresponds to the JSON property `errors`
2272
+ # @return [Array<Google::Apis::AlertcenterV1beta1::VoicemailRecipientError>]
2273
+ attr_accessor :errors
2274
+
2275
+ def initialize(**args)
2276
+ update!(**args)
2277
+ end
2278
+
2279
+ # Update properties of this object
2280
+ def update!(**args)
2281
+ @errors = args[:errors] if args.key?(:errors)
2282
+ end
2283
+ end
2284
+
2285
+ # Issue(s) with a voicemail recipient.
2286
+ class VoicemailRecipientError
2287
+ include Google::Apis::Core::Hashable
2288
+
2289
+ # Email address of the invalid recipient. This may be unavailable if the
2290
+ # recipient was deleted.
2291
+ # Corresponds to the JSON property `email`
2292
+ # @return [String]
2293
+ attr_accessor :email
2294
+
2295
+ # Reason for the error.
2296
+ # Corresponds to the JSON property `invalidReason`
2297
+ # @return [String]
2298
+ attr_accessor :invalid_reason
2299
+
2300
+ def initialize(**args)
2301
+ update!(**args)
2302
+ end
2303
+
2304
+ # Update properties of this object
2305
+ def update!(**args)
2306
+ @email = args[:email] if args.key?(:email)
2307
+ @invalid_reason = args[:invalid_reason] if args.key?(:invalid_reason)
2308
+ end
2309
+ end
2144
2310
  end
2145
2311
  end
2146
2312
  end
@@ -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.26.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221004"
25
+ REVISION = "20221212"
26
26
  end
27
27
  end
28
28
  end
@@ -376,6 +376,18 @@ module Google
376
376
  include Google::Apis::Core::JsonObjectSupport
377
377
  end
378
378
 
379
+ class TransferError
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
385
+ class TransferMisconfiguration
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
379
391
  class UndeleteAlertRequest
380
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
393
 
@@ -400,12 +412,31 @@ module Google
400
412
  include Google::Apis::Core::JsonObjectSupport
401
413
  end
402
414
 
415
+ class VoiceMisconfiguration
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class VoicemailMisconfiguration
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
427
+ class VoicemailRecipientError
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
403
433
  class AbuseDetected
404
434
  # @private
405
435
  class Representation < Google::Apis::Core::JsonRepresentation
406
436
  property :additional_details, as: 'additionalDetails', class: Google::Apis::AlertcenterV1beta1::EntityList, decorator: Google::Apis::AlertcenterV1beta1::EntityList::Representation
407
437
 
408
438
  property :alert_descriptor, as: 'alertDescriptor'
439
+ property :next_steps, as: 'nextSteps'
409
440
  property :product, as: 'product'
410
441
  property :sub_alert_id, as: 'subAlertId'
411
442
  property :summary, as: 'summary'
@@ -984,6 +1015,25 @@ module Google
984
1015
  end
985
1016
  end
986
1017
 
1018
+ class TransferError
1019
+ # @private
1020
+ class Representation < Google::Apis::Core::JsonRepresentation
1021
+ property :email, as: 'email'
1022
+ property :entity_type, as: 'entityType'
1023
+ property :id, as: 'id'
1024
+ property :invalid_reason, as: 'invalidReason'
1025
+ property :name, as: 'name'
1026
+ end
1027
+ end
1028
+
1029
+ class TransferMisconfiguration
1030
+ # @private
1031
+ class Representation < Google::Apis::Core::JsonRepresentation
1032
+ collection :errors, as: 'errors', class: Google::Apis::AlertcenterV1beta1::TransferError, decorator: Google::Apis::AlertcenterV1beta1::TransferError::Representation
1033
+
1034
+ end
1035
+ end
1036
+
987
1037
  class UndeleteAlertRequest
988
1038
  # @private
989
1039
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1013,6 +1063,37 @@ module Google
1013
1063
  property :resource_name, as: 'resourceName'
1014
1064
  end
1015
1065
  end
1066
+
1067
+ class VoiceMisconfiguration
1068
+ # @private
1069
+ class Representation < Google::Apis::Core::JsonRepresentation
1070
+ property :entity_name, as: 'entityName'
1071
+ property :entity_type, as: 'entityType'
1072
+ property :fix_uri, as: 'fixUri'
1073
+ property :members_misconfiguration, as: 'membersMisconfiguration', class: Google::Apis::AlertcenterV1beta1::TransferMisconfiguration, decorator: Google::Apis::AlertcenterV1beta1::TransferMisconfiguration::Representation
1074
+
1075
+ property :transfer_misconfiguration, as: 'transferMisconfiguration', class: Google::Apis::AlertcenterV1beta1::TransferMisconfiguration, decorator: Google::Apis::AlertcenterV1beta1::TransferMisconfiguration::Representation
1076
+
1077
+ property :voicemail_misconfiguration, as: 'voicemailMisconfiguration', class: Google::Apis::AlertcenterV1beta1::VoicemailMisconfiguration, decorator: Google::Apis::AlertcenterV1beta1::VoicemailMisconfiguration::Representation
1078
+
1079
+ end
1080
+ end
1081
+
1082
+ class VoicemailMisconfiguration
1083
+ # @private
1084
+ class Representation < Google::Apis::Core::JsonRepresentation
1085
+ collection :errors, as: 'errors', class: Google::Apis::AlertcenterV1beta1::VoicemailRecipientError, decorator: Google::Apis::AlertcenterV1beta1::VoicemailRecipientError::Representation
1086
+
1087
+ end
1088
+ end
1089
+
1090
+ class VoicemailRecipientError
1091
+ # @private
1092
+ class Representation < Google::Apis::Core::JsonRepresentation
1093
+ property :email, as: 'email'
1094
+ property :invalid_reason, as: 'invalidReason'
1095
+ end
1096
+ end
1016
1097
  end
1017
1098
  end
1018
1099
  end
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.26.0
4
+ version: 0.28.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-10-17 00:00:00.000000000 Z
11
+ date: 2023-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.28.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: []