Chronosphere v0.9.2 published on Monday, Sep 9, 2024 by Chronosphere
chronosphere.ClassicDashboard
Explore with Pulumi AI
Chronosphere v0.9.2 published on Monday, Sep 9, 2024 by Chronosphere
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 string
- The unique name of the resource.
- args ClassicDashboardArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args ClassicDashboardArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClassicDashboardArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
example, err := chronosphere.NewClassicDashboard(ctx, "classicDashboardResource", &chronosphere.ClassicDashboardArgs{
DashboardJson: pulumi.String("string"),
BucketId: pulumi.String("string"),
CollectionId: pulumi.String("string"),
})
var classicDashboardResource = new ClassicDashboard("classicDashboardResource", ClassicDashboardArgs.builder()
.dashboardJson("string")
.bucketId("string")
.collectionId("string")
.build());
classic_dashboard_resource = chronosphere.ClassicDashboard("classicDashboardResource",
dashboard_json="string",
bucket_id="string",
collection_id="string")
const classicDashboardResource = new chronosphere.ClassicDashboard("classicDashboardResource", {
dashboardJson: "string",
bucketId: "string",
collectionId: "string",
});
type: chronosphere:ClassicDashboard
properties:
bucketId: string
collectionId: string
dashboardJson: string
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
The ClassicDashboard resource accepts the following input properties:
- Dashboard
Json string - Bucket
Id string - Collection
Id string
- Dashboard
Json string - Bucket
Id string - Collection
Id string
- dashboard
Json String - bucket
Id String - collection
Id String
- dashboard
Json string - bucket
Id string - collection
Id string
- dashboard_
json str - bucket_
id str - collection_
id str
- dashboard
Json String - bucket
Id String - collection
Id 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Bucket
Id string - Collection
Id string - Dashboard
Json string
- Bucket
Id string - Collection
Id string - Dashboard
Json string
- bucket
Id String - collection
Id String - dashboard
Json String
- bucket
Id string - collection
Id string - dashboard
Json string
- bucket_
id str - collection_
id str - dashboard_
json str
- bucket
Id String - collection
Id String - dashboard
Json String
Package Details
- Repository
- chronosphere chronosphereio/pulumi-chronosphere
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
chronosphere
Terraform Provider.
Chronosphere v0.9.2 published on Monday, Sep 9, 2024 by Chronosphere