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

meraki.networks.WirelessSsidsIdentityPsks

Explore with Pulumi AI

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = new meraki.networks.WirelessSsidsIdentityPsks("example", {
        expiresAt: "2018-02-11T00:00:00.090210Z",
        groupPolicyId: "101",
        name: "Sample Identity PSK",
        networkId: "string",
        number: "string",
        passphrase: "secret",
    });
    export const merakiNetworksWirelessSsidsIdentityPsksExample = example;
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.networks.WirelessSsidsIdentityPsks("example",
        expires_at="2018-02-11T00:00:00.090210Z",
        group_policy_id="101",
        name="Sample Identity PSK",
        network_id="string",
        number="string",
        passphrase="secret")
    pulumi.export("merakiNetworksWirelessSsidsIdentityPsksExample", example)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := networks.NewWirelessSsidsIdentityPsks(ctx, "example", &networks.WirelessSsidsIdentityPsksArgs{
    			ExpiresAt:     pulumi.String("2018-02-11T00:00:00.090210Z"),
    			GroupPolicyId: pulumi.String("101"),
    			Name:          pulumi.String("Sample Identity PSK"),
    			NetworkId:     pulumi.String("string"),
    			Number:        pulumi.String("string"),
    			Passphrase:    pulumi.String("secret"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiNetworksWirelessSsidsIdentityPsksExample", example)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Meraki.Networks.WirelessSsidsIdentityPsks("example", new()
        {
            ExpiresAt = "2018-02-11T00:00:00.090210Z",
            GroupPolicyId = "101",
            Name = "Sample Identity PSK",
            NetworkId = "string",
            Number = "string",
            Passphrase = "secret",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiNetworksWirelessSsidsIdentityPsksExample"] = example,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.networks.WirelessSsidsIdentityPsks;
    import com.pulumi.meraki.networks.WirelessSsidsIdentityPsksArgs;
    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 WirelessSsidsIdentityPsks("example", WirelessSsidsIdentityPsksArgs.builder()
                .expiresAt("2018-02-11T00:00:00.090210Z")
                .groupPolicyId("101")
                .name("Sample Identity PSK")
                .networkId("string")
                .number("string")
                .passphrase("secret")
                .build());
    
            ctx.export("merakiNetworksWirelessSsidsIdentityPsksExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:WirelessSsidsIdentityPsks
        properties:
          expiresAt: 2018-02-11T00:00:00.090210Z
          groupPolicyId: '101'
          name: Sample Identity PSK
          networkId: string
          number: string
          passphrase: secret
    outputs:
      merakiNetworksWirelessSsidsIdentityPsksExample: ${example}
    

    Create WirelessSsidsIdentityPsks Resource

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

    Constructor syntax

    new WirelessSsidsIdentityPsks(name: string, args: WirelessSsidsIdentityPsksArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessSsidsIdentityPsks(resource_name: str,
                                  args: WirelessSsidsIdentityPsksArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessSsidsIdentityPsks(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  network_id: Optional[str] = None,
                                  number: Optional[str] = None,
                                  expires_at: Optional[str] = None,
                                  group_policy_id: Optional[str] = None,
                                  identity_psk_id: Optional[str] = None,
                                  name: Optional[str] = None,
                                  passphrase: Optional[str] = None)
    func NewWirelessSsidsIdentityPsks(ctx *Context, name string, args WirelessSsidsIdentityPsksArgs, opts ...ResourceOption) (*WirelessSsidsIdentityPsks, error)
    public WirelessSsidsIdentityPsks(string name, WirelessSsidsIdentityPsksArgs args, CustomResourceOptions? opts = null)
    public WirelessSsidsIdentityPsks(String name, WirelessSsidsIdentityPsksArgs args)
    public WirelessSsidsIdentityPsks(String name, WirelessSsidsIdentityPsksArgs args, CustomResourceOptions options)
    
    type: meraki:networks:WirelessSsidsIdentityPsks
    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 WirelessSsidsIdentityPsksArgs
    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 WirelessSsidsIdentityPsksArgs
    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 WirelessSsidsIdentityPsksArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessSsidsIdentityPsksArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessSsidsIdentityPsksArgs
    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 wirelessSsidsIdentityPsksResource = new Meraki.Networks.WirelessSsidsIdentityPsks("wirelessSsidsIdentityPsksResource", new()
    {
        NetworkId = "string",
        Number = "string",
        ExpiresAt = "string",
        GroupPolicyId = "string",
        IdentityPskId = "string",
        Name = "string",
        Passphrase = "string",
    });
    
    example, err := networks.NewWirelessSsidsIdentityPsks(ctx, "wirelessSsidsIdentityPsksResource", &networks.WirelessSsidsIdentityPsksArgs{
    	NetworkId:     pulumi.String("string"),
    	Number:        pulumi.String("string"),
    	ExpiresAt:     pulumi.String("string"),
    	GroupPolicyId: pulumi.String("string"),
    	IdentityPskId: pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	Passphrase:    pulumi.String("string"),
    })
    
    var wirelessSsidsIdentityPsksResource = new WirelessSsidsIdentityPsks("wirelessSsidsIdentityPsksResource", WirelessSsidsIdentityPsksArgs.builder()
        .networkId("string")
        .number("string")
        .expiresAt("string")
        .groupPolicyId("string")
        .identityPskId("string")
        .name("string")
        .passphrase("string")
        .build());
    
    wireless_ssids_identity_psks_resource = meraki.networks.WirelessSsidsIdentityPsks("wirelessSsidsIdentityPsksResource",
        network_id="string",
        number="string",
        expires_at="string",
        group_policy_id="string",
        identity_psk_id="string",
        name="string",
        passphrase="string")
    
    const wirelessSsidsIdentityPsksResource = new meraki.networks.WirelessSsidsIdentityPsks("wirelessSsidsIdentityPsksResource", {
        networkId: "string",
        number: "string",
        expiresAt: "string",
        groupPolicyId: "string",
        identityPskId: "string",
        name: "string",
        passphrase: "string",
    });
    
    type: meraki:networks:WirelessSsidsIdentityPsks
    properties:
        expiresAt: string
        groupPolicyId: string
        identityPskId: string
        name: string
        networkId: string
        number: string
        passphrase: string
    

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

    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    ExpiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    GroupPolicyId string
    The group policy to be applied to clients
    IdentityPskId string
    identityPskId path parameter. Identity psk ID
    Name string
    The name of the Identity PSK
    Passphrase string
    The passphrase for client authentication
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    ExpiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    GroupPolicyId string
    The group policy to be applied to clients
    IdentityPskId string
    identityPskId path parameter. Identity psk ID
    Name string
    The name of the Identity PSK
    Passphrase string
    The passphrase for client authentication
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    expiresAt String
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId String
    The group policy to be applied to clients
    identityPskId String
    identityPskId path parameter. Identity psk ID
    name String
    The name of the Identity PSK
    passphrase String
    The passphrase for client authentication
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    expiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId string
    The group policy to be applied to clients
    identityPskId string
    identityPskId path parameter. Identity psk ID
    name string
    The name of the Identity PSK
    passphrase string
    The passphrase for client authentication
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    expires_at str
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    group_policy_id str
    The group policy to be applied to clients
    identity_psk_id str
    identityPskId path parameter. Identity psk ID
    name str
    The name of the Identity PSK
    passphrase str
    The passphrase for client authentication
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    expiresAt String
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId String
    The group policy to be applied to clients
    identityPskId String
    identityPskId path parameter. Identity psk ID
    name String
    The name of the Identity PSK
    passphrase String
    The passphrase for client authentication

    Outputs

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

    Email string
    The email associated with the System's Manager User
    Id string
    The provider-assigned unique ID for this managed resource.
    WifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    Email string
    The email associated with the System's Manager User
    Id string
    The provider-assigned unique ID for this managed resource.
    WifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    email String
    The email associated with the System's Manager User
    id String
    The provider-assigned unique ID for this managed resource.
    wifiPersonalNetworkId String
    The WiFi Personal Network unique identifier
    email string
    The email associated with the System's Manager User
    id string
    The provider-assigned unique ID for this managed resource.
    wifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    email str
    The email associated with the System's Manager User
    id str
    The provider-assigned unique ID for this managed resource.
    wifi_personal_network_id str
    The WiFi Personal Network unique identifier
    email String
    The email associated with the System's Manager User
    id String
    The provider-assigned unique ID for this managed resource.
    wifiPersonalNetworkId String
    The WiFi Personal Network unique identifier

    Look up Existing WirelessSsidsIdentityPsks Resource

    Get an existing WirelessSsidsIdentityPsks 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?: WirelessSsidsIdentityPsksState, opts?: CustomResourceOptions): WirelessSsidsIdentityPsks
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            email: Optional[str] = None,
            expires_at: Optional[str] = None,
            group_policy_id: Optional[str] = None,
            identity_psk_id: Optional[str] = None,
            name: Optional[str] = None,
            network_id: Optional[str] = None,
            number: Optional[str] = None,
            passphrase: Optional[str] = None,
            wifi_personal_network_id: Optional[str] = None) -> WirelessSsidsIdentityPsks
    func GetWirelessSsidsIdentityPsks(ctx *Context, name string, id IDInput, state *WirelessSsidsIdentityPsksState, opts ...ResourceOption) (*WirelessSsidsIdentityPsks, error)
    public static WirelessSsidsIdentityPsks Get(string name, Input<string> id, WirelessSsidsIdentityPsksState? state, CustomResourceOptions? opts = null)
    public static WirelessSsidsIdentityPsks get(String name, Output<String> id, WirelessSsidsIdentityPsksState 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:
    Email string
    The email associated with the System's Manager User
    ExpiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    GroupPolicyId string
    The group policy to be applied to clients
    IdentityPskId string
    identityPskId path parameter. Identity psk ID
    Name string
    The name of the Identity PSK
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Passphrase string
    The passphrase for client authentication
    WifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    Email string
    The email associated with the System's Manager User
    ExpiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    GroupPolicyId string
    The group policy to be applied to clients
    IdentityPskId string
    identityPskId path parameter. Identity psk ID
    Name string
    The name of the Identity PSK
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Passphrase string
    The passphrase for client authentication
    WifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    email String
    The email associated with the System's Manager User
    expiresAt String
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId String
    The group policy to be applied to clients
    identityPskId String
    identityPskId path parameter. Identity psk ID
    name String
    The name of the Identity PSK
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    passphrase String
    The passphrase for client authentication
    wifiPersonalNetworkId String
    The WiFi Personal Network unique identifier
    email string
    The email associated with the System's Manager User
    expiresAt string
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId string
    The group policy to be applied to clients
    identityPskId string
    identityPskId path parameter. Identity psk ID
    name string
    The name of the Identity PSK
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    passphrase string
    The passphrase for client authentication
    wifiPersonalNetworkId string
    The WiFi Personal Network unique identifier
    email str
    The email associated with the System's Manager User
    expires_at str
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    group_policy_id str
    The group policy to be applied to clients
    identity_psk_id str
    identityPskId path parameter. Identity psk ID
    name str
    The name of the Identity PSK
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    passphrase str
    The passphrase for client authentication
    wifi_personal_network_id str
    The WiFi Personal Network unique identifier
    email String
    The email associated with the System's Manager User
    expiresAt String
    Timestamp for when the Identity PSK expires, or 'null' to never expire
    groupPolicyId String
    The group policy to be applied to clients
    identityPskId String
    identityPskId path parameter. Identity psk ID
    name String
    The name of the Identity PSK
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    passphrase String
    The passphrase for client authentication
    wifiPersonalNetworkId String
    The WiFi Personal Network unique identifier

    Import

    $ pulumi import meraki:networks/wirelessSsidsIdentityPsks:WirelessSsidsIdentityPsks example "identity_psk_id,network_id,number"
    

    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.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi