Skip to main content

pending_update_request

Creates, updates, deletes, gets or lists a pending_update_request resource.

Overview

Namepending_update_request
TypeResource
Idsumologic.plan.pending_update_request

Fields

The following fields are returned by SELECT queries:

Pending plan update request.

NameDatatypeDescription
createdOnstring (date)The date on which the update request was created.
planobjectCurrent plan of the account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getPendingUpdateRequestselectregionGet the pending plan update request which will be applicable from next billing cycle.
deletePendingUpdateRequestdeleteregionDelete 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.

NameDatatypeDescription
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

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

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
;