Show / Hide Table of Contents

Class GetObjectStorageCluster

Inheritance
System.Object
GetObjectStorageCluster
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Linode
Assembly: Pulumi.Linode.dll
Syntax
public static class GetObjectStorageCluster

Methods

View Source

InvokeAsync(GetObjectStorageClusterArgs, InvokeOptions)

Provides information about a Linode Object Storage Cluster

{{% examples %}}

Example Usage

{{% example %}}

The following example shows how one might use this data source to access information about a Linode Object Storage Cluster.

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",
    }));
}

}

{{% /example %}} {{% /examples %}}

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.

Declaration
public static Task<GetObjectStorageClusterResult> InvokeAsync(GetObjectStorageClusterArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetObjectStorageClusterArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetObjectStorageClusterResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.