Skip to content

Commit c1f24ff

Browse files
authored
Merge pull request MicrosoftDocs#3627 from MicrosoftDocs/CI
CI of azps-14.1.0
2 parents 6d2e71d + 34f185b commit c1f24ff

File tree

8,080 files changed

+1896635
-0
lines changed

Some content is hidden

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

8,080 files changed

+1896635
-0
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://learn.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/ADDomainServices/help/Az.ADDomainServices.md
8+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/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 create 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-AzADDomainServiceForestTrustObject](New-AzADDomainServiceForestTrustObject.md)
24+
Create an in-memory object for ForestTrust.
25+
26+
### [New-AzADDomainServiceReplicaSetObject](New-AzADDomainServiceReplicaSetObject.md)
27+
Create an 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: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
---
2+
external help file: Az.ADDomainServices-help.xml
3+
Module Name: Az.ADDomainServices
4+
online version: https://learn.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/ADDomainServices/help/Get-AzADDomainService.md
7+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/src/ADDomainServices/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>]
20+
[<CommonParameters>]
21+
```
22+
23+
### Get
24+
```
25+
Get-AzADDomainService -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
26+
[-DefaultProfile <PSObject>] [<CommonParameters>]
27+
```
28+
29+
### List1
30+
```
31+
Get-AzADDomainService -ResourceGroupName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
32+
[<CommonParameters>]
33+
```
34+
35+
### GetViaIdentity
36+
```
37+
Get-AzADDomainService -InputObject <IAdDomainServicesIdentity> [-DefaultProfile <PSObject>]
38+
[<CommonParameters>]
39+
```
40+
41+
## DESCRIPTION
42+
The Get Domain Service operation retrieves a json representation of the Domain Service.
43+
44+
## EXAMPLES
45+
46+
### Example 1: Get All ADDomainService By default
47+
```powershell
48+
Get-AzADDomainService
49+
```
50+
51+
```output
52+
Name Domain Name Location Sku
53+
---- ----------- -------- ---
54+
youriADdomain youriAddomain.com westus Enterprise
55+
```
56+
57+
Get All ADDomainService By default
58+
59+
### Example 2: Get ADDomainService By ResourceGroup and name
60+
```powershell
61+
Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
62+
```
63+
64+
```output
65+
Name Domain Name Location Sku
66+
---- ----------- -------- ---
67+
youriADdomain youriAddomain.com westus Enterprise
68+
```
69+
70+
Get ADDomainService By ResourceGroup and name
71+
72+
### Example 3: Get all ADDomainService By ResourceGroup
73+
```powershell
74+
Get-AzADDomainService -ResourceGroupName youriADdomain
75+
```
76+
77+
```output
78+
Name Domain Name Location Sku
79+
---- ----------- -------- ---
80+
youriADdomain youriAddomain.com westus Enterprise
81+
```
82+
83+
Get all ADDomainService By ResourceGroup
84+
85+
### Example 4: Get ADDomainService By InputObject
86+
```powershell
87+
$getAzAddomain = Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
88+
Get-AzADDomainService -InputObject $getAzAddomain
89+
```
90+
91+
```output
92+
Name Domain Name Location Sku
93+
---- ----------- -------- ---
94+
youriADdomain youriAddomain.com westus Enterprise
95+
```
96+
97+
Get ADDomainService By InputObject
98+
99+
## PARAMETERS
100+
101+
### -DefaultProfile
102+
The DefaultProfile parameter is not functional.
103+
Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
104+
105+
```yaml
106+
Type: System.Management.Automation.PSObject
107+
Parameter Sets: (All)
108+
Aliases: AzureRMContext, AzureCredential
109+
110+
Required: False
111+
Position: Named
112+
Default value: None
113+
Accept pipeline input: False
114+
Accept wildcard characters: False
115+
```
116+
117+
### -InputObject
118+
Identity Parameter
119+
120+
```yaml
121+
Type: Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
122+
Parameter Sets: GetViaIdentity
123+
Aliases:
124+
125+
Required: True
126+
Position: Named
127+
Default value: None
128+
Accept pipeline input: True (ByValue)
129+
Accept wildcard characters: False
130+
```
131+
132+
### -Name
133+
The name of the domain service.
134+
135+
```yaml
136+
Type: System.String
137+
Parameter Sets: Get
138+
Aliases: DomainServiceName
139+
140+
Required: True
141+
Position: Named
142+
Default value: None
143+
Accept pipeline input: False
144+
Accept wildcard characters: False
145+
```
146+
147+
### -ResourceGroupName
148+
The name of the resource group within the user's subscription.
149+
The name is case insensitive.
150+
151+
```yaml
152+
Type: System.String
153+
Parameter Sets: Get, List1
154+
Aliases:
155+
156+
Required: True
157+
Position: Named
158+
Default value: None
159+
Accept pipeline input: False
160+
Accept wildcard characters: False
161+
```
162+
163+
### -SubscriptionId
164+
Gets subscription credentials which uniquely identify the Microsoft Azure subscription.
165+
The subscription ID forms part of the URI for every service call.
166+
167+
```yaml
168+
Type: System.String[]
169+
Parameter Sets: List, Get, List1
170+
Aliases:
171+
172+
Required: False
173+
Position: Named
174+
Default value: (Get-AzContext).Subscription.Id
175+
Accept pipeline input: False
176+
Accept wildcard characters: False
177+
```
178+
179+
### CommonParameters
180+
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).
181+
182+
## INPUTS
183+
184+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
185+
186+
## OUTPUTS
187+
188+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IDomainService
189+
190+
## NOTES
191+
192+
## RELATED LINKS

0 commit comments

Comments
 (0)