Skip to main content

endpoints

Creates, updates, deletes, gets or lists an endpoints resource.

Overview

Nameendpoints
TypeResource
Idlinode.object_storage.endpoints

Fields

The following fields are returned by SELECT queries:

A paginated list of endpoints you can access.

NameDatatypeDescription
endpoint_typestringThe type of s3_endpoint available to the active user in this region. See Endpoint types for more information. (example: E1)
regionstringThe Akamai cloud computing region, represented by its slug value. Run the List regions operation to view all regions and their slugs. (example: us-iad)
s3_endpointstringYour S3-compatible endpoint URL, based on the endpoint_type and region. Displayed as null if you haven't assigned an endpoint for your user. (example: us-iad-1.linodeobjects.com)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_object_storage_endpointsselectReturns a paginated list of all Object Storage endpoints available in your account.

Learn more...

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

SELECT examples

Returns a paginated list of all Object Storage endpoints available in your account.

Learn more...

Learn more...

SELECT
endpoint_type,
region,
s3_endpoint
FROM linode.object_storage.endpoints;