1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. CameraWirelessProfiles
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

meraki.networks.CameraWirelessProfiles

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

    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.CameraWirelessProfiles;
    import com.pulumi.meraki.networks.CameraWirelessProfilesArgs;
    import com.pulumi.meraki.networks.inputs.CameraWirelessProfilesSsidArgs;
    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 CameraWirelessProfiles("example", CameraWirelessProfilesArgs.builder()
                .name("wireless profile A")
                .networkId("string")
                .ssid(CameraWirelessProfilesSsidArgs.builder()
                    .auth_mode("8021x-radius")
                    .encryption_mode("wpa-eap")
                    .name("ssid test")
                    .build())
                .build());
    
            ctx.export("merakiNetworksCameraWirelessProfilesExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:CameraWirelessProfiles
        properties:
          name: wireless profile A
          networkId: string
          ssid:
            auth_mode: 8021x-radius
            encryption_mode: wpa-eap
            name: ssid test
    outputs:
      merakiNetworksCameraWirelessProfilesExample: ${example}
    

    Create CameraWirelessProfiles Resource

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

    Constructor syntax

    new CameraWirelessProfiles(name: string, args: CameraWirelessProfilesArgs, opts?: CustomResourceOptions);
    @overload
    def CameraWirelessProfiles(resource_name: str,
                               args: CameraWirelessProfilesArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def CameraWirelessProfiles(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               network_id: Optional[str] = None,
                               identity: Optional[CameraWirelessProfilesIdentityArgs] = None,
                               name: Optional[str] = None,
                               ssid: Optional[CameraWirelessProfilesSsidArgs] = None,
                               wireless_profile_id: Optional[str] = None)
    func NewCameraWirelessProfiles(ctx *Context, name string, args CameraWirelessProfilesArgs, opts ...ResourceOption) (*CameraWirelessProfiles, error)
    public CameraWirelessProfiles(string name, CameraWirelessProfilesArgs args, CustomResourceOptions? opts = null)
    public CameraWirelessProfiles(String name, CameraWirelessProfilesArgs args)
    public CameraWirelessProfiles(String name, CameraWirelessProfilesArgs args, CustomResourceOptions options)
    
    type: meraki:networks:CameraWirelessProfiles
    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 CameraWirelessProfilesArgs
    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 CameraWirelessProfilesArgs
    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 CameraWirelessProfilesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CameraWirelessProfilesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CameraWirelessProfilesArgs
    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 merakiCameraWirelessProfilesResource = new Meraki.Networks.CameraWirelessProfiles("merakiCameraWirelessProfilesResource", new()
    {
        NetworkId = "string",
        Identity = new Meraki.Networks.Inputs.CameraWirelessProfilesIdentityArgs
        {
            Password = "string",
            Username = "string",
        },
        Name = "string",
        Ssid = new Meraki.Networks.Inputs.CameraWirelessProfilesSsidArgs
        {
            AuthMode = "string",
            EncryptionMode = "string",
            Name = "string",
            Psk = "string",
        },
        WirelessProfileId = "string",
    });
    
    example, err := networks.NewCameraWirelessProfiles(ctx, "merakiCameraWirelessProfilesResource", &networks.CameraWirelessProfilesArgs{
    	NetworkId: pulumi.String("string"),
    	Identity: &networks.CameraWirelessProfilesIdentityArgs{
    		Password: pulumi.String("string"),
    		Username: pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Ssid: &networks.CameraWirelessProfilesSsidArgs{
    		AuthMode:       pulumi.String("string"),
    		EncryptionMode: pulumi.String("string"),
    		Name:           pulumi.String("string"),
    		Psk:            pulumi.String("string"),
    	},
    	WirelessProfileId: pulumi.String("string"),
    })
    
    var merakiCameraWirelessProfilesResource = new CameraWirelessProfiles("merakiCameraWirelessProfilesResource", CameraWirelessProfilesArgs.builder()
        .networkId("string")
        .identity(CameraWirelessProfilesIdentityArgs.builder()
            .password("string")
            .username("string")
            .build())
        .name("string")
        .ssid(CameraWirelessProfilesSsidArgs.builder()
            .authMode("string")
            .encryptionMode("string")
            .name("string")
            .psk("string")
            .build())
        .wirelessProfileId("string")
        .build());
    
    meraki_camera_wireless_profiles_resource = meraki.networks.CameraWirelessProfiles("merakiCameraWirelessProfilesResource",
        network_id="string",
        identity=meraki.networks.CameraWirelessProfilesIdentityArgs(
            password="string",
            username="string",
        ),
        name="string",
        ssid=meraki.networks.CameraWirelessProfilesSsidArgs(
            auth_mode="string",
            encryption_mode="string",
            name="string",
            psk="string",
        ),
        wireless_profile_id="string")
    
    const merakiCameraWirelessProfilesResource = new meraki.networks.CameraWirelessProfiles("merakiCameraWirelessProfilesResource", {
        networkId: "string",
        identity: {
            password: "string",
            username: "string",
        },
        name: "string",
        ssid: {
            authMode: "string",
            encryptionMode: "string",
            name: "string",
            psk: "string",
        },
        wirelessProfileId: "string",
    });
    
    type: meraki:networks:CameraWirelessProfiles
    properties:
        identity:
            password: string
            username: string
        name: string
        networkId: string
        ssid:
            authMode: string
            encryptionMode: string
            name: string
            psk: string
        wirelessProfileId: string
    

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

    NetworkId string
    networkId path parameter. Network ID
    Identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    Name string
    The name of the camera wireless profile. This parameter is required.
    Ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    WirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    NetworkId string
    networkId path parameter. Network ID
    Identity CameraWirelessProfilesIdentityArgs
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    Name string
    The name of the camera wireless profile. This parameter is required.
    Ssid CameraWirelessProfilesSsidArgs
    The details of the SSID config.
    WirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    networkId String
    networkId path parameter. Network ID
    identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name String
    The name of the camera wireless profile. This parameter is required.
    ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    wirelessProfileId String
    wirelessProfileId path parameter. Wireless profile ID
    networkId string
    networkId path parameter. Network ID
    identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name string
    The name of the camera wireless profile. This parameter is required.
    ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    wirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    network_id str
    networkId path parameter. Network ID
    identity CameraWirelessProfilesIdentityArgs
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name str
    The name of the camera wireless profile. This parameter is required.
    ssid CameraWirelessProfilesSsidArgs
    The details of the SSID config.
    wireless_profile_id str
    wirelessProfileId path parameter. Wireless profile ID
    networkId String
    networkId path parameter. Network ID
    identity Property Map
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name String
    The name of the camera wireless profile. This parameter is required.
    ssid Property Map
    The details of the SSID config.
    wirelessProfileId String
    wirelessProfileId path parameter. Wireless profile ID

    Outputs

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

    AppliedDeviceCount int
    Id string
    The provider-assigned unique ID for this managed resource.
    AppliedDeviceCount int
    Id string
    The provider-assigned unique ID for this managed resource.
    appliedDeviceCount Integer
    id String
    The provider-assigned unique ID for this managed resource.
    appliedDeviceCount number
    id string
    The provider-assigned unique ID for this managed resource.
    applied_device_count int
    id str
    The provider-assigned unique ID for this managed resource.
    appliedDeviceCount Number
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CameraWirelessProfiles Resource

    Get an existing CameraWirelessProfiles 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?: CameraWirelessProfilesState, opts?: CustomResourceOptions): CameraWirelessProfiles
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            applied_device_count: Optional[int] = None,
            identity: Optional[CameraWirelessProfilesIdentityArgs] = None,
            name: Optional[str] = None,
            network_id: Optional[str] = None,
            ssid: Optional[CameraWirelessProfilesSsidArgs] = None,
            wireless_profile_id: Optional[str] = None) -> CameraWirelessProfiles
    func GetCameraWirelessProfiles(ctx *Context, name string, id IDInput, state *CameraWirelessProfilesState, opts ...ResourceOption) (*CameraWirelessProfiles, error)
    public static CameraWirelessProfiles Get(string name, Input<string> id, CameraWirelessProfilesState? state, CustomResourceOptions? opts = null)
    public static CameraWirelessProfiles get(String name, Output<String> id, CameraWirelessProfilesState 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:
    AppliedDeviceCount int
    Identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    Name string
    The name of the camera wireless profile. This parameter is required.
    NetworkId string
    networkId path parameter. Network ID
    Ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    WirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    AppliedDeviceCount int
    Identity CameraWirelessProfilesIdentityArgs
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    Name string
    The name of the camera wireless profile. This parameter is required.
    NetworkId string
    networkId path parameter. Network ID
    Ssid CameraWirelessProfilesSsidArgs
    The details of the SSID config.
    WirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    appliedDeviceCount Integer
    identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name String
    The name of the camera wireless profile. This parameter is required.
    networkId String
    networkId path parameter. Network ID
    ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    wirelessProfileId String
    wirelessProfileId path parameter. Wireless profile ID
    appliedDeviceCount number
    identity CameraWirelessProfilesIdentity
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name string
    The name of the camera wireless profile. This parameter is required.
    networkId string
    networkId path parameter. Network ID
    ssid CameraWirelessProfilesSsid
    The details of the SSID config.
    wirelessProfileId string
    wirelessProfileId path parameter. Wireless profile ID
    applied_device_count int
    identity CameraWirelessProfilesIdentityArgs
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name str
    The name of the camera wireless profile. This parameter is required.
    network_id str
    networkId path parameter. Network ID
    ssid CameraWirelessProfilesSsidArgs
    The details of the SSID config.
    wireless_profile_id str
    wirelessProfileId path parameter. Wireless profile ID
    appliedDeviceCount Number
    identity Property Map
    The identity of the wireless profile. Required for creating wireless profiles in 8021x-radius auth mode.
    name String
    The name of the camera wireless profile. This parameter is required.
    networkId String
    networkId path parameter. Network ID
    ssid Property Map
    The details of the SSID config.
    wirelessProfileId String
    wirelessProfileId path parameter. Wireless profile ID

    Supporting Types

    CameraWirelessProfilesIdentity, CameraWirelessProfilesIdentityArgs

    Password string
    The password of the identity.
    Username string
    The username of the identity.
    Password string
    The password of the identity.
    Username string
    The username of the identity.
    password String
    The password of the identity.
    username String
    The username of the identity.
    password string
    The password of the identity.
    username string
    The username of the identity.
    password str
    The password of the identity.
    username str
    The username of the identity.
    password String
    The password of the identity.
    username String
    The username of the identity.

    CameraWirelessProfilesSsid, CameraWirelessProfilesSsidArgs

    AuthMode string
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    EncryptionMode string
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    Name string
    The name of the SSID.
    Psk string
    The pre-shared key of the SSID.
    AuthMode string
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    EncryptionMode string
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    Name string
    The name of the SSID.
    Psk string
    The pre-shared key of the SSID.
    authMode String
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    encryptionMode String
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    name String
    The name of the SSID.
    psk String
    The pre-shared key of the SSID.
    authMode string
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    encryptionMode string
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    name string
    The name of the SSID.
    psk string
    The pre-shared key of the SSID.
    auth_mode str
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    encryption_mode str
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    name str
    The name of the SSID.
    psk str
    The pre-shared key of the SSID.
    authMode String
    The auth mode of the SSID. It can be set to ('psk', '8021x-radius').
    encryptionMode String
    The encryption mode of the SSID. It can be set to ('wpa', 'wpa-eap'). With 'wpa' mode, the authMode should be 'psk' and with 'wpa-eap' the authMode should be '8021x-radius'
    name String
    The name of the SSID.
    psk String
    The pre-shared key of the SSID.

    Import

    $ pulumi import meraki:networks/cameraWirelessProfiles:CameraWirelessProfiles example "network_id,wireless_profile_id"
    

    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.10 published on Wednesday, Jul 24, 2024 by Pulumi