Skip to content

Commit 69b9189

Browse files
author
VSC-Service-Account
committed
CI Update
Build.Reason:Manual by Huaping Yu (Beyondsoft Consulting Inc) Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=328352&view=results
1 parent b6c9651 commit 69b9189

File tree

5,993 files changed

+1342358
-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.

5,993 files changed

+1342358
-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://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-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: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
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+
Get-AzADDomainService
48+
```
49+
50+
```output
51+
Name Domain Name Location Sku
52+
---- ----------- -------- ---
53+
youriADdomain youriAddomain.com westus Enterprise
54+
```
55+
56+
Get All ADDomainService By default
57+
58+
### Example 2: Get ADDomainService By ResourceGroup and name
59+
```powershell
60+
Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
61+
```
62+
63+
```output
64+
Name Domain Name Location Sku
65+
---- ----------- -------- ---
66+
youriADdomain youriAddomain.com westus Enterprise
67+
```
68+
69+
Get ADDomainService By ResourceGroup and name
70+
71+
### Example 3: Get all ADDomainService By ResourceGroup
72+
```powershell
73+
Get-AzADDomainService -ResourceGroupName youriADdomain
74+
```
75+
76+
```output
77+
Name Domain Name Location Sku
78+
---- ----------- -------- ---
79+
youriADdomain youriAddomain.com westus Enterprise
80+
```
81+
82+
Get all ADDomainService By ResourceGroup
83+
84+
### Example 4: Get ADDomainService By InputObject
85+
```powershell
86+
$getAzAddomain = Get-AzADDomainService -Name youriADdomain -ResourceGroupName youriADdomain
87+
Get-AzADDomainService -InputObject $getAzAddomain
88+
```
89+
90+
```output
91+
Name Domain Name Location Sku
92+
---- ----------- -------- ---
93+
youriADdomain youriAddomain.com westus Enterprise
94+
```
95+
96+
Get ADDomainService By InputObject
97+
98+
## PARAMETERS
99+
100+
### -DefaultProfile
101+
The credentials, account, tenant, and subscription used for communication with Azure.
102+
103+
```yaml
104+
Type: System.Management.Automation.PSObject
105+
Parameter Sets: (All)
106+
Aliases: AzureRMContext, AzureCredential
107+
108+
Required: False
109+
Position: Named
110+
Default value: None
111+
Accept pipeline input: False
112+
Accept wildcard characters: False
113+
```
114+
115+
### -InputObject
116+
Identity Parameter
117+
To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
118+
119+
```yaml
120+
Type: Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
121+
Parameter Sets: GetViaIdentity
122+
Aliases:
123+
124+
Required: True
125+
Position: Named
126+
Default value: None
127+
Accept pipeline input: True (ByValue)
128+
Accept wildcard characters: False
129+
```
130+
131+
### -Name
132+
The name of the domain service.
133+
134+
```yaml
135+
Type: System.String
136+
Parameter Sets: Get
137+
Aliases: DomainServiceName
138+
139+
Required: True
140+
Position: Named
141+
Default value: None
142+
Accept pipeline input: False
143+
Accept wildcard characters: False
144+
```
145+
146+
### -ResourceGroupName
147+
The name of the resource group within the user's subscription.
148+
The name is case insensitive.
149+
150+
```yaml
151+
Type: System.String
152+
Parameter Sets: Get, List1
153+
Aliases:
154+
155+
Required: True
156+
Position: Named
157+
Default value: None
158+
Accept pipeline input: False
159+
Accept wildcard characters: False
160+
```
161+
162+
### -SubscriptionId
163+
Gets subscription credentials which uniquely identify the Microsoft Azure subscription.
164+
The subscription ID forms part of the URI for every service call.
165+
166+
```yaml
167+
Type: System.String[]
168+
Parameter Sets: Get, List, List1
169+
Aliases:
170+
171+
Required: False
172+
Position: Named
173+
Default value: (Get-AzContext).Subscription.Id
174+
Accept pipeline input: False
175+
Accept wildcard characters: False
176+
```
177+
178+
### CommonParameters
179+
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).
180+
181+
## INPUTS
182+
183+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.IAdDomainServicesIdentity
184+
185+
## OUTPUTS
186+
187+
### Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService
188+
189+
## NOTES
190+
191+
ALIASES
192+
193+
COMPLEX PARAMETER PROPERTIES
194+
195+
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.
196+
197+
198+
INPUTOBJECT `<IAdDomainServicesIdentity>`: Identity Parameter
199+
- `[DomainServiceName <String>]`: The name of the domain service.
200+
- `[Id <String>]`: Resource identity path
201+
- `[ResourceGroupName <String>]`: The name of the resource group within the user's subscription. The name is case insensitive.
202+
- `[SubscriptionId <String>]`: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
203+
204+
## RELATED LINKS
205+

0 commit comments

Comments
 (0)