SQL Server / Monitoring API / Creates a new alarm in the specified compartment.
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- Use this online tool to generate code from sample JSON: Generate Code to Create JSON
-- The following JSON is sent in the request body.
-- {
-- "compartmentId": "{{compartment_ocid}}",
-- "destinations": [
-- "ea"
-- ],
-- "displayName": "dolor ex",
-- "isEnabled": true,
-- "metricCompartmentId": "cupidatat ea tempor",
-- "namespace": "consectetur sunt",
-- "query": "in",
-- "severity": "magna irure dolor",
-- "body": "non pariatur magna",
-- "definedTags": {},
-- "freeformTags": {},
-- "metricCompartmentIdInSubtree": true,
-- "pendingDuration": "dolore enim proident in",
-- "repeatNotificationDuration": "ea commodo eiusmod cillum",
-- "resolution": "d",
-- "resourceGroup": "dolore in",
-- "suppression": {
-- "timeSuppressFrom": "1989-11-06T15:51:14.979Z",
-- "timeSuppressUntil": "2018-11-24T14:49:54.070Z",
-- "description": "occaecat et"
-- }
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'compartmentId', '{{compartment_ocid}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'destinations[0]', 'ea'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'displayName', 'dolor ex'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'isEnabled', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'metricCompartmentId', 'cupidatat ea tempor'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'namespace', 'consectetur sunt'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'query', 'in'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'severity', 'magna irure dolor'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'body', 'non pariatur magna'
EXEC sp_OAMethod @json, 'UpdateNewObject', @success OUT, 'definedTags'
EXEC sp_OAMethod @json, 'UpdateNewObject', @success OUT, 'freeformTags'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'metricCompartmentIdInSubtree', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'pendingDuration', 'dolore enim proident in'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'repeatNotificationDuration', 'ea commodo eiusmod cillum'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'resolution', 'd'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'resourceGroup', 'dolore in'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'suppression.timeSuppressFrom', '1989-11-06T15:51:14.979Z'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'suppression.timeSuppressUntil', '2018-11-24T14:49:54.070Z'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'suppression.description', 'occaecat et'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'opc-retry-token', 'exercitation commodo'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'opc-request-id', 'pariatur nostrud eiusmod'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-content-sha256', '{{content_sha256}}'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Authorization', '{{signature}}'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Date', '{{date}}'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://telemetry.{{region}}.oraclecloud.com/20180401/alarms', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
DECLARE @sbResponseBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
EXEC @hr = sp_OADestroy @resp
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "compartmentId": "veniam",
-- "destinations": [
-- "reprehenderit aute in magna"
-- ],
-- "displayName": "sit",
-- "id": "Lorem qui ex veniam proident",
-- "isEnabled": true,
-- "lifecycleState": "DELETED",
-- "metricCompartmentId": "reprehenderit nostrud est",
-- "namespace": "cupidatat tempor aliquip elit",
-- "query": "fugiat",
-- "severity": "INFO",
-- "timeCreated": "1944-02-22T03:18:34.935Z",
-- "timeUpdated": "1988-11-03T02:58:13.311Z",
-- "body": "labore id",
-- "definedTags": {},
-- "freeformTags": {},
-- "metricCompartmentIdInSubtree": true,
-- "pendingDuration": "nostrud",
-- "repeatNotificationDuration": "incididunt ea",
-- "resolution": "in nostrud sed aute",
-- "resourceGroup": "nulla aliqua commodo sed",
-- "suppression": {
-- "timeSuppressFrom": "2004-03-12T05:00:19.371Z",
-- "timeSuppressUntil": "1953-09-18T23:32:40.152Z",
-- "description": "sit aute"
-- }
-- }
-- Sample code for parsing the JSON response...
-- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
DECLARE @strVal nvarchar(4000)
DECLARE @compartmentId nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @compartmentId OUT, 'compartmentId'
DECLARE @displayName nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @displayName OUT, 'displayName'
DECLARE @id nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'id'
DECLARE @isEnabled int
EXEC sp_OAMethod @jResp, 'BoolOf', @isEnabled OUT, 'isEnabled'
DECLARE @lifecycleState nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @lifecycleState OUT, 'lifecycleState'
DECLARE @metricCompartmentId nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @metricCompartmentId OUT, 'metricCompartmentId'
DECLARE @namespace nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @namespace OUT, 'namespace'
DECLARE @query nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @query OUT, 'query'
DECLARE @severity nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @severity OUT, 'severity'
DECLARE @timeCreated nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @timeCreated OUT, 'timeCreated'
DECLARE @timeUpdated nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @timeUpdated OUT, 'timeUpdated'
DECLARE @body nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @body OUT, 'body'
DECLARE @metricCompartmentIdInSubtree int
EXEC sp_OAMethod @jResp, 'BoolOf', @metricCompartmentIdInSubtree OUT, 'metricCompartmentIdInSubtree'
DECLARE @pendingDuration nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @pendingDuration OUT, 'pendingDuration'
DECLARE @repeatNotificationDuration nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @repeatNotificationDuration OUT, 'repeatNotificationDuration'
DECLARE @resolution nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @resolution OUT, 'resolution'
DECLARE @resourceGroup nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @resourceGroup OUT, 'resourceGroup'
DECLARE @TimeSuppressFrom nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @TimeSuppressFrom OUT, 'suppression.timeSuppressFrom'
DECLARE @TimeSuppressUntil nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @TimeSuppressUntil OUT, 'suppression.timeSuppressUntil'
DECLARE @Description nvarchar(4000)
EXEC sp_OAMethod @jResp, 'StringOf', @Description OUT, 'suppression.description'
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'destinations'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'destinations[i]'
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -X POST
-H "opc-request-id: pariatur nostrud eiusmod"
-H "opc-retry-token: exercitation commodo"
-H "Content-Type: application/json"
-H "Date: {{date}}"
-H "Authorization: {{signature}}"
-H "x-content-sha256: {{content_sha256}}"
-d '{
"compartmentId": "{{compartment_ocid}}",
"destinations": [
"ea"
],
"displayName": "dolor ex",
"isEnabled": true,
"metricCompartmentId": "cupidatat ea tempor",
"namespace": "consectetur sunt",
"query": "in",
"severity": "magna irure dolor",
"body": "non pariatur magna",
"definedTags": {},
"freeformTags": {},
"metricCompartmentIdInSubtree": true,
"pendingDuration": "dolore enim proident in",
"repeatNotificationDuration": "ea commodo eiusmod cillum",
"resolution": "d",
"resourceGroup": "dolore in",
"suppression": {
"timeSuppressFrom": "1989-11-06T15:51:14.979Z",
"timeSuppressUntil": "2018-11-24T14:49:54.070Z",
"description": "occaecat et"
}
}'
https://telemetry.{{region}}.oraclecloud.com/20180401/alarms
Postman Collection Item JSON
{
"name": "Creates a new alarm in the specified compartment.\n",
"request": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Date",
"value": "{{date}}",
"description": "(Required) Current Date",
"type": "text"
},
{
"key": "Authorization",
"value": "{{signature}}",
"description": "(Required) Signature Authentication on Authorization header",
"type": "text"
},
{
"key": "x-content-sha256",
"value": "{{content_sha256}}",
"description": "(Required) Content sha256 for POST, PUT and PATCH operations",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"{{compartment_ocid}}\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
},
"description": "Creates a new alarm in the specified compartment.\nFor important limits information, see [Limits on Monitoring](https://docs.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#Limits).\n\nThis call is subject to a Monitoring limit that applies to the total number of requests across all alarm operations.\nMonitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests,\nor transactions, per second (TPS) for a given tenancy.\n"
},
"response": [
{
"name": "Successfully created alarm.",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "pariatur nostrud eiusmod",
"description": "For optimistic concurrency control. See `if-match`.\n"
},
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"compartmentId\": \"veniam\",\n \"destinations\": [\n \"reprehenderit aute in magna\"\n ],\n \"displayName\": \"sit\",\n \"id\": \"Lorem qui ex veniam proident\",\n \"isEnabled\": true,\n \"lifecycleState\": \"DELETED\",\n \"metricCompartmentId\": \"reprehenderit nostrud est\",\n \"namespace\": \"cupidatat tempor aliquip elit\",\n \"query\": \"fugiat\",\n \"severity\": \"INFO\",\n \"timeCreated\": \"1944-02-22T03:18:34.935Z\",\n \"timeUpdated\": \"1988-11-03T02:58:13.311Z\",\n \"body\": \"labore id\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"nostrud\",\n \"repeatNotificationDuration\": \"incididunt ea\",\n \"resolution\": \"in nostrud sed aute\",\n \"resourceGroup\": \"nulla aliqua commodo sed\",\n \"suppression\": {\n \"timeSuppressFrom\": \"2004-03-12T05:00:19.371Z\",\n \"timeSuppressUntil\": \"1953-09-18T23:32:40.152Z\",\n \"description\": \"sit aute\"\n }\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
},
{
"name": "Unauthorized",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
},
{
"name": "Conflict",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Conflict",
"code": 409,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
},
{
"name": "Client is getting throttled, please retry with backoff.",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
},
{
"name": "An error has occurred.",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Customer part of the request identifier token. If you need to contact Oracle about a particular\nrequest, please provide the complete request ID.\n",
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod"
},
{
"description": "A token that uniquely identifies a request so it can be retried in case of a timeout or\nserver error without risk of executing that same action again. Retry tokens expire after 24\nhours, but can be invalidated before then due to conflicting operations. For example, if a resource\nhas been deleted and purged from the system, then a retry of the original creation request\nmight be rejected.\n",
"key": "opc-retry-token",
"value": "exercitation commodo"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"compartmentId\": \"occaecat ea veniam Excepteur consequat\",\n \"destinations\": [\n \"ea\"\n ],\n \"displayName\": \"dolor ex\",\n \"isEnabled\": true,\n \"metricCompartmentId\": \"cupidatat ea tempor\",\n \"namespace\": \"consectetur sunt\",\n \"query\": \"in\",\n \"severity\": \"magna irure dolor\",\n \"body\": \"non pariatur magna\",\n \"definedTags\": {},\n \"freeformTags\": {},\n \"metricCompartmentIdInSubtree\": true,\n \"pendingDuration\": \"dolore enim proident in\",\n \"repeatNotificationDuration\": \"ea commodo eiusmod cillum\",\n \"resolution\": \"d\",\n \"resourceGroup\": \"dolore in\",\n \"suppression\": {\n \"timeSuppressFrom\": \"1989-11-06T15:51:14.979Z\",\n \"timeSuppressUntil\": \"2018-11-24T14:49:54.070Z\",\n \"description\": \"occaecat et\"\n }\n}"
},
"url": {
"raw": "{{baseUrl}}/alarms",
"host": [
"{{baseUrl}}"
],
"path": [
"alarms"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "opc-request-id",
"value": "pariatur nostrud eiusmod",
"description": "Unique Oracle-assigned identifier for the request. If you need to contact Oracle about\na particular request, please provide the request ID.\n"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"code\": \"qui anim ut\",\n \"message\": \"esse proident\"\n}"
}
]
}