pending_update_request
Creates, updates, deletes, gets or lists a pending_update_request
resource.
Overview
Name | pending_update_request |
Type | Resource |
Id | sumologic.plan.pending_update_request |
Fields
The following fields are returned by SELECT
queries:
- getPendingUpdateRequest
Pending plan update request.
Name | Datatype | Description |
---|---|---|
createdOn | string (date) | The date on which the update request was created. |
plan | object | Current plan of the account. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getPendingUpdateRequest | select | region | Get the pending plan update request which will be applicable from next billing cycle. | |
deletePendingUpdateRequest | delete | region | Delete the pending plan update request which would be applicable from next billing cycle. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT
examples
- getPendingUpdateRequest
Get the pending plan update request which will be applicable from next billing cycle.
SELECT
createdOn,
plan
FROM sumologic.plan.pending_update_request
WHERE region = '{{ region }}' -- required
;
DELETE
examples
- deletePendingUpdateRequest
Delete the pending plan update request which would be applicable from next billing cycle.
DELETE FROM sumologic.plan.pending_update_request
WHERE region = '{{ region }}' --required
;