1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. WirelessEthernetPortsProfilesAssign
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.networks.WirelessEthernetPortsProfilesAssign

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    ~>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.WirelessEthernetPortsProfilesAssign;
    import com.pulumi.meraki.networks.WirelessEthernetPortsProfilesAssignArgs;
    import com.pulumi.meraki.networks.inputs.WirelessEthernetPortsProfilesAssignParametersArgs;
    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 WirelessEthernetPortsProfilesAssign("example", WirelessEthernetPortsProfilesAssignArgs.builder()
                .networkId("string")
                .parameters(WirelessEthernetPortsProfilesAssignParametersArgs.builder()
                    .profile_id("1001")
                    .serials(                
                        "Q234-ABCD-0001",
                        "Q234-ABCD-0002",
                        "Q234-ABCD-0003")
                    .build())
                .build());
    
            ctx.export("merakiNetworksWirelessEthernetPortsProfilesAssignExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:WirelessEthernetPortsProfilesAssign
        properties:
          networkId: string
          parameters:
            profile_id: '1001'
            serials:
              - Q234-ABCD-0001
              - Q234-ABCD-0002
              - Q234-ABCD-0003
    outputs:
      merakiNetworksWirelessEthernetPortsProfilesAssignExample: ${example}
    

    Create WirelessEthernetPortsProfilesAssign Resource

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

    Constructor syntax

    new WirelessEthernetPortsProfilesAssign(name: string, args: WirelessEthernetPortsProfilesAssignArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessEthernetPortsProfilesAssign(resource_name: str,
                                            args: WirelessEthernetPortsProfilesAssignArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessEthernetPortsProfilesAssign(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            network_id: Optional[str] = None,
                                            parameters: Optional[WirelessEthernetPortsProfilesAssignParametersArgs] = None)
    func NewWirelessEthernetPortsProfilesAssign(ctx *Context, name string, args WirelessEthernetPortsProfilesAssignArgs, opts ...ResourceOption) (*WirelessEthernetPortsProfilesAssign, error)
    public WirelessEthernetPortsProfilesAssign(string name, WirelessEthernetPortsProfilesAssignArgs args, CustomResourceOptions? opts = null)
    public WirelessEthernetPortsProfilesAssign(String name, WirelessEthernetPortsProfilesAssignArgs args)
    public WirelessEthernetPortsProfilesAssign(String name, WirelessEthernetPortsProfilesAssignArgs args, CustomResourceOptions options)
    
    type: meraki:networks:WirelessEthernetPortsProfilesAssign
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WirelessEthernetPortsProfilesAssignArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WirelessEthernetPortsProfilesAssignArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WirelessEthernetPortsProfilesAssignArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessEthernetPortsProfilesAssignArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessEthernetPortsProfilesAssignArgs
    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 wirelessEthernetPortsProfilesAssignResource = new Meraki.Networks.WirelessEthernetPortsProfilesAssign("wirelessEthernetPortsProfilesAssignResource", new()
    {
        NetworkId = "string",
        Parameters = new Meraki.Networks.Inputs.WirelessEthernetPortsProfilesAssignParametersArgs
        {
            ProfileId = "string",
            Serials = new[]
            {
                "string",
            },
        },
    });
    
    example, err := networks.NewWirelessEthernetPortsProfilesAssign(ctx, "wirelessEthernetPortsProfilesAssignResource", &networks.WirelessEthernetPortsProfilesAssignArgs{
    	NetworkId: pulumi.String("string"),
    	Parameters: &networks.WirelessEthernetPortsProfilesAssignParametersArgs{
    		ProfileId: pulumi.String("string"),
    		Serials: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    })
    
    var wirelessEthernetPortsProfilesAssignResource = new WirelessEthernetPortsProfilesAssign("wirelessEthernetPortsProfilesAssignResource", WirelessEthernetPortsProfilesAssignArgs.builder()
        .networkId("string")
        .parameters(WirelessEthernetPortsProfilesAssignParametersArgs.builder()
            .profileId("string")
            .serials("string")
            .build())
        .build());
    
    wireless_ethernet_ports_profiles_assign_resource = meraki.networks.WirelessEthernetPortsProfilesAssign("wirelessEthernetPortsProfilesAssignResource",
        network_id="string",
        parameters=meraki.networks.WirelessEthernetPortsProfilesAssignParametersArgs(
            profile_id="string",
            serials=["string"],
        ))
    
    const wirelessEthernetPortsProfilesAssignResource = new meraki.networks.WirelessEthernetPortsProfilesAssign("wirelessEthernetPortsProfilesAssignResource", {
        networkId: "string",
        parameters: {
            profileId: "string",
            serials: ["string"],
        },
    });
    
    type: meraki:networks:WirelessEthernetPortsProfilesAssign
    properties:
        networkId: string
        parameters:
            profileId: string
            serials:
                - string
    

    WirelessEthernetPortsProfilesAssign Resource Properties

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

    Inputs

    The WirelessEthernetPortsProfilesAssign resource accepts the following input properties:

    NetworkId string
    networkId path parameter. Network ID
    Parameters WirelessEthernetPortsProfilesAssignParameters
    networkId String
    networkId path parameter. Network ID
    parameters WirelessEthernetPortsProfilesAssignParameters
    networkId string
    networkId path parameter. Network ID
    parameters WirelessEthernetPortsProfilesAssignParameters
    networkId String
    networkId path parameter. Network ID
    parameters Property Map

    Outputs

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

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

    Look up Existing WirelessEthernetPortsProfilesAssign Resource

    Get an existing WirelessEthernetPortsProfilesAssign 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?: WirelessEthernetPortsProfilesAssignState, opts?: CustomResourceOptions): WirelessEthernetPortsProfilesAssign
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            item: Optional[WirelessEthernetPortsProfilesAssignItemArgs] = None,
            network_id: Optional[str] = None,
            parameters: Optional[WirelessEthernetPortsProfilesAssignParametersArgs] = None) -> WirelessEthernetPortsProfilesAssign
    func GetWirelessEthernetPortsProfilesAssign(ctx *Context, name string, id IDInput, state *WirelessEthernetPortsProfilesAssignState, opts ...ResourceOption) (*WirelessEthernetPortsProfilesAssign, error)
    public static WirelessEthernetPortsProfilesAssign Get(string name, Input<string> id, WirelessEthernetPortsProfilesAssignState? state, CustomResourceOptions? opts = null)
    public static WirelessEthernetPortsProfilesAssign get(String name, Output<String> id, WirelessEthernetPortsProfilesAssignState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    item Property Map
    networkId String
    networkId path parameter. Network ID
    parameters Property Map

    Supporting Types

    WirelessEthernetPortsProfilesAssignItem, WirelessEthernetPortsProfilesAssignItemArgs

    ProfileId string
    AP profile ID
    Serials List<string>
    List of updated AP serials
    ProfileId string
    AP profile ID
    Serials []string
    List of updated AP serials
    profileId String
    AP profile ID
    serials List<String>
    List of updated AP serials
    profileId string
    AP profile ID
    serials string[]
    List of updated AP serials
    profile_id str
    AP profile ID
    serials Sequence[str]
    List of updated AP serials
    profileId String
    AP profile ID
    serials List<String>
    List of updated AP serials

    WirelessEthernetPortsProfilesAssignParameters, WirelessEthernetPortsProfilesAssignParametersArgs

    ProfileId string
    AP profile ID
    Serials List<string>
    List of AP serials
    ProfileId string
    AP profile ID
    Serials []string
    List of AP serials
    profileId String
    AP profile ID
    serials List<String>
    List of AP serials
    profileId string
    AP profile ID
    serials string[]
    List of AP serials
    profile_id str
    AP profile ID
    serials Sequence[str]
    List of AP serials
    profileId String
    AP profile ID
    serials List<String>
    List of AP serials

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi