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

meraki.devices.CameraQualityAndRetention

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = new meraki.devices.CameraQualityAndRetention("example", {
    audioRecordingEnabled: false,
    motionBasedRetentionEnabled: false,
    motionDetectorVersion: 2,
    profileId: "1234",
    quality: "Standard",
    resolution: "1280x720",
    restrictedBandwidthModeEnabled: false,
    serial: "string",
});
export const merakiDevicesCameraQualityAndRetentionExample = example;
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.devices.CameraQualityAndRetention("example",
    audio_recording_enabled=False,
    motion_based_retention_enabled=False,
    motion_detector_version=2,
    profile_id="1234",
    quality="Standard",
    resolution="1280x720",
    restricted_bandwidth_mode_enabled=False,
    serial="string")
pulumi.export("merakiDevicesCameraQualityAndRetentionExample", example)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/devices"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := devices.NewCameraQualityAndRetention(ctx, "example", &devices.CameraQualityAndRetentionArgs{
			AudioRecordingEnabled:          pulumi.Bool(false),
			MotionBasedRetentionEnabled:    pulumi.Bool(false),
			MotionDetectorVersion:          pulumi.Int(2),
			ProfileId:                      pulumi.String("1234"),
			Quality:                        pulumi.String("Standard"),
			Resolution:                     pulumi.String("1280x720"),
			RestrictedBandwidthModeEnabled: pulumi.Bool(false),
			Serial:                         pulumi.String("string"),
		})
		if err != nil {
			return err
		}
		ctx.Export("merakiDevicesCameraQualityAndRetentionExample", example)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = new Meraki.Devices.CameraQualityAndRetention("example", new()
    {
        AudioRecordingEnabled = false,
        MotionBasedRetentionEnabled = false,
        MotionDetectorVersion = 2,
        ProfileId = "1234",
        Quality = "Standard",
        Resolution = "1280x720",
        RestrictedBandwidthModeEnabled = false,
        Serial = "string",
    });

    return new Dictionary<string, object?>
    {
        ["merakiDevicesCameraQualityAndRetentionExample"] = example,
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.devices.CameraQualityAndRetention;
import com.pulumi.meraki.devices.CameraQualityAndRetentionArgs;
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 CameraQualityAndRetention("example", CameraQualityAndRetentionArgs.builder()
            .audioRecordingEnabled(false)
            .motionBasedRetentionEnabled(false)
            .motionDetectorVersion(2)
            .profileId("1234")
            .quality("Standard")
            .resolution("1280x720")
            .restrictedBandwidthModeEnabled(false)
            .serial("string")
            .build());

        ctx.export("merakiDevicesCameraQualityAndRetentionExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:devices:CameraQualityAndRetention
    properties:
      audioRecordingEnabled: false
      motionBasedRetentionEnabled: false
      motionDetectorVersion: 2
      profileId: '1234'
      quality: Standard
      resolution: 1280x720
      restrictedBandwidthModeEnabled: false
      serial: string
outputs:
  merakiDevicesCameraQualityAndRetentionExample: ${example}
Copy

Create CameraQualityAndRetention Resource

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

Constructor syntax

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

@overload
def CameraQualityAndRetention(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              serial: Optional[str] = None,
                              audio_recording_enabled: Optional[bool] = None,
                              motion_based_retention_enabled: Optional[bool] = None,
                              motion_detector_version: Optional[int] = None,
                              profile_id: Optional[str] = None,
                              quality: Optional[str] = None,
                              resolution: Optional[str] = None,
                              restricted_bandwidth_mode_enabled: Optional[bool] = None)
func NewCameraQualityAndRetention(ctx *Context, name string, args CameraQualityAndRetentionArgs, opts ...ResourceOption) (*CameraQualityAndRetention, error)
public CameraQualityAndRetention(string name, CameraQualityAndRetentionArgs args, CustomResourceOptions? opts = null)
public CameraQualityAndRetention(String name, CameraQualityAndRetentionArgs args)
public CameraQualityAndRetention(String name, CameraQualityAndRetentionArgs args, CustomResourceOptions options)
type: meraki:devices:CameraQualityAndRetention
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. CameraQualityAndRetentionArgs
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. CameraQualityAndRetentionArgs
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. CameraQualityAndRetentionArgs
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. CameraQualityAndRetentionArgs
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. CameraQualityAndRetentionArgs
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 cameraQualityAndRetentionResource = new Meraki.Devices.CameraQualityAndRetention("cameraQualityAndRetentionResource", new()
{
    Serial = "string",
    AudioRecordingEnabled = false,
    MotionBasedRetentionEnabled = false,
    MotionDetectorVersion = 0,
    ProfileId = "string",
    Quality = "string",
    Resolution = "string",
    RestrictedBandwidthModeEnabled = false,
});
Copy
example, err := devices.NewCameraQualityAndRetention(ctx, "cameraQualityAndRetentionResource", &devices.CameraQualityAndRetentionArgs{
	Serial:                         pulumi.String("string"),
	AudioRecordingEnabled:          pulumi.Bool(false),
	MotionBasedRetentionEnabled:    pulumi.Bool(false),
	MotionDetectorVersion:          pulumi.Int(0),
	ProfileId:                      pulumi.String("string"),
	Quality:                        pulumi.String("string"),
	Resolution:                     pulumi.String("string"),
	RestrictedBandwidthModeEnabled: pulumi.Bool(false),
})
Copy
var cameraQualityAndRetentionResource = new CameraQualityAndRetention("cameraQualityAndRetentionResource", CameraQualityAndRetentionArgs.builder()
    .serial("string")
    .audioRecordingEnabled(false)
    .motionBasedRetentionEnabled(false)
    .motionDetectorVersion(0)
    .profileId("string")
    .quality("string")
    .resolution("string")
    .restrictedBandwidthModeEnabled(false)
    .build());
Copy
camera_quality_and_retention_resource = meraki.devices.CameraQualityAndRetention("cameraQualityAndRetentionResource",
    serial="string",
    audio_recording_enabled=False,
    motion_based_retention_enabled=False,
    motion_detector_version=0,
    profile_id="string",
    quality="string",
    resolution="string",
    restricted_bandwidth_mode_enabled=False)
Copy
const cameraQualityAndRetentionResource = new meraki.devices.CameraQualityAndRetention("cameraQualityAndRetentionResource", {
    serial: "string",
    audioRecordingEnabled: false,
    motionBasedRetentionEnabled: false,
    motionDetectorVersion: 0,
    profileId: "string",
    quality: "string",
    resolution: "string",
    restrictedBandwidthModeEnabled: false,
});
Copy
type: meraki:devices:CameraQualityAndRetention
properties:
    audioRecordingEnabled: false
    motionBasedRetentionEnabled: false
    motionDetectorVersion: 0
    profileId: string
    quality: string
    resolution: string
    restrictedBandwidthModeEnabled: false
    serial: string
Copy

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

Serial This property is required. string
serial path parameter.
AudioRecordingEnabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
MotionBasedRetentionEnabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
MotionDetectorVersion int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
ProfileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
Quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
Resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
RestrictedBandwidthModeEnabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
Serial This property is required. string
serial path parameter.
AudioRecordingEnabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
MotionBasedRetentionEnabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
MotionDetectorVersion int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
ProfileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
Quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
Resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
RestrictedBandwidthModeEnabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial This property is required. String
serial path parameter.
audioRecordingEnabled Boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled Boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion Integer
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId String
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality String
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution String
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled Boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial This property is required. string
serial path parameter.
audioRecordingEnabled boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion number
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial This property is required. str
serial path parameter.
audio_recording_enabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motion_based_retention_enabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motion_detector_version int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profile_id str
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality str
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution str
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restricted_bandwidth_mode_enabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial This property is required. String
serial path parameter.
audioRecordingEnabled Boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled Boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion Number
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId String
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality String
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution String
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled Boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing CameraQualityAndRetention Resource

Get an existing CameraQualityAndRetention 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?: CameraQualityAndRetentionState, opts?: CustomResourceOptions): CameraQualityAndRetention
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        audio_recording_enabled: Optional[bool] = None,
        motion_based_retention_enabled: Optional[bool] = None,
        motion_detector_version: Optional[int] = None,
        profile_id: Optional[str] = None,
        quality: Optional[str] = None,
        resolution: Optional[str] = None,
        restricted_bandwidth_mode_enabled: Optional[bool] = None,
        serial: Optional[str] = None) -> CameraQualityAndRetention
