Skip to content

Spelling Fixes #27916

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jun 13, 2025
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ Accept wildcard characters: False
```

### -KubeContext
Kubconfig context from current machine
Kubeconfig context from current machine

```yaml
Type: System.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Accept wildcard characters: False
```

### -KubeContext
Kubconfig context from current machine
Kubeconfig context from current machine

```yaml
Type: System.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Location Name ResourceGroupName
eastus azps_test_cluster azps_test_group
```

This command disable gateway feature of a connected kubernete cluster.
This command disables the gateway feature of a connected Kubernetes cluster.

### Example 2: Enable gateway for a connected Kubernetes cluster
```powershell
Expand Down Expand Up @@ -178,12 +178,12 @@ eastus azps_test_cluster azps_test_group

This command enables workload identity and OIDC Issuer Profile for a connected Kubernetes cluster

### Example 5: Disable workload identity of a connected kubernetes cluster with InputOjbect
### Example 5: Disable workload identity of a connected Kubernetes cluster with InputObject
```powershell
# Get an existing cluster first
$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId
# Disable workload identity
$inputObject.WorkloadIdentityEnabled=$falue
$inputObject.WorkloadIdentityEnabled=$false
Set-AzConnectedKubernetes -InputObject $inputObject
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ eyJNZWNEZXZpY2VUcmFuc2llbnRBdXRoS2V5IjoiMTIzNCIsIk1lY0RldmljZUF1dGhLZXlTdGFydFRp
```

Getting the registration key for NFM device in resource group myResources with resource name myMecDevice.
To register the device, use the commandlet Invoke-MecRegister with the registration key in the minishell session.
To register the device, use the cmdlet Invoke-MecRegister with the registration key in the minishell session.

### Example 2: Get-AzConnectedNetworkDeviceRegistrationKey using Resource Group, Resource name and Subscription Id
```powershell
Expand All @@ -45,7 +45,7 @@ eyJNZWNEZXZpY2VUcmFuc2llbnRBdXRoS2V5IjoiMTIzNCIsIk1lY0RldmljZUF1dGhLZXlTdGFydFRp
```

Getting the registration key for NFM device in resource group myResources with resource name myMecDevice.
To register the device, use the commandlet Invoke-MecRegister with the registration key in the minishell session.
To register the device, use the cmdlet Invoke-MecRegister with the registration key in the minishell session.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ VendorProvisioningState : NotProvisioned
```

Getting the information of a vendor network function with service key 1234-abcd-4321-dcba, vendor name myVendor, location centraluseuap and subscription.
Service key can be obtained when getting details of network funcrtion or when creating a network function.
Service key can be obtained when getting details of network function or when creating a network function.

### Example 2: Get-AzConnectedNetworkVendorFunction via Identity
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ New-AzConnectedNetworkAzureStackEdgeObject -AzureStackEdgeId "/subscriptions/xxx
```

```output
eviceType ProvisioningState Status
DeviceType ProvisioningState Status
---------- ----------------- ------
AzureStackEdge
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Powers off (stop) a role instance of a vendor network function.
Stop-AzConnectedNetworkVendorFunctionRoleInstance -LocationName centraluseuap -ServiceKey 1234-abcd-4321-dcba -SubscriptionId xxxx-3333-xxxx-3333 -VendorName myVendor -Name role1
```

Stoping a role instance of a vendor network function with the specified serviceKey, location centraluseuap, vendor name myVendor and role instance name role1.
Stopping a role instance of a vendor network function with the specified serviceKey, location centraluseuap, vendor name myVendor and role instance name role1.

### Example 2: Stop-AzConnectedNetworkVendorFunctionRoleInstance via Identity
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Create a in-memory object for Container with no default values

## EXAMPLES

### Example 1: Create a container instance using image alphine with request cpu 1.0 and request memory 1.5Gb
### Example 1: Create a container instance using image alpine with request cpu 1.0 and request memory 1.5Gb
```powershell
New-AzContainerInstanceNoDefaultObject -Name "test-container" -Image alpine -RequestCpu 1 -RequestMemoryInGb 1.5
```
Expand All @@ -46,9 +46,9 @@ Name
test-container
```

Create a container instance using image alphine with request cpu 1.0 and request memory 1.5Gb
Create a container instance using image alpine with request cpu 1.0 and request memory 1.5Gb

### Example 2: Create a container instance using image alphine with limit cpu 2.0 and limit memory 2.5Gb
### Example 2: Create a container instance using image alpine with limit cpu 2.0 and limit memory 2.5Gb
```powershell
New-AzContainerInstanceNoDefaultObject -Image alpine -Name "test-container" -LimitCpu 2 -LimitMemoryInGb 2.5
```
Expand All @@ -59,7 +59,7 @@ Name
test-container
```

Create a container instance using image alphine with limit cpu 2.0 and limit memory 2.5Gb
Create a container instance using image alpine with limit cpu 2.0 and limit memory 2.5Gb

### Example 3: Create a container group with a container instance
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Create a in-memory object for Container

## EXAMPLES

### Example 1: Create a container instance using image alphine with request cpu 1.0 and request memory 1.5Gb
### Example 1: Create a container instance using image alpine with request cpu 1.0 and request memory 1.5Gb
```powershell
New-AzContainerInstanceObject -Name "test-container" -Image alpine -RequestCpu 1 -RequestMemoryInGb 1.5
```
Expand All @@ -46,9 +46,9 @@ Name
test-container
```

Create a container instance using image alphine with request cpu 1.0 and request memory 1.5Gb
Create a container instance using image alpine with request cpu 1.0 and request memory 1.5Gb

### Example 2: Create a container instance using image alphine with limit cpu 2.0 and limit memory 2.5Gb
### Example 2: Create a container instance using image alpine with limit cpu 2.0 and limit memory 2.5Gb
```powershell
New-AzContainerInstanceObject -Image alpine -Name "test-container" -LimitCpu 2 -LimitMemoryInGb 2.5
```
Expand All @@ -59,7 +59,7 @@ Name
test-container
```

