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

meraki.networks.VlanProfilesAssignmentsReassign

Explore with Pulumi AI

~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.

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.networks.VlanProfilesAssignmentsReassign;
import com.pulumi.meraki.networks.VlanProfilesAssignmentsReassignArgs;
import com.pulumi.meraki.networks.inputs.VlanProfilesAssignmentsReassignParametersArgs;
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 VlanProfilesAssignmentsReassign("example", VlanProfilesAssignmentsReassignArgs.builder()
            .networkId("string")
            .parameters(VlanProfilesAssignmentsReassignParametersArgs.builder()
                .serials("Q234-ABCD-5678")
                .stack_ids("1234")
                .vlan_profile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .build());

        ctx.export("merakiNetworksVlanProfilesAssignmentsReassignExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:networks:VlanProfilesAssignmentsReassign
    properties:
      networkId: string
      parameters:
        serials:
          - Q234-ABCD-5678
        stack_ids:
          - '1234'
        vlan_profile:
          iname: Profile1
outputs:
  merakiNetworksVlanProfilesAssignmentsReassignExample: ${example}
Copy

Create VlanProfilesAssignmentsReassign Resource

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

Constructor syntax

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

@overload
def VlanProfilesAssignmentsReassign(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    network_id: Optional[str] = None,
                                    parameters: Optional[VlanProfilesAssignmentsReassignParametersArgs] = None)
func NewVlanProfilesAssignmentsReassign(ctx *Context, name string, args VlanProfilesAssignmentsReassignArgs, opts ...ResourceOption) (*VlanProfilesAssignmentsReassign, error)
public VlanProfilesAssignmentsReassign(string name, VlanProfilesAssignmentsReassignArgs args, CustomResourceOptions? opts = null)
public VlanProfilesAssignmentsReassign(String name, VlanProfilesAssignmentsReassignArgs args)
public VlanProfilesAssignmentsReassign(String name, VlanProfilesAssignmentsReassignArgs args, CustomResourceOptions options)
type: meraki:networks:VlanProfilesAssignmentsReassign
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. VlanProfilesAssignmentsReassignArgs
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. VlanProfilesAssignmentsReassignArgs
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. VlanProfilesAssignmentsReassignArgs
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. VlanProfilesAssignmentsReassignArgs
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. VlanProfilesAssignmentsReassignArgs
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 vlanProfilesAssignmentsReassignResource = new Meraki.Networks.VlanProfilesAssignmentsReassign("vlanProfilesAssignmentsReassignResource", new()
{
    NetworkId = "string",
    Parameters = new Meraki.Networks.Inputs.VlanProfilesAssignmentsReassignParametersArgs
    {
        Serials = new[]
        {
            "string",
        },
        StackIds = new[]
        {
            "string",
        },
        VlanProfile = new Meraki.Networks.Inputs.VlanProfilesAssignmentsReassignParametersVlanProfileArgs
        {
            Iname = "string",
        },
    },
});
Copy
example, err := networks.NewVlanProfilesAssignmentsReassign(ctx, "vlanProfilesAssignmentsReassignResource", &networks.VlanProfilesAssignmentsReassignArgs{
	NetworkId: pulumi.String("string"),
	Parameters: &networks.VlanProfilesAssignmentsReassignParametersArgs{
		Serials: pulumi.StringArray{
			pulumi.String("string"),
		},
		StackIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		VlanProfile: &networks.VlanProfilesAssignmentsReassignParametersVlanProfileArgs{
			Iname: pulumi.String("string"),
		},
	},
})
Copy
var vlanProfilesAssignmentsReassignResource = new VlanProfilesAssignmentsReassign("vlanProfilesAssignmentsReassignResource", VlanProfilesAssignmentsReassignArgs.builder()
    .networkId("string")
    .parameters(VlanProfilesAssignmentsReassignParametersArgs.builder()
        .serials("string")
        .stackIds("string")
        .vlanProfile(VlanProfilesAssignmentsReassignParametersVlanProfileArgs.builder()
            .iname("string")
            .build())
        .build())
    .build());
Copy
vlan_profiles_assignments_reassign_resource = meraki.networks.VlanProfilesAssignmentsReassign("vlanProfilesAssignmentsReassignResource",
    network_id="string",
    parameters={
        "serials": ["string"],
        "stack_ids": ["string"],
        "vlan_profile": {
            "iname": "string",
        },
    })
Copy
const vlanProfilesAssignmentsReassignResource = new meraki.networks.VlanProfilesAssignmentsReassign("vlanProfilesAssignmentsReassignResource", {
    networkId: "string",
    parameters: {
        serials: ["string"],
        stackIds: ["string"],
        vlanProfile: {
            iname: "string",
        },
    },
});
Copy
type: meraki:networks:VlanProfilesAssignmentsReassign
properties:
    networkId: string
    parameters:
        serials:
            - string
        stackIds:
            - string
        vlanProfile:
            iname: string
Copy

VlanProfilesAssignmentsReassign 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 VlanProfilesAssignmentsReassign resource accepts the following input properties:

NetworkId This property is required. string
networkId path parameter. Network ID
Parameters This property is required. VlanProfilesAssignmentsReassignParameters
NetworkId This property is required. string
networkId path parameter. Network ID
Parameters This property is required. VlanProfilesAssignmentsReassignParametersArgs
networkId This property is required. String
networkId path parameter. Network ID
parameters This property is required. VlanProfilesAssignmentsReassignParameters
networkId This property is required. string
networkId path parameter. Network ID
parameters This property is required. VlanProfilesAssignmentsReassignParameters
network_id This property is required. str
networkId path parameter. Network ID
parameters This property is required. VlanProfilesAssignmentsReassignParametersArgs
networkId This property is required. String
networkId path parameter. Network ID
parameters This property is required. Property Map

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Item VlanProfilesAssignmentsReassignItem
Id string
The provider-assigned unique ID for this managed resource.
Item VlanProfilesAssignmentsReassignItem
id String
The provider-assigned unique ID for this managed resource.
item VlanProfilesAssignmentsReassignItem
id string
The provider-assigned unique ID for this managed resource.
item VlanProfilesAssignmentsReassignItem
id str
The provider-assigned unique ID for this managed resource.
item VlanProfilesAssignmentsReassignItem
id String
The provider-assigned unique ID for this managed resource.
item Property Map

Look up Existing VlanProfilesAssignmentsReassign Resource

Get an existing VlanProfilesAssignmentsReassign 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?: VlanProfilesAssignmentsReassignState, opts?: CustomResourceOptions): VlanProfilesAssignmentsReassign
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        item: Optional[VlanProfilesAssignmentsReassignItemArgs] = None,
        network_id: Optional[str] = None,
        parameters: Optional[VlanProfilesAssignmentsReassignParametersArgs] = None) -> VlanProfilesAssignmentsReassign