func GetCameraQualityAndRetention(ctx *Context, name string, id IDInput, state *CameraQualityAndRetentionState, opts ...ResourceOption) (*CameraQualityAndRetention, error)
public static CameraQualityAndRetention Get(string name, Input<string> id, CameraQualityAndRetentionState? state, CustomResourceOptions? opts = null)
public static CameraQualityAndRetention get(String name, Output<String> id, CameraQualityAndRetentionState state, CustomResourceOptions options)
resources:  _:    type: meraki:devices:CameraQualityAndRetention    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.
The following state arguments are supported:
AudioRecordingEnabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
MotionBasedRetentionEnabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
MotionDetectorVersion int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
ProfileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
Quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
Resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
RestrictedBandwidthModeEnabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
Serial string
serial path parameter.
AudioRecordingEnabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
MotionBasedRetentionEnabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
MotionDetectorVersion int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
ProfileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
Quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
Resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
RestrictedBandwidthModeEnabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
Serial string
serial path parameter.
audioRecordingEnabled Boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled Boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion Integer
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId String
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality String
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution String
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled Boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial String
serial path parameter.
audioRecordingEnabled boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion number
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId string
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality string
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution string
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial string
serial path parameter.
audio_recording_enabled bool
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motion_based_retention_enabled bool
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motion_detector_version int
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profile_id str
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality str
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution str
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restricted_bandwidth_mode_enabled bool
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial str
serial path parameter.
audioRecordingEnabled Boolean
Boolean indicating if audio recording is enabled(true) or disabled(false) on the camera
motionBasedRetentionEnabled Boolean
Boolean indicating if motion-based retention is enabled(true) or disabled(false) on the camera.
motionDetectorVersion Number
The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2.
profileId String
The ID of a quality and retention profile to assign to the camera. The profile's settings will override all of the per-camera quality and retention settings. If the value of this parameter is null, any existing profile will be unassigned from the camera.
quality String
Quality of the camera. Can be one of 'Standard', 'High' or 'Enhanced'. Not all qualities are supported by every camera model.
resolution String
Resolution of the camera. Can be one of '1280x720', '1920x1080', '1080x1080', '2112x2112', '2880x2880', '2688x1512' or '3840x2160'.Not all resolutions are supported by every camera model.
restrictedBandwidthModeEnabled Boolean
Boolean indicating if restricted bandwidth is enabled(true) or disabled(false) on the camera. This setting does not apply to MV2 cameras.
serial String
serial path parameter.

Import

$ pulumi import meraki:devices/cameraQualityAndRetention:CameraQualityAndRetention example "serial"
Copy

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.