Skip to content

Commit 7f60a48

Browse files
authored
Merge pull request #48357 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 2bf82fa + 08fedfe commit 7f60a48

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

articles/cosmos-db/set-throughput.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Here is a code snippet for provisioning 100,000 request units per second across
158158
// Provision 100,000 RU/sec at the database level.
159159
// sharedCollection1 and sharedCollection2 will share the 100,000 RU/sec from the parent database
160160
// dedicatedCollection will have its own dedicated 4,000 RU/sec, independant of the 100,000 RU/sec provisioned from the parent database
161-
Database database = client.CreateDatabaseAsync(new Database { Id = "myDb" }, new RequestOptions { OfferThroughput = 100000 }).Result;
161+
Database database = await client.CreateDatabaseAsync(new Database { Id = "myDb" }, new RequestOptions { OfferThroughput = 100000 });
162162

163163
DocumentCollection sharedCollection1 = new DocumentCollection();
164164
sharedCollection1.Id = "sharedCollection1";

articles/hdinsight/hdinsight-administer-use-management-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ Installation of custom software on the cluster by using Remote Desktop Connectio
7676

7777
* To customize the menu, right-click anywhere on the menu, and then click **Customize**.
7878
* **Settings** and **All Settings**: Displays the **Settings** blade for the cluster, which allows you to access detailed configuration information for the cluster.
79-
* **Dashboard**, **Cluster Dashboard** and **URL: These are all ways to access the cluster dashboard, which is Ambari Web for Linux-based clusters.
80-
-**Secure Shell**: Shows the instructions to connect to the cluster using Secure Shell (SSH) connection.
79+
* **Dashboard**, **Cluster Dashboard** and **URL**: These are all ways to access the cluster dashboard, which is Ambari Web for Linux-based clusters.
80+
* **Secure Shell**: Shows the instructions to connect to the cluster using Secure Shell (SSH) connection.
8181
* **Scale Cluster**: Allows you to change the number of worker nodes for this cluster.
8282
* **Delete**: Deletes the cluster.
8383
* **Quickstart**: Displays information that will help you get started using HDInsight.
84-
* **Users: Allows you to set permissions for *portal management* of this cluster for other users on your Azure subscription.
84+
* **Users**: Allows you to set permissions for *portal management* of this cluster for other users on your Azure subscription.
8585

8686
> [!IMPORTANT]
8787
> This *only* affects access and permissions to this cluster in the Azure portal, and has no effect on who can connect to or submit jobs to the HDInsight cluster.

articles/iot-edge/deploy-modbus-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This article assumes that you're using Modbus TCP protocol. For more information
3030
If you want to test the Modbus gateway functionality, Microsoft has a sample module that you can use. To use the sample module, go to the [Run the solution](#run-the-solution) section and enter the following as the Image URI:
3131

3232
```URL
33-
microsoft/azureiotedge-modbus-tcp:GA-preview-amd64
33+
mcr.microsoft.com/azureiotedge/modbus:1.0
3434
```
3535

3636
If you want to create your own module and customize it for your environment, there is an open source [Azure IoT Edge Modbus module](https://github.com/Azure/iot-edge-modbus) project on Github. Follow the guidance in that project to create your own container image. If you create your own container image, refer to [Develop and deploy a C# IoT Edge module](tutorial-csharp-module.md) for instructions on publishing container images to a registry, and deploying a custom module to your device.
@@ -43,7 +43,7 @@ If you want to create your own module and customize it for your environment, the
4343
4. Add the Modbus module:
4444
1. Click **Add** and select **IoT Edge module**.
4545
2. In the **Name** field, enter "modbus".
46-
3. In the **Image** field, enter the image URI of the sample container: `microsoft/azureiotedge-modbus-tcp:GA-preview-amd64`.
46+
3. In the **Image** field, enter the image URI of the sample container: `mcr.microsoft.com/azureiotedge/modbus:1.0`.
4747
4. Check the **Enable** box to update the module twin's desired properties.
4848
5. Copy the following JSON into the text box. Change the value of **SlaveConnection** to the IPv4 address of your Modbus device.
4949

articles/virtual-machines/windows/convert-disk-storage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ $disk = Get-AzureRmDisk -DiskName $diskName -ResourceGroupName $rgName
9595
$vmResource = Get-AzureRmResource -ResourceId $disk.ManagedBy
9696
9797
# Stop and deallocate the VM before changing the storage type
98-
Stop-AzureRmVM -ResourceGroupName $vm.ResourceGroupName -Name $vm.Name -Force
98+
Stop-AzureRmVM -ResourceGroupName $vm.ResourceGroupName -Name $vmResource.Name -Force
9999
100-
$vm = Get-AzureRmVM $vmResource.ResourceGroupName -Name $vmResource.ResourceName
100+
$vm = Get-AzureRmVM -ResourceGroupName $vmResource.ResourceGroupName -Name $vmResource.Name
101101
102102
# Change the VM size to a size that supports premium storage
103103
# Skip this step if converting storage from premium to standard
@@ -132,7 +132,7 @@ $vmResource = Get-AzureRmResource -ResourceId $disk.ManagedBy
132132
# Stop and deallocate the VM before changing the storage type
133133
Stop-AzureRmVM -ResourceGroupName $vmResource.ResourceGroupName -Name $vmResource.Name -Force
134134
135-
$vm = Get-AzureRmVM $vmResource.ResourceGroupName -Name $vmResource.ResourceName
135+
$vm = Get-AzureRmVM -ResourceGroupName $vmResource.ResourceGroupName -Name $vmResource.Name
136136
137137
# Update the storage type
138138
$diskUpdateConfig = New-AzureRmDiskUpdateConfig -AccountType $storageType -DiskSizeGB $disk.DiskSizeGB

articles/virtual-machines/windows/key-vault-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For existing key vaults, you can use this PowerShell cmdlet:
4141

4242
Set-AzureRmKeyVaultAccessPolicy -VaultName 'ContosoKeyVault' -EnabledForDeployment
4343

44-
## Us CLI to set up Key Vault
44+
## Use CLI to set up Key Vault
4545
To create a key vault by using the command-line interface (CLI), see [Manage Key Vault using CLI](../../key-vault/key-vault-manage-with-cli2.md#create-a-key-vault).
4646

4747
For CLI, you have to create the key vault before you assign the deployment policy. You can do this by using the following command:

0 commit comments

Comments
 (0)