UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

128 lines (127 loc) 4.66 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ## 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>; /** * A set of changes made as part of this action (\n\nmore details\n\n) */ actions?: pulumi.Input<pulumi.Input<inputs.organizations.ActionBatchesAction>[]>; /** * Information for callback used to send back results */ callback?: pulumi.Input<inputs.organizations.ActionBatchesCallback>; /** * Flag describing whether the action should be previewed before executing or not */ confirmed?: pulumi.Input<boolean>; /** * ID of the organization this action batch belongs to */ organizationId?: pulumi.Input<string>; /** * Status of action batch */ status?: pulumi.Input<inputs.organizations.ActionBatchesStatus>; /** * Flag describing whether actions should run synchronously or asynchronously */ synchronous?: pulumi.Input<boolean>; } /** * The set of arguments for constructing a ActionBatches resource. */ export interface ActionBatchesArgs { /** * actionBatchId path parameter. Action batch ID */ actionBatchId?: pulumi.Input<string>; /** * A set of changes made as part of this action (\n\nmore details\n\n) */ actions?: pulumi.Input<pulumi.Input<inputs.organizations.ActionBatchesAction>[]>; /** * Information for callback used to send back results */ callback?: pulumi.Input<inputs.organizations.ActionBatchesCallback>; /** * Flag describing whether the action should be previewed before executing or not */ confirmed?: pulumi.Input<boolean>; /** * 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>; }