Skip to content

Commit 0cc13a2

Browse files
authored
Create New-CsTagTemplate.md
1 parent 835f1d5 commit 0cc13a2

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
applicable: Microsoft Teams
3+
author: tomkau
4+
external help file: Microsoft.Rtc.Management.dll-Help.xml
5+
Locale: en-US
6+
manager: bulenteg
7+
Module Name: MicrosoftTeams
8+
ms.author: tomkau
9+
online version: https://learn.microsoft.com/powershell/module/microsoftteams/new-cstagtemplate
10+
schema: 2.0.0
11+
title: New-CsTagTemplate
12+
---
13+
14+
# New-CsTagTemplate
15+
16+
## SYNOPSIS
17+
Creates new tag template.
18+
19+
## SYNTAX
20+
```
21+
New-CsTagTemplate -Name <String> -Description <String> -Tags <List> [-Tenant <Guid>] [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
The New-CsTagTemplate cmdlet creates a new tag template made of of various tags.
26+
27+
> [!CAUTION]
28+
> This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time.
29+
30+
## EXAMPLES
31+
32+
33+
34+
## PARAMETERS
35+
36+
### -Name
37+
The name of the tag
38+
39+
```yaml
40+
Type: String
41+
Parameter Sets: (All)
42+
Aliases:
43+
44+
Required: True
45+
Position: Named
46+
Default value: None
47+
Accept pipeline input: False
48+
Accept wildcard characters: False
49+
```
50+
51+
### -Description
52+
A description for the purpose of the tag template
53+
54+
```yaml
55+
Type: String
56+
Parameter Sets: (All)
57+
Aliases:
58+
59+
Required: True
60+
Position: Named
61+
Default value: None
62+
Accept pipeline input: False
63+
Accept wildcard characters: False
64+
```
65+
66+
### -Tags
67+
The list of tags to add to the template.
68+
69+
```yaml
70+
Type: List
71+
Parameter Sets: (All)
72+
Aliases:
73+
74+
Required: True
75+
Position: Named
76+
Default value: None
77+
Accept pipeline input: False
78+
Accept wildcard characters: False
79+
```
80+
81+
### -Tenant
82+
This parameter is reserved for Microsoft internal use only.
83+
84+
```yaml
85+
Type: Guid
86+
Parameter Sets: (All)
87+
Aliases:
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### CommonParameters
97+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
98+
99+
## INPUTS
100+
101+
## OUTPUTS
102+
103+
### Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue
104+
105+
## NOTES
106+
107+
## RELATED LINKS
108+

0 commit comments

Comments
 (0)