Create a container instance using image alphine with limit cpu 2.0 and limit memory 2.5Gb
Create a container instance using image alpine with limit cpu 2.0 and limit memory 2.5Gb

### Example 3: Create a container group with a container instance
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Accept wildcard characters: False
```

### -Name
Stored Prcodecure Name.
Stored Procedure Name.

```yaml
Type: System.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Invoke-AzCosmosDBCassandraKeyspaceThroughputMigration [-Name <String>]
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Invoke-AzCosmosDBCassandraTableThroughputMigration [-Name <String>] -InputObject
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Invoke-AzCosmosDBGremlinDatabaseThroughputMigration [-Name <String>] -InputObjec
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Invoke-AzCosmosDBGremlinGraphThroughputMigration [-Name <String>] -InputObject <
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Invoke-AzCosmosDBMongoDBCollectionThroughputMigration [-Name <String>]
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Invoke-AzCosmosDBMongoDBDatabaseThroughputMigration [-Name <String>] -InputObjec
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Invoke-AzCosmosDBSqlDatabaseThroughputMigration [-Name <String>] -InputObject <P
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Invoke-AzCosmosDBTableThroughputMigration [-Name <String>] -InputObject <PSTable
```

## DESCRIPTION
ThroughpyteType paramter defines the throughput to which you want to migrate to.
ThroughputType parameter defines the throughput to which you want to migrate to.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ New-AzCosmosDBDatabaseToRestore -DatabaseName <String> [-CollectionName <String[
```

## DESCRIPTION
Creates a new CosmosDB DatabaseToRestore object(PSDatabaseToRestore). This returned object can be uses to speficy the subset of databases and collections to restore.
Creates a new CosmosDB DatabaseToRestore object(PSDatabaseToRestore). This returned object can be used to specify the subset of databases and collections to restore.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ New-AzCosmosDBGremlinDatabaseToRestore -DatabaseName <String> [-GraphNames <Stri
```

## DESCRIPTION
Creates a new CosmosDB GremlinDatabaseToRestore object(PSGremlinDatabaseToRestore). This returned object can be uses to speficy the subset of databases and graphs to restore.
Creates a new CosmosDB GremlinDatabaseToRestore object(PSGremlinDatabaseToRestore). This returned object can be used to specify the subset of databases and graphs to restore.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Accept wildcard characters: False
```

### -Name
Stored Prcodecure Name.
Stored Procedure Name.

```yaml
Type: System.String
Expand Down
2 changes: 1 addition & 1 deletion src/CosmosDB/CosmosDB/help/New-AzCosmosDBTable.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Creates a new CosmosDB Table.

### Example 1
```powershell
New-AzCosmosDBTable -AccountName myAcccountName -Name myTableName -ResourceGroupName myRgName
New-AzCosmosDBTable -AccountName myAccountName -Name myTableName -ResourceGroupName myRgName
```

```output
Expand Down
2 changes: 1 addition & 1 deletion src/CosmosDB/CosmosDB/help/New-AzCosmosDBTableToRestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ New-AzCosmosDBTableToRestore [-TableNames <String[]>] [-DefaultProfile <IAzureCo
```

## DESCRIPTION
Creates a new CosmosDB TableToRestore object(PSTableToRestore). This returned object can be uses to speficy the subset of tables to restore.
Creates a new CosmosDB TableToRestore object(PSTableToRestore). This returned object can be used to specify the subset of tables to restore.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Accept wildcard characters: False
```

### -Name
Stored Prcodecure Name.
Stored Procedure Name.

```yaml
Type: System.String
Expand Down
2 changes: 1 addition & 1 deletion src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Update-AzCosmosDBAccount -InputObject <PSDatabaseAccountGetResults> [-EnableAuto
```

## DESCRIPTION
Update the properties of a Cosmos DB account. Cannot update Account Regions simulataneously with other properties.
Update the properties of a Cosmos DB account. Cannot update Account Regions simultaneously with other properties.

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Update-AzCosmosDBSqlContainerThroughput -AccountName "myAccountName" -ResourceGr

```output
Name : mxGp
Id : /subscriptions/{mySubscriptionId}/resourceGroups/{myResourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{myAccountName}/sqlDatabases/{myDatabaseName}/conatiners/{myContainerName}/throughputSettings/default
Id : /subscriptions/{mySubscriptionId}/resourceGroups/{myResourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{myAccountName}/sqlDatabases/{myDatabaseName}/containers/{myContainerName}/throughputSettings/default
Throughput : {updatedThroughputValue}
MinimumThroughput : 400
OfferReplacePending :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Accept wildcard characters: False
```

### -Name
Stored Prcodecure Name.
Stored Procedure Name.

```yaml
Type: System.String
Expand Down
2 changes: 1 addition & 1 deletion src/CosmosDB/CosmosDB/help/Update-AzCosmosDBTable.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Updates the CosmosDB Table. Performs a client side patch operation by reading th

### Example 1
```powershell
Update-AzCosmosDBTable -AccountName myAcccountName -Name myTableName -ResourceGroupName myRgName -Throughput 800
Update-AzCosmosDBTable -AccountName myAccountName -Name myTableName -ResourceGroupName myRgName -Throughput 800
```

```output
Expand Down