google-apis-alertcenter_v1beta1 0.27.0 → 0.28.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: 57a7038ee427b7f443b83e4fbdbf89cfcf49dd5c62e374b6c97d060065a286a7
|
4
|
+
data.tar.gz: 18d83b7e5877c7128323e4c160f8a54944f9b7571eb30358d68f15438c2b080a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7cd85de50c9f51445c04f0696ed70317dca315218fb5506d57f1778fcd010fadd0c02e7d566333d93d57447822a05e0499246cc86e8fb80543d91b28f2964fb
|
7
|
+
data.tar.gz: 9e92f18cb79704d7620a4f47667508ec8646f6ded1e1cf1c8adb6d9ef0b3c51b30b6c03106c496199878f7d86e3fb2433a6c7d5593baa0620c80cdba3274c0f6
|
data/CHANGELOG.md
CHANGED
@@ -494,7 +494,7 @@ module Google
|
|
494
494
|
class ApnsCertificateExpirationInfo
|
495
495
|
include Google::Apis::Core::Hashable
|
496
496
|
|
497
|
-
# The Apple ID used for the certificate
|
497
|
+
# The Apple ID used for the certificate may be blank if admins didn't enter it.
|
498
498
|
# Corresponds to the JSON property `appleId`
|
499
499
|
# @return [String]
|
500
500
|
attr_accessor :apple_id
|
@@ -2056,6 +2056,70 @@ module Google
|
|
2056
2056
|
end
|
2057
2057
|
end
|
2058
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
|
+
|
2059
2123
|
# A request to undelete a specific alert that was marked for deletion.
|
2060
2124
|
class UndeleteAlertRequest
|
2061
2125
|
include Google::Apis::Core::Hashable
|
@@ -2148,6 +2212,101 @@ module Google
|
|
2148
2212
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2149
2213
|
end
|
2150
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
|
2151
2310
|
end
|
2152
2311
|
end
|
2153
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.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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,6 +412,24 @@ 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
|
@@ -985,6 +1015,25 @@ module Google
|
|
985
1015
|
end
|
986
1016
|
end
|
987
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
|
+
|
988
1037
|
class UndeleteAlertRequest
|
989
1038
|
# @private
|
990
1039
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1014,6 +1063,37 @@ module Google
|
|
1014
1063
|
property :resource_name, as: 'resourceName'
|
1015
1064
|
end
|
1016
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
|
1017
1097
|
end
|
1018
1098
|
end
|
1019
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.
|
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:
|
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
|
@@ -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.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: []
|