ModifyActionExclusion Method
Description
Updates an existing action exclusion.
HTTP Request
PUT https://api.skeddly.com/api/ActionExclusions/<id>
URL Parameters
Id
ID of the action exclusion.
Type: string
Required: Yes
Body
The body is a JSON structure with the following properties.
Returns
An ActionExclusion object.
Sample Request
PUT /api/ActionExclusions/excl-00000001 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
{
"name": "My Exclusion",
"isEnabled": true,
"expiryDate": "2020-05-19T00:00:00Z",
"resourceType": "amazon-ec2-instance",
"resourceIdentificationMethod": "by-resource-id",
"resourceIds": [
"i-12345678"
],
"processes": [
"start-resource",
"stop-resource"
]
}
Sample Response
{
"actionExclusionId": "excl-00000001",
"projectId": "proj-00000001",
"name": "My Exclusion",
"status": "active",
"isEnabled": true,
"createdDate": "2020-05-12T11:36:00Z",
"lastModifiedDate": "2020-05-12T11:36:00Z",
"lastModifiedBy": "u-00000001",
"startDate": "2020-05-15T00:00:00Z",
"expiryDate": "2020-05-19T00:00:00Z",
"timeZoneId": "Eastern Standard Time",
"processes": [
"start-resource",
"stop-resource"
],
"resourceType": "amazon-ec2-instance",
"resourceIdentificationMethod": "by-resource-id",
"resourceIds": [
"i-12345678"
]
}
Last updated