beta_programs
Creates, updates, deletes, gets or lists a beta_programs
resource.
Overview
Name | beta_programs |
Type | Resource |
Id | linode.betas.beta_programs |
Fields
The following fields are returned by SELECT
queries:
- get_beta_program
- get_beta_programs
Returns a paginated list of all available Beta Program objects.
Name | Datatype | Description |
---|---|---|
id | string | The unique identifier of the Beta Program. (example: example_open) |
description | string | Read-only Additional details regarding the Beta Program. (example: This is an open public beta for an example feature.) |
ended | string (date-time) | Filterable, Read-only The date-time that the Beta Program ended. null indicates that the Beta Program is ongoing. |
greenlight_only | boolean | Filterable, Read-only Whether the Beta Program requires Green Light participation for enrollment. |
label | string | Filterable, Read-only The name of the Beta Program. (example: Example Open Beta) |
more_info | string | Read-only Additional source of information for the Beta Program. (example: https://www.linode.com/green-light/) |
started | string (date-time) | Filterable, Read-only The start date-time of the Beta Program. (example: 2023-07-11T00:00:00) |
Returns a paginated list of all available Beta Program objects.
Name | Datatype | Description |
---|---|---|
id | string | The unique identifier of the Beta Program. (example: example_open) |
description | string | Read-only Additional details regarding the Beta Program. (example: This is an open public beta for an example feature.) |
ended | string (date-time) | Filterable, Read-only The date-time that the Beta Program ended. null indicates that the Beta Program is ongoing. |
greenlight_only | boolean | Filterable, Read-only Whether the Beta Program requires Green Light participation for enrollment. |
label | string | Filterable, Read-only The name of the Beta Program. (example: Example Open Beta) |
more_info | string | Read-only Additional source of information for the Beta Program. (example: https://www.linode.com/green-light/) |
started | string (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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_beta_program | select | 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... | ||
get_beta_programs | select | page , page_size | Display 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.
Name | Datatype | Description |
---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT
examples
- get_beta_program
- get_beta_programs
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;
Display all 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
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';