import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = new meraki.organizations.ActionBatches("example", {
 *     actions: [{
 *         operation: "create",
 *         resource: "/devices/QXXX-XXXX-XXXX/switch/ports/3",
 *     }],
 *     callback: {
 *         httpServer: {
 *             id: "aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20vd2ViaG9va3M=",
 *         },
 *         payloadTemplate: {
 *             id: "wpt_2100",
 *         },
 *         sharedSecret: "secret",
 *         url: "https://webhook.site/28efa24e-f830-4d9f-a12b-fbb9e5035031",
 *     },
 *     confirmed: true,
 *     organizationId: "string",
 *     synchronous: true,
 * });
 * export const merakiOrganizationsActionBatchesExample = example;
 * ```
 *
 * ## Import
 *
 * ```sh
 * $ pulumi import meraki:organizations/actionBatches:ActionBatches example "action_batch_id,organization_id"
 * ```
 */
export declare class ActionBatches extends pulumi.CustomResource {
    /**
     * Get an existing ActionBatches 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?: ActionBatchesState, opts?: pulumi.CustomResourceOptions): ActionBatches;
    /**
     * Returns true if the given object is an instance of ActionBatches.  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 ActionBatches;
    /**
     * actionBatchId path parameter. Action batch ID
     */
    readonly actionBatchId: pulumi.Output<string>;
    /**
     * A set of changes made as part of this action (\n\nmore details\n\n)
     */
    readonly actions: pulumi.Output<outputs.organizations.ActionBatchesAction[]>;
    /**
     * Information for callback used to send back results
     */
    readonly callback: pulumi.Output<outputs.organizations.ActionBatchesCallback>;
    /**
     * Flag describing whether the action should be previewed before executing or not
     */
    readonly confirmed: pulumi.Output<boolean>;
    /**
     * ID of the organization this action batch belongs to
     */
    readonly organizationId: pulumi.Output<string>;
    /**
     * Status of action batch
     */
    readonly status: pulumi.Output<outputs.organizations.ActionBatchesStatus>;
    /**
     * Flag describing whether actions should run synchronously or asynchronously
     */
    readonly synchronous: pulumi.Output<boolean>;
    /**
     * Create a ActionBatches 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: ActionBatchesArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering ActionBatches resources.
 */
export interface ActionBatchesState {
    /**
     * actionBatchId path parameter. Action batch ID
     */
    actionBatchId?: pulumi.Input<string | undefined>;
    /**
     * A set of changes made as part of this action (\n\nmore details\n\n)
     */
    actions?: pulumi.Input<pulumi.Input<inputs.organizations.ActionBatchesAction>[] | undefined>;
    /**
     * Information for callback used to send back results
     */
    callback?: pulumi.Input<inputs.organizations.ActionBatchesCallback | undefined>;
    /**
     * Flag describing whether the action should be previewed before executing or not
     */
    confirmed?: pulumi.Input<boolean | undefined>;
    /**
     * ID of the organization this action batch belongs to
     */
    organizationId?: pulumi.Input<string | undefined>;
    /**
     * Status of action batch
     */
    status?: pulumi.Input<inputs.organizations.ActionBatchesStatus | undefined>;
    /**
     * Flag describing whether actions should run synchronously or asynchronously
     */
    synchronous?: pulumi.Input<boolean | undefined>;
}
/**
 * The set of arguments for constructing a ActionBatches resource.
 */
export interface ActionBatchesArgs {
    /**
     * actionBatchId path parameter. Action batch ID
     */
    actionBatchId?: pulumi.Input<string | undefined>;
    /**
     * A set of changes made as part of this action (\n\nmore details\n\n)
     */
    actions?: pulumi.Input<pulumi.Input<inputs.organizations.ActionBatchesAction>[] | undefined>;
    /**
     * Information for callback used to send back results
     */
    callback?: pulumi.Input<inputs.organizations.ActionBatchesCallback | undefined>;
    /**
     * Flag describing whether the action should be previewed before executing or not
     */
    confirmed?: pulumi.Input<boolean | undefined>;
    /**
     * ID of the organization this action batch belongs to
     */
    organizationId: pulumi.Input<string>;
    /**
     * Flag describing whether actions should run synchronously or asynchronously
     */
    synchronous?: pulumi.Input<boolean | undefined>;
}
//# sourceMappingURL=actionBatches.d.ts.map