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

meraki.networks.WirelessEthernetPortsProfilesSetDefault

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.WirelessEthernetPortsProfilesSetDefault;
    import com.pulumi.meraki.networks.WirelessEthernetPortsProfilesSetDefaultArgs;
    import com.pulumi.meraki.networks.inputs.WirelessEthernetPortsProfilesSetDefaultParametersArgs;
    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 WirelessEthernetPortsProfilesSetDefault("example", WirelessEthernetPortsProfilesSetDefaultArgs.builder()
                .networkId("string")
                .parameters(WirelessEthernetPortsProfilesSetDefaultParametersArgs.builder()
                    .profile_id("1001")
                    .build())
                .build());
    
            ctx.export("merakiNetworksWirelessEthernetPortsProfilesSetDefaultExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:WirelessEthernetPortsProfilesSetDefault
        properties:
          networkId: string
          parameters:
            profile_id: '1001'
    outputs:
      merakiNetworksWirelessEthernetPortsProfilesSetDefaultExample: ${example}
    

    Create WirelessEthernetPortsProfilesSetDefault Resource

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

    Constructor syntax

    new WirelessEthernetPortsProfilesSetDefault(name: string, args: WirelessEthernetPortsProfilesSetDefaultArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessEthernetPortsProfilesSetDefault(resource_name: str,
                                                args: WirelessEthernetPortsProfilesSetDefaultArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessEthernetPortsProfilesSetDefault(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                network_id: Optional[str] = None,
                                                parameters: Optional[WirelessEthernetPortsProfilesSetDefaultParametersArgs] = None)
    func NewWirelessEthernetPortsProfilesSetDefault(ctx *Context, name string, args WirelessEthernetPortsProfilesSetDefaultArgs, opts ...ResourceOption) (*WirelessEthernetPortsProfilesSetDefault, error)
    public WirelessEthernetPortsProfilesSetDefault(string name, WirelessEthernetPortsProfilesSetDefaultArgs args, CustomResourceOptions? opts = null)
    public WirelessEthernetPortsProfilesSetDefault(String name, WirelessEthernetPortsProfilesSetDefaultArgs args)
    public WirelessEthernetPortsProfilesSetDefault(String name, WirelessEthernetPortsProfilesSetDefaultArgs args, CustomResourceOptions options)
    
    type: meraki:networks:WirelessEthernetPortsProfilesSetDefault
    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 WirelessEthernetPortsProfilesSetDefaultArgs
    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 WirelessEthernetPortsProfilesSetDefaultArgs
    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 WirelessEthernetPortsProfilesSetDefaultArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessEthernetPortsProfilesSetDefaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessEthernetPortsProfilesSetDefaultArgs
    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 wirelessEthernetPortsProfilesSetDefaultResource = new Meraki.Networks.WirelessEthernetPortsProfilesSetDefault("wirelessEthernetPortsProfilesSetDefaultResource", new()
    {
        NetworkId = "string",
        Parameters = new Meraki.Networks.Inputs.WirelessEthernetPortsProfilesSetDefaultParametersArgs
        {
            ProfileId = "string",
        },
    });
    
    example, err := networks.NewWirelessEthernetPortsProfilesSetDefault(ctx, "wirelessEthernetPortsProfilesSetDefaultResource", &networks.WirelessEthernetPortsProfilesSetDefaultArgs{
    	NetworkId: pulumi.String("string"),
    	Parameters: &networks.WirelessEthernetPortsProfilesSetDefaultParametersArgs{
    		ProfileId: pulumi.String("string"),
    	},
    })
    
    var wirelessEthernetPortsProfilesSetDefaultResource = new WirelessEthernetPortsProfilesSetDefault("wirelessEthernetPortsProfilesSetDefaultResource", WirelessEthernetPortsProfilesSetDefaultArgs.builder()
        .networkId("string")
        .parameters(WirelessEthernetPortsProfilesSetDefaultParametersArgs.builder()
            .profileId("string")
            .build())
        .build());
    
    wireless_ethernet_ports_profiles_set_default_resource = meraki.networks.WirelessEthernetPortsProfilesSetDefault("wirelessEthernetPortsProfilesSetDefaultResource",
        network_id="string",
        parameters=meraki.networks.WirelessEthernetPortsProfilesSetDefaultParametersArgs(
            profile_id="string",
        ))
    
    const wirelessEthernetPortsProfilesSetDefaultResource = new meraki.networks.WirelessEthernetPortsProfilesSetDefault("wirelessEthernetPortsProfilesSetDefaultResource", {
        networkId: "string",
        parameters: {
            profileId: "string",
        },
    });
    
    type: meraki:networks:WirelessEthernetPortsProfilesSetDefault
    properties:
        networkId: string
        parameters:
            profileId: string
    

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

    networkId String
    networkId path parameter. Network ID
    parameters Property Map

    Outputs

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

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

    Look up Existing WirelessEthernetPortsProfilesSetDefault Resource

    Get an existing WirelessEthernetPortsProfilesSetDefault 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?: WirelessEthernetPortsProfilesSetDefaultState, opts?: CustomResourceOptions): WirelessEthernetPortsProfilesSetDefault
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            item: Optional[WirelessEthernetPortsProfilesSetDefaultItemArgs] = None,
            network_id: Optional[str] = None,
            parameters: Optional[WirelessEthernetPortsProfilesSetDefaultParametersArgs] = None) -> WirelessEthernetPortsProfilesSetDefault
    func GetWirelessEthernetPortsProfilesSetDefault(ctx *Context, name string, id IDInput, state *WirelessEthernetPortsProfilesSetDefaultState, opts ...ResourceOption) (*WirelessEthernetPortsProfilesSetDefault, error)
    public static WirelessEthernetPortsProfilesSetDefault Get(string name, Input<string> id, WirelessEthernetPortsProfilesSetDefaultState? state, CustomResourceOptions? opts = null)
    public static WirelessEthernetPortsProfilesSetDefault get(String name, Output<String> id, WirelessEthernetPortsProfilesSetDefaultState 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

    WirelessEthernetPortsProfilesSetDefaultItem, WirelessEthernetPortsProfilesSetDefaultItemArgs

    ProfileId string
    AP profile ID
    ProfileId string
    AP profile ID
    profileId String
    AP profile ID
    profileId string
    AP profile ID
    profile_id str
    AP profile ID
    profileId String
    AP profile ID

    WirelessEthernetPortsProfilesSetDefaultParameters, WirelessEthernetPortsProfilesSetDefaultParametersArgs

    ProfileId string
    AP profile ID
    ProfileId string
    AP profile ID
    profileId String
    AP profile ID
    profileId string
    AP profile ID
    profile_id str
    AP profile ID
    profileId String
    AP profile ID

    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