| external help file | verkadaModule-help.xml |
|---|---|
| Module Name | verkadaModule |
| online version | https://github.com/bepsoccer/verkadaModule/blob/master/docs/function-documentation/Set-VerkadaCameraName.md |
| schema | 2.0.0 |
Set the name of a camera in an organization
Set-VerkadaCameraName [-org_id <String>] -camera_id <String> [-serial <String>] -camera_name <String>
[-x_verkada_token <String>] [-x_verkada_auth <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Set-VerkadaCameraName [-org_id <String>] -serial <String> -camera_name <String> [-x_verkada_token <String>]
[-x_verkada_auth <String>] [-x_verkada_auth_api <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
This function is used to rename a camera or cameras in a Verkada org. The org_id and reqired tokens can be directly submitted as parameters, but is much easier to use Connect-Verkada to cache this information ahead of time and for subsequent commands.
Set-VerkadaCameraName -camera_id '6fbdcd72-a2ec-4016-9c6f-21553a42c998' -camera_name 'Camera1'
This will rename camera_id 6fbdcd72-a2ec-4016-9c6f-21553a42c998 to Camera1. The org_id and tokens will be populated from the cached created by Connect-Verkada.
Set-VerkadaCameraName -camera_id '6fbdcd72-a2ec-4016-9c6f-21553a42c998' -camera_name 'Camera1' -org_id '7cd47706-f51b-4419-8675-3b9f0ce7c12d' -x_verkada_token 'a366ef47-2c20-4d35-a90a-10fd2aee113a' -x_verkada_auth 'auth-token-uuid-dscsdc'
This will rename camera_id 6fbdcd72-a2ec-4016-9c6f-21553a42c998 to Camera1. The org_id and tokens are submitted as parameters in the call.
Set-VerkadaCameraName -serial 'ABCD-123-UNME' -camera_name 'Camera1'
This will rename the camera with serial ABCD-123-UNME to Camera1. The org_id and tokens will be populated from the cached created by Connect-Verkada.
Import-Csv ./cameras.csv | Set-VerkadaCameraName
This will rename all the cameras in the imported CSV which needs to caontain the camera_id(cameraId) or serial and the camera_name(name). The org_id and tokens are submitted as parameters in the call.
The UUID of the organization the user belongs to
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $Global:verkadaConnection.org_id
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe UUID of the camera who's name is being changed
Type: String
Parameter Sets: cameraId
Aliases: cameraId
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe serial of the camera who's name is being changed
Type: String
Parameter Sets: cameraId
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseType: String
Parameter Sets: serial
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe new name for the camera who's name is being changed
Type: String
Parameter Sets: (All)
Aliases: name
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe Verkada(CSRF) token of the user running the command
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $Global:verkadaConnection.csrfToken
Accept pipeline input: False
Accept wildcard characters: FalseThe Verkada Auth(session auth) token of the user running the command
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $Global:verkadaConnection.userToken
Accept pipeline input: False
Accept wildcard characters: FalseThe public API token obatined via the Login endpoint to be used for calls that hit the public API gateway
Type: String
Parameter Sets: serial
Aliases:
Required: False
Position: Named
Default value: $Global:verkadaConnection.x_verkada_auth_api
Accept pipeline input: False
Accept wildcard characters: False{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.