Skip to main content

beta_programs

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

Overview

Namebeta_programs
TypeResource
Idlinode.betas.beta_programs

Fields

The following fields are returned by SELECT queries:

Returns a paginated list of all available Beta Program objects.

NameDatatypeDescription
idstringThe unique identifier of the Beta Program. (example: example_open)
descriptionstringRead-only Additional details regarding the Beta Program. (example: This is an open public beta for an example feature.)
endedstring (date-time)Filterable, Read-only The date-time that the Beta Program ended. null indicates that the Beta Program is ongoing.
greenlight_onlybooleanFilterable, Read-only Whether the Beta Program requires Green Light participation for enrollment.
labelstringFilterable, Read-only The name of the Beta Program. (example: Example Open Beta)
more_infostringRead-only Additional source of information for the Beta Program. (example: https://www.linode.com/green-light/)
startedstring (date-time)Filterable, Read-only The start date-time of the Beta Program. (example: 2023-07-11T00:00:00)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_beta_programselectDisplay information about a Beta Program. This operation can be used to access inactive as well as active Beta Programs.

Only unrestricted Users can access this operation.

Learn more...
get_beta_programsselectpage, page_sizeDisplay all active Beta Programs.

Only unrestricted Users can access this operation.

Learn more...

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
pageintegerThe page of a collection to return.
page_sizeintegerThe number of items to return per page.

SELECT examples

Display information about a Beta Program. This operation can be used to access inactive as well as active Beta Programs.

Only unrestricted Users can access this operation.

Learn more...

SELECT
id,
description,
ended,
greenlight_only,
label,
more_info,
started
FROM linode.betas.beta_programs;