@pulumiverse/grafana
Version:
A Pulumi package for creating and managing grafana.
81 lines (80 loc) • 3.27 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Manages Grafana playlists using the new Grafana APIs.
*
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/)
* * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/apis/)
*/
export declare class AppsPlaylistV0Alpha1 extends pulumi.CustomResource {
/**
* Get an existing AppsPlaylistV0Alpha1 resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppsPlaylistV0Alpha1State, opts?: pulumi.CustomResourceOptions): AppsPlaylistV0Alpha1;
/**
* Returns true if the given object is an instance of AppsPlaylistV0Alpha1. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is AppsPlaylistV0Alpha1;
/**
* The metadata of the resource.
*/
readonly metadata: pulumi.Output<outputs.experimental.AppsPlaylistV0Alpha1Metadata | undefined>;
/**
* Options for applying the resource.
*/
readonly options: pulumi.Output<outputs.experimental.AppsPlaylistV0Alpha1Options | undefined>;
/**
* The spec of the resource.
*/
readonly spec: pulumi.Output<outputs.experimental.AppsPlaylistV0Alpha1Spec | undefined>;
/**
* Create a AppsPlaylistV0Alpha1 resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: AppsPlaylistV0Alpha1Args, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering AppsPlaylistV0Alpha1 resources.
*/
export interface AppsPlaylistV0Alpha1State {
/**
* The metadata of the resource.
*/
metadata?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Metadata>;
/**
* Options for applying the resource.
*/
options?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Options>;
/**
* The spec of the resource.
*/
spec?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Spec>;
}
/**
* The set of arguments for constructing a AppsPlaylistV0Alpha1 resource.
*/
export interface AppsPlaylistV0Alpha1Args {
/**
* The metadata of the resource.
*/
metadata?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Metadata>;
/**
* Options for applying the resource.
*/
options?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Options>;
/**
* The spec of the resource.
*/
spec?: pulumi.Input<inputs.experimental.AppsPlaylistV0Alpha1Spec>;
}