endpoints
Creates, updates, deletes, gets or lists an endpoints
resource.
Overview
Name | endpoints |
Type | Resource |
Id | linode.object_storage.endpoints |
Fields
The following fields are returned by SELECT
queries:
- get_object_storage_endpoints
A paginated list of endpoints you can access.
Name | Datatype | Description |
---|---|---|
endpoint_type | string | The type of s3_endpoint available to the active user in this region . See Endpoint types for more information. (example: E1) |
region | string | The 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_endpoint | string | Your 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_object_storage_endpoints | select | Returns 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.
Name | Datatype | Description |
---|
SELECT
examples
- get_object_storage_endpoints
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;