1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. organizations
  5. ActionBatches
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.organizations.ActionBatches

Explore with Pulumi AI

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.ActionBatches;
import com.pulumi.meraki.organizations.ActionBatchesArgs;
import com.pulumi.meraki.organizations.inputs.ActionBatchesActionArgs;
import com.pulumi.meraki.organizations.inputs.ActionBatchesCallbackArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ActionBatches("example", ActionBatchesArgs.builder()
            .actions(ActionBatchesActionArgs.builder()
                .operation("create")
                .resource("/devices/QXXX-XXXX-XXXX/switch/ports/3")
                .build())
            .callback(ActionBatchesCallbackArgs.builder()
                .http_server(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .payload_template(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .shared_secret("secret")
                .url("https://webhook.site/28efa24e-f830-4d9f-a12b-fbb9e5035031")
                .build())
            .confirmed(true)
            .organizationId("string")
            .synchronous(true)
            .build());

        ctx.export("merakiOrganizationsActionBatchesExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:organizations:ActionBatches
    properties:
      actions:
        - operation: create
          resource: /devices/QXXX-XXXX-XXXX/switch/ports/3
      callback:
        http_server:
          id: aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20vd2ViaG9va3M=
        payload_template:
          id: wpt_2100
        shared_secret: secret
        url: https://webhook.site/28efa24e-f830-4d9f-a12b-fbb9e5035031
      confirmed: true
      organizationId: string
      synchronous: true
outputs:
  merakiOrganizationsActionBatchesExample: ${example}
Copy

Create ActionBatches Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ActionBatches(name: string, args: ActionBatchesArgs, opts?: CustomResourceOptions);
@overload
def ActionBatches(resource_name: str,
                  args: ActionBatchesArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def ActionBatches(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  organization_id: Optional[str] = None,
                  action_batch_id: Optional[str] = None,
                  actions: Optional[Sequence[ActionBatchesActionArgs]] = None,
                  callback: Optional[ActionBatchesCallbackArgs] = None,
                  confirmed: Optional[bool] = None,
                  synchronous: Optional[bool] = None)
func NewActionBatches(ctx *Context, name string, args ActionBatchesArgs, opts ...ResourceOption) (*ActionBatches, error)
public ActionBatches(string name, ActionBatchesArgs args, CustomResourceOptions? opts = null)
public ActionBatches(String name, ActionBatchesArgs args)
public ActionBatches(String name, ActionBatchesArgs args, CustomResourceOptions options)
type: meraki:organizations:ActionBatches
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ActionBatchesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ActionBatchesArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ActionBatchesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ActionBatchesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ActionBatchesArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var actionBatchesResource = new Meraki.Organizations.ActionBatches("actionBatchesResource", new()
{
    OrganizationId = "string",
    ActionBatchId = "string",
    Actions = new[]
    {
        new Meraki.Organizations.Inputs.ActionBatchesActionArgs
        {
            Body = "string",
            Operation = "string",
            Resource = "string",
        },
    },
    Callback = new Meraki.Organizations.Inputs.ActionBatchesCallbackArgs
    {
        HttpServer = new Meraki.Organizations.Inputs.ActionBatchesCallbackHttpServerArgs
        {
            Id = "string",
        },
        Id = "string",
        PayloadTemplate = new Meraki.Organizations.Inputs.ActionBatchesCallbackPayloadTemplateArgs
        {
            Id = "string",
        },
        SharedSecret = "string",
        Status = "string",
        Url = "string",
    },
    Confirmed = false,
    Synchronous = false,
});
Copy
example, err := organizations.NewActionBatches(ctx, "actionBatchesResource", &organizations.ActionBatchesArgs{
	OrganizationId: pulumi.String("string"),
	ActionBatchId:  pulumi.String("string"),
	Actions: organizations.ActionBatchesActionArray{
		&organizations.ActionBatchesActionArgs{
			Body:      pulumi.String("string"),
			Operation: pulumi.String("string"),
			Resource:  pulumi.String("string"),
		},
	},
	Callback: &organizations.ActionBatchesCallbackArgs{
		HttpServer: &organizations.ActionBatchesCallbackHttpServerArgs{
			Id: pulumi.String("string"),
		},
		Id: pulumi.String("string"),
		PayloadTemplate: &organizations.ActionBatchesCallbackPayloadTemplateArgs{
			Id: pulumi.String("string"),
		},
		SharedSecret: pulumi.String("string"),
		Status:       pulumi.String("string"),
		Url:          pulumi.String("string"),
	},
	Confirmed:   pulumi.Bool(false),
	Synchronous: pulumi.Bool(false),
})
Copy
var actionBatchesResource = new ActionBatches("actionBatchesResource", ActionBatchesArgs.builder()
    .organizationId("string")
    .actionBatchId("string")
    .actions(ActionBatchesActionArgs.builder()
        .body("string")
        .operation("string")
        .resource("string")
        .build())
    .callback(ActionBatchesCallbackArgs.builder()
        .httpServer(ActionBatchesCallbackHttpServerArgs.builder()
            .id("string")
            .build())
        .id("string")
        .payloadTemplate(ActionBatchesCallbackPayloadTemplateArgs.builder()
            .id("string")
            .build())
        .sharedSecret("string")
        .status("string")
        .url("string")
        .build())
    .confirmed(false)
    .synchronous(false)
    .build());
Copy
action_batches_resource = meraki.organizations.ActionBatches("actionBatchesResource",
    organization_id="string",
    action_batch_id="string",
    actions=[{
        "body": "string",
        "operation": "string",
        "resource": "string",
    }],
    callback={
        "http_server": {
            "id": "string",
        },
        "id": "string",
        "payload_template": {
            "id": "string",
        },
        "shared_secret": "string",
        "status": "string",
        "url": "string",
    },
    confirmed=False,
    synchronous=False)
Copy
const actionBatchesResource = new meraki.organizations.ActionBatches("actionBatchesResource", {
    organizationId: "string",
    actionBatchId: "string",
    actions: [{
        body: "string",
        operation: "string",
        resource: "string",
    }],
    callback: {
        httpServer: {
            id: "string",
        },
        id: "string",
        payloadTemplate: {
            id: "string",
        },
        sharedSecret: "string",
        status: "string",
        url: "string",
    },
    confirmed: false,
    synchronous: false,
});
Copy
type: meraki:organizations:ActionBatches
properties:
    actionBatchId: string
    actions:
        - body: string
          operation: string
          resource: string
    callback:
        httpServer:
            id: string
        id: string
        payloadTemplate:
            id: string
        sharedSecret: string
        status: string
        url: string
    confirmed: false
    organizationId: string
    synchronous: false
Copy

ActionBatches Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ActionBatches resource accepts the following input properties:

OrganizationId This property is required. string
ID of the organization this action batch belongs to
ActionBatchId string
actionBatchId path parameter. Action batch ID
Actions List<ActionBatchesAction>
A set of changes made as part of this action (\n\nmore details\n\n)
Callback ActionBatchesCallback
Information for callback used to send back results
Confirmed bool
Flag describing whether the action should be previewed before executing or not
Synchronous bool
Flag describing whether actions should run synchronously or asynchronously
OrganizationId This property is required. string
ID of the organization this action batch belongs to
ActionBatchId string
actionBatchId path parameter. Action batch ID
Actions []ActionBatchesActionArgs
A set of changes made as part of this action (\n\nmore details\n\n)
Callback ActionBatchesCallbackArgs
Information for callback used to send back results
Confirmed bool
Flag describing whether the action should be previewed before executing or not
Synchronous bool
Flag describing whether actions should run synchronously or asynchronously
organizationId This property is required. String
ID of the organization this action batch belongs to
actionBatchId String
actionBatchId path parameter. Action batch ID
actions List<ActionBatchesAction>
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallback
Information for callback used to send back results
confirmed Boolean
Flag describing whether the action should be previewed before executing or not
synchronous Boolean
Flag describing whether actions should run synchronously or asynchronously
organizationId This property is required. string
ID of the organization this action batch belongs to
actionBatchId string
actionBatchId path parameter. Action batch ID
actions ActionBatchesAction[]
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallback
Information for callback used to send back results
confirmed boolean
Flag describing whether the action should be previewed before executing or not
synchronous boolean
Flag describing whether actions should run synchronously or asynchronously
organization_id This property is required. str
ID of the organization this action batch belongs to
action_batch_id str
actionBatchId path parameter. Action batch ID
actions Sequence[ActionBatchesActionArgs]
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallbackArgs
Information for callback used to send back results
confirmed bool
Flag describing whether the action should be previewed before executing or not
synchronous bool
Flag describing whether actions should run synchronously or asynchronously
organizationId This property is required. String
ID of the organization this action batch belongs to
actionBatchId String
actionBatchId path parameter. Action batch ID
actions List<Property Map>
A set of changes made as part of this action (\n\nmore details\n\n)
callback Property Map
Information for callback used to send back results
confirmed Boolean
Flag describing whether the action should be previewed before executing or not
synchronous Boolean
Flag describing whether actions should run synchronously or asynchronously

Outputs

All input properties are implicitly available as output properties. Additionally, the ActionBatches resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Status ActionBatchesStatus
Status of action batch
Id string
The provider-assigned unique ID for this managed resource.
Status ActionBatchesStatus
Status of action batch
id String
The provider-assigned unique ID for this managed resource.
status ActionBatchesStatus
Status of action batch
id string
The provider-assigned unique ID for this managed resource.
status ActionBatchesStatus
Status of action batch
id str
The provider-assigned unique ID for this managed resource.
status ActionBatchesStatus
Status of action batch
id String
The provider-assigned unique ID for this managed resource.
status Property Map
Status of action batch

Look up Existing ActionBatches Resource

Get an existing ActionBatches resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ActionBatchesState, opts?: CustomResourceOptions): ActionBatches
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action_batch_id: Optional[str] = None,
        actions: Optional[Sequence[ActionBatchesActionArgs]] = None,
        callback: Optional[ActionBatchesCallbackArgs] = None,
        confirmed: Optional[bool] = None,
        organization_id: Optional[str] = None,
        status: Optional[ActionBatchesStatusArgs] = None,
        synchronous: Optional[bool] = None) -> ActionBatches
func GetActionBatches(ctx *Context, name string, id IDInput, state *ActionBatchesState, opts ...ResourceOption) (*ActionBatches, error)
public static ActionBatches Get(string name, Input<string> id, ActionBatchesState? state, CustomResourceOptions? opts = null)
public static ActionBatches get(String name, Output<String> id, ActionBatchesState state, CustomResourceOptions options)
resources:  _:    type: meraki:organizations:ActionBatches    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ActionBatchId string
actionBatchId path parameter. Action batch ID
Actions List<ActionBatchesAction>
A set of changes made as part of this action (\n\nmore details\n\n)
Callback ActionBatchesCallback
Information for callback used to send back results
Confirmed bool
Flag describing whether the action should be previewed before executing or not
OrganizationId string
ID of the organization this action batch belongs to
Status ActionBatchesStatus
Status of action batch
Synchronous bool
Flag describing whether actions should run synchronously or asynchronously
ActionBatchId string
actionBatchId path parameter. Action batch ID
Actions []ActionBatchesActionArgs
A set of changes made as part of this action (\n\nmore details\n\n)
Callback ActionBatchesCallbackArgs
Information for callback used to send back results
Confirmed bool
Flag describing whether the action should be previewed before executing or not
OrganizationId string
ID of the organization this action batch belongs to
Status ActionBatchesStatusArgs
Status of action batch
Synchronous bool
Flag describing whether actions should run synchronously or asynchronously
actionBatchId String
actionBatchId path parameter. Action batch ID
actions List<ActionBatchesAction>
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallback
Information for callback used to send back results
confirmed Boolean
Flag describing whether the action should be previewed before executing or not
organizationId String
ID of the organization this action batch belongs to
status ActionBatchesStatus
Status of action batch
synchronous Boolean
Flag describing whether actions should run synchronously or asynchronously
actionBatchId string
actionBatchId path parameter. Action batch ID
actions ActionBatchesAction[]
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallback
Information for callback used to send back results
confirmed boolean
Flag describing whether the action should be previewed before executing or not
organizationId string
ID of the organization this action batch belongs to
status ActionBatchesStatus
Status of action batch
synchronous boolean
Flag describing whether actions should run synchronously or asynchronously
action_batch_id str
actionBatchId path parameter. Action batch ID
actions Sequence[ActionBatchesActionArgs]
A set of changes made as part of this action (\n\nmore details\n\n)
callback ActionBatchesCallbackArgs
Information for callback used to send back results
confirmed bool
Flag describing whether the action should be previewed before executing or not
organization_id str
ID of the organization this action batch belongs to
status ActionBatchesStatusArgs
Status of action batch
synchronous bool
Flag describing whether actions should run synchronously or asynchronously
actionBatchId String
actionBatchId path parameter. Action batch ID
actions List<Property Map>
A set of changes made as part of this action (\n\nmore details\n\n)
callback Property Map
Information for callback used to send back results
confirmed Boolean
Flag describing whether the action should be previewed before executing or not
organizationId String
ID of the organization this action batch belongs to
status Property Map
Status of action batch
synchronous Boolean
Flag describing whether actions should run synchronously or asynchronously

Supporting Types

ActionBatchesAction
, ActionBatchesActionArgs

Body string
Data provided in the body of the Action. Contents depend on the Action type
Operation string
The operation to be used by this action
Resource string
Unique identifier for the resource to be acted on
Body string
Data provided in the body of the Action. Contents depend on the Action type
Operation string
The operation to be used by this action
Resource string
Unique identifier for the resource to be acted on
body String
Data provided in the body of the Action. Contents depend on the Action type
operation String
The operation to be used by this action
resource String
Unique identifier for the resource to be acted on
body string
Data provided in the body of the Action. Contents depend on the Action type
operation string
The operation to be used by this action
resource string
Unique identifier for the resource to be acted on
body str
Data provided in the body of the Action. Contents depend on the Action type
operation str
The operation to be used by this action
resource str
Unique identifier for the resource to be acted on
body String
Data provided in the body of the Action. Contents depend on the Action type
operation String
The operation to be used by this action
resource String
Unique identifier for the resource to be acted on

ActionBatchesCallback
, ActionBatchesCallbackArgs

HttpServer ActionBatchesCallbackHttpServer
The webhook receiver used for the callback webhook.
Id string
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
PayloadTemplate ActionBatchesCallbackPayloadTemplate
The payload template of the webhook used for the callback
SharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
Status string
The status of the callback
Url string
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver
HttpServer ActionBatchesCallbackHttpServer
The webhook receiver used for the callback webhook.
Id string
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
PayloadTemplate ActionBatchesCallbackPayloadTemplate
The payload template of the webhook used for the callback
SharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
Status string
The status of the callback
Url string
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver
httpServer ActionBatchesCallbackHttpServer
The webhook receiver used for the callback webhook.
id String
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
payloadTemplate ActionBatchesCallbackPayloadTemplate
The payload template of the webhook used for the callback
sharedSecret String
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
status String
The status of the callback
url String
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver
httpServer ActionBatchesCallbackHttpServer
The webhook receiver used for the callback webhook.
id string
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
payloadTemplate ActionBatchesCallbackPayloadTemplate
The payload template of the webhook used for the callback
sharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
status string
The status of the callback
url string
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver
http_server ActionBatchesCallbackHttpServer
The webhook receiver used for the callback webhook.
id str
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
payload_template ActionBatchesCallbackPayloadTemplate
The payload template of the webhook used for the callback
shared_secret str
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
status str
The status of the callback
url str
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver
httpServer Property Map
The webhook receiver used for the callback webhook.
id String
The ID of the callback. To check the status of the callback, use this ID in a request to /webhooks/callbacks/statuses/{id}
payloadTemplate Property Map
The payload template of the webhook used for the callback
sharedSecret String
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
status String
The status of the callback
url String
The callback URL for the webhook target. This was either provided in the original request or comes from a configured webhook receiver

ActionBatchesCallbackHttpServer
, ActionBatchesCallbackHttpServerArgs

Id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
Id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id String
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id str
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id String
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.

ActionBatchesCallbackPayloadTemplate
, ActionBatchesCallbackPayloadTemplateArgs

Id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
Id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id String
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id str
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id String
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.

ActionBatchesStatus
, ActionBatchesStatusArgs

Completed bool
Flag describing whether all actions in the action batch have completed
CreatedResources List<ActionBatchesStatusCreatedResource>
Resources created as a result of this action batch
Errors List<string>
List of errors encountered when running actions in the action batch
Failed bool
Flag describing whether any actions in the action batch failed
Completed bool
Flag describing whether all actions in the action batch have completed
CreatedResources []ActionBatchesStatusCreatedResource
Resources created as a result of this action batch
Errors []string
List of errors encountered when running actions in the action batch
Failed bool
Flag describing whether any actions in the action batch failed
completed Boolean
Flag describing whether all actions in the action batch have completed
createdResources List<ActionBatchesStatusCreatedResource>
Resources created as a result of this action batch
errors List<String>
List of errors encountered when running actions in the action batch
failed Boolean
Flag describing whether any actions in the action batch failed
completed boolean
Flag describing whether all actions in the action batch have completed
createdResources ActionBatchesStatusCreatedResource[]
Resources created as a result of this action batch
errors string[]
List of errors encountered when running actions in the action batch
failed boolean
Flag describing whether any actions in the action batch failed
completed bool
Flag describing whether all actions in the action batch have completed
created_resources Sequence[ActionBatchesStatusCreatedResource]
Resources created as a result of this action batch
errors Sequence[str]
List of errors encountered when running actions in the action batch
failed bool
Flag describing whether any actions in the action batch failed
completed Boolean
Flag describing whether all actions in the action batch have completed
createdResources List<Property Map>
Resources created as a result of this action batch
errors List<String>
List of errors encountered when running actions in the action batch
failed Boolean
Flag describing whether any actions in the action batch failed

ActionBatchesStatusCreatedResource
, ActionBatchesStatusCreatedResourceArgs

Id string
ID of the created resource
Uri string
URI, not including base, of the created resource
Id string
ID of the created resource
Uri string
URI, not including base, of the created resource
id String
ID of the created resource
uri String
URI, not including base, of the created resource
id string
ID of the created resource
uri string
URI, not including base, of the created resource
id str
ID of the created resource
uri str
URI, not including base, of the created resource
id String
ID of the created resource
uri String
URI, not including base, of the created resource

Import

$ pulumi import meraki:organizations/actionBatches:ActionBatches example "action_batch_id,organization_id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.