1. Packages
  2. Chronosphere
  3. API Docs
  4. ClassicDashboard
Chronosphere v0.9.8 published on Thursday, Apr 3, 2025 by Chronosphere

chronosphere.ClassicDashboard

Explore with Pulumi AI

Create ClassicDashboard Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ClassicDashboard(name: string, args: ClassicDashboardArgs, opts?: CustomResourceOptions);
@overload
def ClassicDashboard(resource_name: str,
                     args: ClassicDashboardArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def ClassicDashboard(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     dashboard_json: Optional[str] = None,
                     bucket_id: Optional[str] = None,
                     collection_id: Optional[str] = None)
func NewClassicDashboard(ctx *Context, name string, args ClassicDashboardArgs, opts ...ResourceOption) (*ClassicDashboard, error)
public ClassicDashboard(string name, ClassicDashboardArgs args, CustomResourceOptions? opts = null)
public ClassicDashboard(String name, ClassicDashboardArgs args)
public ClassicDashboard(String name, ClassicDashboardArgs args, CustomResourceOptions options)
type: chronosphere:ClassicDashboard
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ClassicDashboardArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ClassicDashboardArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ClassicDashboardArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ClassicDashboardArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ClassicDashboardArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var classicDashboardResource = new Pulumi.ClassicDashboard("classicDashboardResource", new()
{
    DashboardJson = "string",
    BucketId = "string",
    CollectionId = "string",
});
Copy
example, err := chronosphere.NewClassicDashboard(ctx, "classicDashboardResource", &chronosphere.ClassicDashboardArgs{
	DashboardJson: pulumi.String("string"),
	BucketId:      pulumi.String("string"),
	CollectionId:  pulumi.String("string"),
})
Copy
var classicDashboardResource = new ClassicDashboard("classicDashboardResource", ClassicDashboardArgs.builder()
    .dashboardJson("string")
    .bucketId("string")
    .collectionId("string")
    .build());
Copy
classic_dashboard_resource = chronosphere.ClassicDashboard("classicDashboardResource",
    dashboard_json="string",
    bucket_id="string",
    collection_id="string")
Copy
const classicDashboardResource = new chronosphere.ClassicDashboard("classicDashboardResource", {
    dashboardJson: "string",
    bucketId: "string",
    collectionId: "string",
});
Copy
type: chronosphere:ClassicDashboard
properties:
    bucketId: string
    collectionId: string
    dashboardJson: string
Copy

ClassicDashboard Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ClassicDashboard resource accepts the following input properties:

DashboardJson This property is required. string
BucketId string
CollectionId string
DashboardJson This property is required. string
BucketId string
CollectionId string
dashboardJson This property is required. String
bucketId String
collectionId String
dashboardJson This property is required. string
bucketId string
collectionId string
dashboard_json This property is required. str
bucket_id str
collection_id str
dashboardJson This property is required. String
bucketId String
collectionId String

Outputs

All input properties are implicitly available as output properties. Additionally, the ClassicDashboard resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ClassicDashboard Resource

Get an existing ClassicDashboard resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ClassicDashboardState, opts?: CustomResourceOptions): ClassicDashboard
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket_id: Optional[str] = None,
        collection_id: Optional[str] = None,
        dashboard_json: Optional[str] = None) -> ClassicDashboard
func GetClassicDashboard(ctx *Context, name string, id IDInput, state *ClassicDashboardState, opts ...ResourceOption) (*ClassicDashboard, error)
public static ClassicDashboard Get(string name, Input<string> id, ClassicDashboardState? state, CustomResourceOptions? opts = null)
public static ClassicDashboard get(String name, Output<String> id, ClassicDashboardState state, CustomResourceOptions options)
resources:  _:    type: chronosphere:ClassicDashboard    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:

Package Details

Repository
chronosphere chronosphereio/pulumi-chronosphere
License
Apache-2.0
Notes
This Pulumi package is based on the chronosphere Terraform Provider.