Skip to content

Commit d48b822

Browse files
authored
Merge pull request MicrosoftDocs#1942 from MicrosoftDocs/CI
Ci of azps-6.6.0
2 parents 4721475 + 23c64f1 commit d48b822

File tree

4,793 files changed

+1042394
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,793 files changed

+1042394
-10
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
Module Name: Az.ADDomainServices
3+
Module Guid: bba49006-4c09-406e-8fad-dd48d1b381e7
4+
Download Help Link: https://docs.microsoft.com/powershell/module/az.addomainservices
5+
Help Version: 1.0.0.0
6+
Locale: en-US
7+
content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/help/Az.ADDomainServices.md
8+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/help/Az.ADDomainServices.md
9+
---
10+
11+
# Az.ADDomainServices Module
12+
## Description
13+
Microsoft Azure PowerShell: AdDomainServices cmdlets
14+
15+
## Az.ADDomainServices Cmdlets
16+
### [Get-AzADDomainService](Get-AzADDomainService.md)
17+
The Get Domain Service operation retrieves a json representation of the Domain Service.
18+
19+
### [New-AzADDomainService](New-AzADDomainService.md)
20+
The Create Domain Service operation creates a new domain service with the specified parameters.
21+
If the specific service already exists, then any patchable properties will be updated and any immutable properties will remain unchanged.
22+
23+
### [New-AzADDomainServiceForestTrust](New-AzADDomainServiceForestTrust.md)
24+
Create a in-memory object for ForestTrust
25+
26+
### [New-AzADDomainServiceReplicaSet](New-AzADDomainServiceReplicaSet.md)
27+
Create a in-memory object for ReplicaSet
28+
29+
### [Remove-AzADDomainService](Remove-AzADDomainService.md)
30+
The Delete Domain Service operation deletes an existing Domain Service.
31+
32+
### [Update-AzADDomainService](Update-AzADDomainService.md)
33+
The Update Domain Service operation can be used to update the existing deployment.
34+
The update call only supports the properties listed in the PATCH body.
35+
Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
---
2+
external help file:
3+
Module Name: Az.ADDomainServices
4+
online version: https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
5+
schema: 2.0.0
6+
content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/help/Get-AzADDomainService.md
7+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/help/Get-AzADDomainService.md
8+
---
9+
10+
# Get-AzADDomainService
11+
12+
## SYNOPSIS
13+
The Get Domain Service operation retrieves a json representation of the Domain Service.
14+
15+
## SYNTAX
16+
17+
### List (Default)
18+
```
19+
Get-AzADDomainService [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
20+
```
21+
22+
### Get
23+
```
24+
Get-AzADDomainService -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
25+
[-DefaultProfile <PSObject>] [<CommonParameters>]
26+
```
27+
28+
### GetViaIdentity
29+
```
30+
Get-AzADDomainService -InputObject <IAdDomainServicesIdentity> [-DefaultProfile <PSObject>]
31+
[<CommonParameters>]
32+
```
33+
34+
### List1
35+
```
36+
Get-AzADDomainService -ResourceGroupName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
37+
[<CommonParameters>]
38+
```
39+
40+
## DESCRIPTION
41+
The Get Domain Service operation retrieves a json representation of the Domain Service.
42+
43+
## EXAMPLES
44+
45+
### Example 1: Get All ADDomainService By default
46+
```powershell
47+
PS C:\> Get-AzADDomainService
48+
49+
Name Domain Name Location Sku
50+
---- ----------- -------- ---
51+
youriADdomain youriAddomain.com westus Enterprise
52+
```
53+
54+
Get All ADDomainService By default
55+
56+
### Example 2: Get ADDomainService By ResourceGroup and name
57+
```powershell
58+
PS C:\> Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
59+
60+
Name Domain Name Location Sku
61+
---- ----------- -------- ---
62+
youriADdomain youriAddomain.com westus Enterprise
63+
```
64+
65+
Get ADDomainService By ResourceGroup and name
66+
67+
### Example 3: Get all ADDomainService By ResourceGroup
68+
```powershell
69+
PS C:\> Get-AzADDomainService -ResourceGroupName youriADdomain
70+
71+
Name Domain Name Location Sku
72+
---- ----------- -------- ---
73+
youriADdomain youriAddomain.com westus Enterprise
74+
```
75+
76+
Get all ADDomainService By ResourceGroup
77+
78+
### Example 4: Get ADDomainService By InputObject
79+
```powershell
80+
PS C:\> $getAzAddomain = Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
81+
Get-AzADDomainService -InputObject $getAzAddomain
82+
83+
Name Domain Name Location Sku
84+
---- ----------- -------- ---
85+
youriADdomain youriAddomain.com westus Enterprise
86+
```
87+
88+
Get ADDomainService By InputObject
89+
90+
## PARAMETERS
91+
92+
### -DefaultProfile
93+
The credentials, account, tenant, and subscription used for communication with Azure.
94+
95+
```yaml
96+
Type: System.Management.Automation.PSObject
97+
Parameter Sets: (All)
98+
Aliases: AzureRMContext, AzureCredential
99+
100+
Required: False
101+
Position: Named
102+
Default value: None
103+
Accept pipeline input: False
104+
Accept wildcard characters: False
105+
```
106+
107+
### -InputObject
108+
Identity Parameter
109+
To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
110+
111+
```yaml
112+
Type: Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
113+
Parameter Sets: GetViaIdentity
114+
Aliases:
115+
116+
Required: True
117+
Position: Named
118+
Default value: None
119+
Accept pipeline input: True (ByValue)
120+
Accept wildcard characters: False
121+
```
122+
123+
### -Name
124+
The name of the domain service.
125+
126+
```yaml
127+
Type: System.String
128+
Parameter Sets: Get
129+
Aliases: DomainServiceName
130+
131+
Required: True
132+
Position: Named
133+
Default value: None
134+
Accept pipeline input: False
135+
Accept wildcard characters: False
136+
```
137+
138+
### -ResourceGroupName
139+
The name of the resource group within the user's subscription.
140+
The name is case insensitive.
141+
142+
```yaml
143+
Type: System.String
144+
Parameter Sets: Get, List1
145+
Aliases:
146+
147+
Required: True
148+
Position: Named
149+
Default value: None
150+
Accept pipeline input: False
151+
Accept wildcard characters: False
152+
```
153+
154+
### -SubscriptionId
155+
Gets subscription credentials which uniquely identify the Microsoft Azure subscription.
156+
The subscription ID forms part of the URI for every service call.
157+
158+
```yaml
159+
Type: System.String[]
160+
Parameter Sets: Get, List, List1
161+
Aliases:
162+
163+
Required: False
164+
Position: Named
165+
Default value: (Get-AzContext).Subscription.Id
166+
Accept pipeline input: False
167+
Accept wildcard characters: False
168+
```
169+
170+
### CommonParameters
171+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
172+
173+
## INPUTS
174+
175+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
176+
177+
## OUTPUTS
178+
179+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService
180+
181+
## NOTES
182+
183+
ALIASES
184+
185+
COMPLEX PARAMETER PROPERTIES
186+
187+
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
188+
189+
190+
INPUTOBJECT <IAdDomainServicesIdentity>: Identity Parameter
191+
- `[DomainServiceName <String>]`: The name of the domain service.
192+
- `[Id <String>]`: Resource identity path
193+
- `[ResourceGroupName <String>]`: The name of the resource group within the user's subscription. The name is case insensitive.
194+
- `[SubscriptionId <String>]`: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
195+
196+
## RELATED LINKS
197+

0 commit comments

Comments
 (0)