Skip to content

Commit 6057d89

Browse files
feat(alertcenter): update the api
#### alertcenter:v1beta1 The following keys were added: - schemas.TransferError (Total Keys: 7) - schemas.TransferMisconfiguration (Total Keys: 4) - schemas.VoiceMisconfiguration (Total Keys: 8) - schemas.VoicemailMisconfiguration (Total Keys: 4) - schemas.VoicemailRecipientError (Total Keys: 4)
1 parent 038fdb6 commit 6057d89

File tree

1 file changed

+149
-2
lines changed

1 file changed

+149
-2
lines changed

googleapiclient/discovery_cache/documents/alertcenter.v1beta1.json

Lines changed: 149 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@
423423
}
424424
}
425425
},
426-
"revision": "20221205",
426+
"revision": "20221212",
427427
"rootUrl": "https://alertcenter.googleapis.com/",
428428
"schemas": {
429429
"AbuseDetected": {
@@ -768,7 +768,7 @@
768768
"id": "ApnsCertificateExpirationInfo",
769769
"properties": {
770770
"appleId": {
771-
"description": "The Apple ID used for the certificate, may be blank if admins did not enter it.",
771+
"description": "The Apple ID used for the certificate may be blank if admins didn't enter it.",
772772
"type": "string"
773773
},
774774
"expirationTime": {
@@ -1866,6 +1866,73 @@
18661866
},
18671867
"type": "object"
18681868
},
1869+
"TransferError": {
1870+
"description": "Details for an invalid transfer or forward.",
1871+
"id": "TransferError",
1872+
"properties": {
1873+
"email": {
1874+
"description": "User's email address. This may be unavailable if the entity was deleted.",
1875+
"type": "string"
1876+
},
1877+
"entityType": {
1878+
"description": "Type of entity being transferred to. For ring group members, this should always be USER.",
1879+
"enum": [
1880+
"TRANSFER_ENTITY_TYPE_UNSPECIFIED",
1881+
"TRANSFER_AUTO_ATTENDANT",
1882+
"TRANSFER_RING_GROUP",
1883+
"TRANSFER_USER"
1884+
],
1885+
"enumDescriptions": [
1886+
"Entity type wasn't set.",
1887+
"Transfer to auto attendant.",
1888+
"Transfer to ring group.",
1889+
"Transfer to user."
1890+
],
1891+
"type": "string"
1892+
},
1893+
"id": {
1894+
"description": "Ring group or auto attendant ID. Not set for users.",
1895+
"type": "string"
1896+
},
1897+
"invalidReason": {
1898+
"description": "Reason for the error.",
1899+
"enum": [
1900+
"TRANSFER_INVALID_REASON_UNSPECIFIED",
1901+
"TRANSFER_TARGET_DELETED",
1902+
"UNLICENSED",
1903+
"SUSPENDED",
1904+
"NO_PHONE_NUMBER"
1905+
],
1906+
"enumDescriptions": [
1907+
"Reason wasn't specified.",
1908+
"The transfer target can't be found\u2014most likely it was deleted.",
1909+
"The user's Google Voice license was removed.",
1910+
"The user's Google Workspace account was suspended.",
1911+
"The transfer target no longer has a phone number. This reason should become deprecated once we support numberless transfer."
1912+
],
1913+
"type": "string"
1914+
},
1915+
"name": {
1916+
"description": "User's full name, or the ring group / auto attendant name. This may be unavailable if the entity was deleted.",
1917+
"type": "string"
1918+
}
1919+
},
1920+
"type": "object"
1921+
},
1922+
"TransferMisconfiguration": {
1923+
"description": "Error related to transferring or forwarding a phone call.",
1924+
"id": "TransferMisconfiguration",
1925+
"properties": {
1926+
"errors": {
1927+
"description": "Details for each invalid transfer or forward.",
1928+
"items": {
1929+
"$ref": "TransferError"
1930+
},
1931+
"type": "array"
1932+
}
1933+
},
1934+
"type": "object"
1935+
},
18691936
"UndeleteAlertRequest": {
18701937
"description": "A request to undelete a specific alert that was marked for deletion.",
18711938
"id": "UndeleteAlertRequest",
@@ -1917,6 +1984,86 @@
19171984
}
19181985
},
19191986
"type": "object"
1987+
},
1988+
"VoiceMisconfiguration": {
1989+
"description": "An alert triggered when Google Voice configuration becomes invalid, generally due to an external entity being modified or deleted.",
1990+
"id": "VoiceMisconfiguration",
1991+
"properties": {
1992+
"entityName": {
1993+
"description": "Name of the entity whose configuration is now invalid.",
1994+
"type": "string"
1995+
},
1996+
"entityType": {
1997+
"description": "Type of the entity whose configuration is now invalid.",
1998+
"enum": [
1999+
"ENTITY_TYPE_UNSPECIFIED",
2000+
"AUTO_ATTENDANT",
2001+
"RING_GROUP"
2002+
],
2003+
"enumDescriptions": [
2004+
"Entity type wasn't set.",
2005+
"Invalid auto attendant.",
2006+
"Invalid ring group."
2007+
],
2008+
"type": "string"
2009+
},
2010+
"fixUri": {
2011+
"description": "Link that the admin can follow to fix the issue.",
2012+
"type": "string"
2013+
},
2014+
"membersMisconfiguration": {
2015+
"$ref": "TransferMisconfiguration",
2016+
"description": "Issue(s) with members of a ring group."
2017+
},
2018+
"transferMisconfiguration": {
2019+
"$ref": "TransferMisconfiguration",
2020+
"description": "Issue(s) with transferring or forwarding to an external entity."
2021+
},
2022+
"voicemailMisconfiguration": {
2023+
"$ref": "VoicemailMisconfiguration",
2024+
"description": "Issue(s) with sending to voicemail."
2025+
}
2026+
},
2027+
"type": "object"
2028+
},
2029+
"VoicemailMisconfiguration": {
2030+
"description": "Issue(s) with sending to voicemail.",
2031+
"id": "VoicemailMisconfiguration",
2032+
"properties": {
2033+
"errors": {
2034+
"description": "Issue(s) with voicemail recipients.",
2035+
"items": {
2036+
"$ref": "VoicemailRecipientError"
2037+
},
2038+
"type": "array"
2039+
}
2040+
},
2041+
"type": "object"
2042+
},
2043+
"VoicemailRecipientError": {
2044+
"description": "Issue(s) with a voicemail recipient.",
2045+
"id": "VoicemailRecipientError",
2046+
"properties": {
2047+
"email": {
2048+
"description": "Email address of the invalid recipient. This may be unavailable if the recipient was deleted.",
2049+
"type": "string"
2050+
},
2051+
"invalidReason": {
2052+
"description": "Reason for the error.",
2053+
"enum": [
2054+
"EMAIL_INVALID_REASON_UNSPECIFIED",
2055+
"OUT_OF_QUOTA",
2056+
"RECIPIENT_DELETED"
2057+
],
2058+
"enumDescriptions": [
2059+
"Reason wasn't specified.",
2060+
"User can't receive emails due to insufficient quota.",
2061+
"All recipients were deleted."
2062+
],
2063+
"type": "string"
2064+
}
2065+
},
2066+
"type": "object"
19202067
}
19212068
},
19222069
"servicePath": "",

0 commit comments

Comments
 (0)