func GetVlanProfilesAssignmentsReassign(ctx *Context, name string, id IDInput, state *VlanProfilesAssignmentsReassignState, opts ...ResourceOption) (*VlanProfilesAssignmentsReassign, error)
public static VlanProfilesAssignmentsReassign Get(string name, Input<string> id, VlanProfilesAssignmentsReassignState? state, CustomResourceOptions? opts = null)
public static VlanProfilesAssignmentsReassign get(String name, Output<String> id, VlanProfilesAssignmentsReassignState state, CustomResourceOptions options)
resources:  _:    type: meraki:networks:VlanProfilesAssignmentsReassign    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.

Supporting Types

VlanProfilesAssignmentsReassignItem
, VlanProfilesAssignmentsReassignItemArgs

Serials List<string>
Array of Device Serials
StackIds List<string>
Array of Switch Stack IDs
VlanProfile VlanProfilesAssignmentsReassignItemVlanProfile
The VLAN Profile
Serials []string
Array of Device Serials
StackIds []string
Array of Switch Stack IDs
VlanProfile VlanProfilesAssignmentsReassignItemVlanProfile
The VLAN Profile
serials List<String>
Array of Device Serials
stackIds List<String>
Array of Switch Stack IDs
vlanProfile VlanProfilesAssignmentsReassignItemVlanProfile
The VLAN Profile
serials string[]
Array of Device Serials
stackIds string[]
Array of Switch Stack IDs
vlanProfile VlanProfilesAssignmentsReassignItemVlanProfile
The VLAN Profile
serials Sequence[str]
Array of Device Serials
stack_ids Sequence[str]
Array of Switch Stack IDs
vlan_profile VlanProfilesAssignmentsReassignItemVlanProfile
The VLAN Profile
serials List<String>
Array of Device Serials
stackIds List<String>
Array of Switch Stack IDs
vlanProfile Property Map
The VLAN Profile

VlanProfilesAssignmentsReassignItemVlanProfile
, VlanProfilesAssignmentsReassignItemVlanProfileArgs

Iname string
IName of the VLAN Profile
Name string
Name of the VLAN Profile
Iname string
IName of the VLAN Profile
Name string
Name of the VLAN Profile
iname String
IName of the VLAN Profile
name String
Name of the VLAN Profile
iname string
IName of the VLAN Profile
name string
Name of the VLAN Profile
iname str
IName of the VLAN Profile
name str
Name of the VLAN Profile
iname String
IName of the VLAN Profile
name String
Name of the VLAN Profile

VlanProfilesAssignmentsReassignParameters
, VlanProfilesAssignmentsReassignParametersArgs

Serials List<string>
Array of Device Serials
StackIds List<string>
Array of Switch Stack IDs
VlanProfile VlanProfilesAssignmentsReassignParametersVlanProfile
The VLAN Profile
Serials []string
Array of Device Serials
StackIds []string
Array of Switch Stack IDs
VlanProfile VlanProfilesAssignmentsReassignParametersVlanProfile
The VLAN Profile
serials List<String>
Array of Device Serials
stackIds List<String>
Array of Switch Stack IDs
vlanProfile VlanProfilesAssignmentsReassignParametersVlanProfile
The VLAN Profile
serials string[]
Array of Device Serials
stackIds string[]
Array of Switch Stack IDs
vlanProfile VlanProfilesAssignmentsReassignParametersVlanProfile
The VLAN Profile
serials Sequence[str]
Array of Device Serials
stack_ids Sequence[str]
Array of Switch Stack IDs
vlan_profile VlanProfilesAssignmentsReassignParametersVlanProfile
The VLAN Profile
serials List<String>
Array of Device Serials
stackIds List<String>
Array of Switch Stack IDs
vlanProfile Property Map
The VLAN Profile

VlanProfilesAssignmentsReassignParametersVlanProfile
, VlanProfilesAssignmentsReassignParametersVlanProfileArgs

Iname string
IName of the VLAN Profile
Iname string
IName of the VLAN Profile
iname String
IName of the VLAN Profile
iname string
IName of the VLAN Profile
iname str
IName of the VLAN Profile
iname String
IName of the VLAN Profile

Package Details

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