Set-AzMediaService

Modifies specified properties of an existing media service.

Syntax

Set-AzMediaService
   [-ResourceGroupName] <String>
   [-AccountName] <String>
   [-Tag <Hashtable>]
   [-StorageAccounts <PSStorageAccount[]>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

The Set-AzMediaService cmdlet modifies specified properties of an existing media service.

Examples

Example 1: Modify an existing media service

$StorageAccounts = New-AzStorageAccount -ResourceGroupName "ResourceGroupName001" -Name "Storage1" -Location "East US" -Type "Standard_GRS"
$Tags = @{"tag1" = "value1"; "tag2" = "value2"}
Set-AzMediaService -ResourceGroupName "ResourceGroup123" -AccountName "MediaService001" -Tag $Tags -StorageAccounts $StorageAccounts

The first command creates a series of tags and stores those tags in the variable named $Tags. This second command updates the media service named MediaService001 that belongs to the resource group named ResourceGroup123 with the tags stored in $Tags variable. The command also uses an array of storage configuration objects stored in $StorageAccounts variable.

Parameters

-AccountName

Specifies the name of the media service that this cmdlet modifies.

Type:String
Aliases:Name, ResourceName
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure

Type:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ResourceGroupName

Specifies the name of the resource group that contains the media service.

Type:String
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-StorageAccounts

Specifies an array of storage accounts that this cmdlet associates with the media service.

Type:PSStorageAccount[]
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Tag

The tags associated with the media account.

Type:Hashtable
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

String

Hashtable

PSStorageAccount[]

Outputs

PSMediaService