@pulumiverse/grafana
Version:
A Pulumi package for creating and managing grafana.
102 lines (101 loc) • 4.25 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
/**
* Manages Grafana Git Sync connections used by repositories for provider authentication.
*/
export declare class ProvisioningConnection extends pulumi.CustomResource {
/**
* Get an existing ProvisioningConnection 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?: ProvisioningConnectionState, opts?: pulumi.CustomResourceOptions): ProvisioningConnection;
/**
* Returns true if the given object is an instance of ProvisioningConnection. 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 ProvisioningConnection;
/**
* The metadata of the resource.
*/
readonly metadata: pulumi.Output<outputs.apps.v0alpha1.ProvisioningConnectionMetadata | undefined>;
/**
* Options for applying the resource.
*/
readonly options: pulumi.Output<outputs.apps.v0alpha1.ProvisioningConnectionOptions | undefined>;
/**
* Sensitive credentials. Values are write-only and never stored in Terraform state.
*/
readonly secure: pulumi.Output<outputs.apps.v0alpha1.ProvisioningConnectionSecure | undefined>;
/**
* Set this to 1 when using `secure`, then increment it to trigger re-application of secure values.
*/
readonly secureVersion: pulumi.Output<number | undefined>;
/**
* The spec of the resource.
*/
readonly spec: pulumi.Output<outputs.apps.v0alpha1.ProvisioningConnectionSpec | undefined>;
/**
* Create a ProvisioningConnection 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?: ProvisioningConnectionArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ProvisioningConnection resources.
*/
export interface ProvisioningConnectionState {
/**
* The metadata of the resource.
*/
metadata?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionMetadata>;
/**
* Options for applying the resource.
*/
options?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionOptions>;
/**
* Sensitive credentials. Values are write-only and never stored in Terraform state.
*/
secure?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionSecure>;
/**
* Set this to 1 when using `secure`, then increment it to trigger re-application of secure values.
*/
secureVersion?: pulumi.Input<number>;
/**
* The spec of the resource.
*/
spec?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionSpec>;
}
/**
* The set of arguments for constructing a ProvisioningConnection resource.
*/
export interface ProvisioningConnectionArgs {
/**
* The metadata of the resource.
*/
metadata?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionMetadata>;
/**
* Options for applying the resource.
*/
options?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionOptions>;
/**
* Sensitive credentials. Values are write-only and never stored in Terraform state.
*/
secure?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionSecure>;
/**
* Set this to 1 when using `secure`, then increment it to trigger re-application of secure values.
*/
secureVersion?: pulumi.Input<number>;
/**
* The spec of the resource.
*/
spec?: pulumi.Input<inputs.apps.v0alpha1.ProvisioningConnectionSpec>;
}