clusters
Creates, updates, deletes, gets or lists a clusters
resource.
Overview
Name | clusters |
Type | Resource |
Id | linode.object_storage.clusters |
Fields
The following fields are returned by SELECT
queries:
- get_object_storage_cluster
- get_object_storage_clusters
The requested Cluster.
Name | Datatype | Description |
---|---|---|
id | string | The unique ID for this cluster. (example: us-east-1) |
domain | string | The base URL for this cluster, used for connecting with third-party clients. (example: us-east-1.linodeobjects.com) |
region | string | The region where this cluster is located. (example: us-east) |
static_site_domain | string | The base URL for this cluster used when hosting static sites. (example: website-us-east-1.linodeobjects.com) |
status | string | This cluster's status. (example: available) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_object_storage_cluster | select | Deprecated Returns a single Object Storage cluster. > 📘 > > This displays deprecated clusterId values that represent regions used with older versions of the API. It's maintained for backward compatibility. Run Get a region instead.Learn more... | ||
get_object_storage_clusters | select | Deprecated Returns a paginated list of available Object Storage legacy clusters. > 📘 > > This displays deprecated clusterId values that represent regions used with older versions of the API. It's maintained for backward compatibility. Run Get a region instead.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_cluster
- get_object_storage_clusters
Deprecated Returns a single Object Storage cluster.
> 📘
>
> This displays deprecated clusterId
values that represent regions used with older versions of the API. It's maintained for backward compatibility. Run Get a region instead.
Learn more...
SELECT
id,
domain,
region,
static_site_domain,
status
FROM linode.object_storage.clusters;
Deprecated Returns a paginated list of available Object Storage legacy clusters.
> 📘
>
> This displays deprecated clusterId
values that represent regions used with older versions of the API. It's maintained for backward compatibility. Run Get a region instead.
Learn more...
SELECT
data,
page,
pages,
results
FROM linode.object_storage.clusters;