import * as pulumi from "@pulumi/pulumi";
export declare class JiraIntegration extends pulumi.CustomResource {
    /**
     * Get an existing JiraIntegration 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?: JiraIntegrationState, opts?: pulumi.CustomResourceOptions): JiraIntegration;
    /**
     * Returns true if the given object is an instance of JiraIntegration.  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 JiraIntegration;
    /**
     * Whether to automatically create issues in Jira on incident start.
     */
    readonly automaticIssueCreation: pulumi.Output<boolean>;
    /**
     * Due to required authentication in Jira, the integration has to be created and removed in Better Stack web UI. You can
     * set the ID of the Jira Integration to control in Better Stack, and it will be auto-imported during resource creation.
     */
    readonly betterStackId: pulumi.Output<string | undefined>;
    /**
     * JSON object representing Jira fields.
     */
    readonly jiraFieldsJson: pulumi.Output<string>;
    /**
     * The Jira issue type ID.
     */
    readonly jiraIssueTypeId: pulumi.Output<string>;
    /**
     * The Jira project key.
     */
    readonly jiraProjectKey: pulumi.Output<string>;
    /**
     * The name of the Jira Integration.
     */
    readonly name: pulumi.Output<string>;
    /**
     * Create a JiraIntegration 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?: JiraIntegrationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering JiraIntegration resources.
 */
export interface JiraIntegrationState {
    /**
     * Whether to automatically create issues in Jira on incident start.
     */
    automaticIssueCreation?: pulumi.Input<boolean>;
    /**
     * Due to required authentication in Jira, the integration has to be created and removed in Better Stack web UI. You can
     * set the ID of the Jira Integration to control in Better Stack, and it will be auto-imported during resource creation.
     */
    betterStackId?: pulumi.Input<string>;
    /**
     * JSON object representing Jira fields.
     */
    jiraFieldsJson?: pulumi.Input<string>;
    /**
     * The Jira issue type ID.
     */
    jiraIssueTypeId?: pulumi.Input<string>;
    /**
     * The Jira project key.
     */
    jiraProjectKey?: pulumi.Input<string>;
    /**
     * The name of the Jira Integration.
     */
    name?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a JiraIntegration resource.
 */
export interface JiraIntegrationArgs {
    /**
     * Whether to automatically create issues in Jira on incident start.
     */
    automaticIssueCreation?: pulumi.Input<boolean>;
    /**
     * Due to required authentication in Jira, the integration has to be created and removed in Better Stack web UI. You can
     * set the ID of the Jira Integration to control in Better Stack, and it will be auto-imported during resource creation.
     */
    betterStackId?: pulumi.Input<string>;
    /**
     * JSON object representing Jira fields.
     */
    jiraFieldsJson?: pulumi.Input<string>;
    /**
     * The Jira issue type ID.
     */
    jiraIssueTypeId?: pulumi.Input<string>;
    /**
     * The Jira project key.
     */
    jiraProjectKey?: pulumi.Input<string>;
    /**
     * The name of the Jira Integration.
     */
    name?: pulumi.Input<string>;
}
