Skip to main content

status

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

Overview

Namestatus
TypeResource
Idsumologic.account.status

Fields

The following fields are returned by SELECT queries:

Overview of the account.

NameDatatypeDescription
accountActivatedbooleanIf the account is activated or not
applicationUsestringThe current usage of the application. (pattern: ^(ALLOWED|ALLOWED_WITH_WARNING|THROTTLED|RESTRICTED)$, example: ALLOWED)
canUpdatePlanbooleanIf the plan can be updated by the given user
planExpirationDaysintegerThe number of days in which the plan will expire
planTypestringWhether the account is Free/Trial/Paid (pattern: ^(Free|Trial|Paid)$, example: Free)
pricingModelstringWhether the account is cloudflex or credits (pattern: ^(credits|cloudflex)$, example: credits)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getStatusselectregionGet information related to the account's plan, pricing model, expiration and payment status.

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 information related to the account's plan, pricing model, expiration and payment status.

SELECT
accountActivated,
applicationUse,
canUpdatePlan,
planExpirationDays,
planType,
pricingModel
FROM sumologic.account.status
WHERE region = '{{ region }}' -- required
;