Skip to content

Commit 31a9385

Browse files
committed
updates
1 parent 17edd47 commit 31a9385

19 files changed

+37
-35
lines changed

src/DevCenter/DevCenter.AutoRest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@
2525
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
2626
[assembly: System.CLSCompliantAttribute(false)]
2727

28+
29+

src/DevCenter/DevCenter.AutoRest/docs/Get-AzDevCenterAdminCatalogSyncErrorDetail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Gets catalog synchronization error details
3030

3131
## EXAMPLES
3232

33-
### Example 1: Get the catalog sync error dteail
33+
### Example 1: Get the catalog sync error details
3434
```powershell
3535
Get-AzDevCenterAdminCatalogSyncErrorDetail -DevCenterName Contoso -CatalogName CentralCatalog -ResourceGroupName testRg
3636
```

src/DevCenter/DevCenter.AutoRest/docs/Get-AzDevCenterAdminImage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Gets a gallery image.
5757

5858
## EXAMPLES
5959

60-
### Example 1: List iamges in a dev center
60+
### Example 1: List images in a dev center
6161
```powershell
6262
Get-AzDevCenterAdminImage -ResourceGroupName testRg -DevCenterName Contoso
6363
```

src/DevCenter/DevCenter.AutoRest/docs/Get-AzDevCenterAdminImageVersion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Gets an image version.
5959
Get-AzDevCenterAdminImageVersion -ResourceGroupName testRg -DevCenterName Contoso -ImageName ContosoBaseImage -GalleryName StandardGallery
6060
```
6161

62-
This command lists the image verions for the image "ContosoBaseImage" under the gallery "StandardGallery".
62+
This command lists the image versions for the image "ContosoBaseImage" under the gallery "StandardGallery".
6363

6464
### Example 2: Get an image version
6565
```powershell

src/DevCenter/DevCenter.AutoRest/docs/Get-AzDevCenterAdminOperationStatus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Get-AzDevCenterAdminOperationStatus -Location "eastus" -OperationId "7e9e1394-d
3636

3737
This command gets the operation.
3838

39-
### Example 2: Get an operatio using InputObject
39+
### Example 2: Get an operation using InputObject
4040
```powershell
4141
$operation = @{"Location" = "eastus"; "OperationId" = "7e9e1394-dad0-4414-8160-21c592e880ef*4699EE32265F9FA5BF00FA169E7D9CF51755378796E32F2D1A198E080CC84614"; "SubscriptionId" = "0ac520ee-14c0-480f-b6c9-0a90c58ffff"}
4242
Get-AzDevCenterAdminOperationStatus -InputObject $operation

src/DevCenter/DevCenter.AutoRest/docs/Get-AzDevCenterAdminProjectCatalogSyncErrorDetail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Gets project catalog synchronization error details
3030

3131
## EXAMPLES
3232

33-
### Example 1: Get the project catalog sync error dteail
33+
### Example 1: Get the project catalog sync error details
3434
```powershell
3535
Get-AzDevCenterAdminProjectCatalogSyncErrorDetail -ProjectName DevProject -CatalogName CentralCatalog -ResourceGroupName testRg
3636
```

src/DevCenter/DevCenter.AutoRest/docs/New-AzDevCenterAdminNetworkConnection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ New-AzDevCenterAdminNetworkConnection -Name eastusNetwork -ResourceGroupName tes
4242

4343
This command creates an Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
4444

45-
### Example 2: Create a hybid Azure AD joined network connection
45+
### Example 2: Create a hybrid Azure AD joined network connection
4646
```powershell
4747
New-AzDevCenterAdminNetworkConnection -Name eastusNetwork -ResourceGroupName testRg -Location westus3 -DomainJoinType HybridAzureADJoin -DomainName mydomaincontroller.local -DomainPassword $password -DomainUsername [email protected] -NetworkingResourceGroupName NetworkInterfaces -SubnetId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default"
4848
```
4949

50-
This command creates a hybid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
50+
This command creates a hybrid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
5151

5252
### Example 3: Create an Azure AD joined network connection using InputObject
5353
```powershell
@@ -57,13 +57,13 @@ New-AzDevCenterAdminNetworkConnection -InputObject $networkConnection -Location
5757

5858
This command creates an Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
5959

60-
### Example 4: Create a hybid Azure AD joined network connection using InputObject
60+
### Example 4: Create a hybrid Azure AD joined network connection using InputObject
6161
```powershell
6262
$networkConnection = @{"ResourceGroupName" = "testRg"; "NetworkConnectionName" = "eastusNetwork"; "SubscriptionId" = "0ac520ee-14c0-480f-b6c9-0a90c58ffff"}
6363
New-AzDevCenterAdminNetworkConnection -InputObject $networkConnection -Location westus3 -DomainJoinType HybridAzureADJoin -DomainName mydomaincontroller.local -DomainPassword $password -DomainUsername [email protected] -NetworkingResourceGroupName NetworkInterfaces -SubnetId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default"
6464
```
6565

66-
This command creates a hybid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
66+
This command creates a hybrid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
6767

6868
## PARAMETERS
6969

src/DevCenter/DevCenter.AutoRest/docs/Update-AzDevCenterAdminNetworkConnection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ Update-AzDevCenterAdminNetworkConnection -Name eastusNetwork -ResourceGroupName
3939

4040
This command updates an Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
4141

42-
### Example 2: Update a hybid Azure AD joined network connection
42+
### Example 2: Update a hybrid Azure AD joined network connection
4343
```powershell
4444
Update-AzDevCenterAdminNetworkConnection -Name eastusNetwork -ResourceGroupName testRg -DomainName mydomaincontroller.local -DomainUsername [email protected] -SubnetId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default"
4545
```
4646

47-
This command updates a hybid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
47+
This command updates a hybrid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
4848

4949
### Example 3: Update an Azure AD joined network connection
5050
```powershell
@@ -54,13 +54,13 @@ Update-AzDevCenterAdminNetworkConnection -InputObject $networkConnectionInput -S
5454

5555
This command updates an Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
5656

57-
### Example 4: Update a hybid Azure AD joined network connection
57+
### Example 4: Update a hybrid Azure AD joined network connection
5858
```powershell
5959
$hybridNetworkConnectionInput = Get-AzDevCenterAdminNetworkConnection -ResourceGroupName testRg -Name eastusNetwork
6060
Update-AzDevCenterAdminNetworkConnection -InputObject $hybridNetworkConnectionInput -DomainName mydomaincontroller.local -DomainUsername [email protected] -SubnetId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default"
6161
```
6262

63-
This command updates a hybid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
63+
This command updates a hybrid Azure AD joined network connection named "eastusNetwork" in the resource group "testRg".
6464

6565
## PARAMETERS
6666

src/DevCenter/DevCenter.AutoRest/examples/Get-AzDevCenterAdminCatalogSyncErrorDetail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Example 1: Get the catalog sync error dteail
1+
### Example 1: Get the catalog sync error details
22
```powershell
33
Get-AzDevCenterAdminCatalogSyncErrorDetail -DevCenterName Contoso -CatalogName CentralCatalog -ResourceGroupName testRg
44
```

src/DevCenter/DevCenter.AutoRest/examples/Get-AzDevCenterAdminImage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Example 1: List iamges in a dev center
1+
### Example 1: List images in a dev center
22
```powershell
33
Get-AzDevCenterAdminImage -ResourceGroupName testRg -DevCenterName Contoso
44
```

0 commit comments

Comments
 (0)