GetObjectStorageCluster
Provides information about a Linode Object Storage Cluster
Attributes
The Linode Object Storage Cluster resource exports the following attributes:
domain- The base URL for this cluster.status- This cluster’s status.region- The region this cluster is located in.static_site_domain- The base URL for this cluster used when hosting static sites.
Example Usage
using Pulumi;
using Linode = Pulumi.Linode;
class MyStack : Stack
{
public MyStack()
{
var primary = Output.Create(Linode.GetObjectStorageCluster.InvokeAsync(new Linode.GetObjectStorageClusterArgs
{
Id = "us-east-1",
}));
}
}
Coming soon!
import pulumi
import pulumi_linode as linode
primary = linode.get_object_storage_cluster(id="us-east-1")import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const primary = pulumi.output(linode.getObjectStorageCluster({
id: "us-east-1",
}, { async: true }));Using GetObjectStorageCluster
function getObjectStorageCluster(args: GetObjectStorageClusterArgs, opts?: InvokeOptions): Promise<GetObjectStorageClusterResult>function get_object_storage_cluster(domain=None, id=None, region=None, static_site_domain=None, status=None, opts=None)func GetObjectStorageCluster(ctx *Context, args *GetObjectStorageClusterArgs, opts ...InvokeOption) (*GetObjectStorageClusterResult, error)public static class GetObjectStorageCluster {
public static Task<GetObjectStorageClusterResult> InvokeAsync(GetObjectStorageClusterArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetObjectStorageCluster Result
The following output properties are available:
Package Details
- Repository
- https://github.com/pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linodeTerraform Provider.