Skip to content

Commit 961869a

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into fixSharedStatement
2 parents 17d2388 + 75b5e22 commit 961869a

File tree

8 files changed

+48
-20
lines changed

8 files changed

+48
-20
lines changed

articles/active-directory/authentication/how-to-authentication-sms-supported-apps.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: active-directory
66
ms.service: active-directory
77
ms.subservice: authentication
88
ms.topic: conceptual
9-
ms.date: 06/28/2021
9+
ms.date: 11/19/2021
1010
ms.author: justinha
1111
author: aanjusingh
1212
manager: daveba
@@ -24,15 +24,14 @@ SMS-based authentication is available to Microsoft apps integrated with the Micr
2424
| Office 365- Microsoft Online Services* || |
2525
| Microsoft One Note || |
2626
| Microsoft Teams |||
27-
| Microsoft Intune/ Company portal |||
27+
| Microsoft Intune Company portal |||
2828
| My Apps Portal ||Not available|
2929
| Microsoft Forms ||Not available|
3030
| Microsoft Edge || |
3131
| Microsoft Power BI || |
3232
| Microsoft Stream || |
3333
| Microsoft Power Apps || |
3434
| Microsoft Azure |||
35-
| Microsoft Authenticator | ||
3635
| Azure Virtual Desktop || |
3736

3837
*_SMS sign-in isn't available for office applications, such as Word, Excel, etc., when accessed directly on the web, but is available when accessed through the [Office 365 web app](https://www.office.com)_

articles/azure-resource-manager/bicep/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Set up Bicep development and deployment environments
33
description: How to configure Bicep development and deployment environments
44
ms.topic: conceptual
5-
ms.date: 11/18/2021
5+
ms.date: 11/19/2021
66
ms.custom: devx-track-azurepowershell, devx-track-azurecli
77
---
88

@@ -97,6 +97,8 @@ bicep --version
9797

9898
The following methods install the Bicep CLI and add it to your PATH. You must manually install for any use other than Azure CLI.
9999

100+
When installing manually, select a location that is different than the one managed by Azure CLI. All of the following examples use a location named **bicep** or **.bicep**. This location won't conflict with the location managed by Azure CLI, which uses **.azure**.
101+
100102
- [Linux](#linux)
101103
- [macOS](#macos)
102104
- [Windows](#windows)
@@ -185,7 +187,7 @@ bicep --help
185187

186188
## Install on air-gapped cloud
187189

188-
To install Bicep CLI in an air-gapped environment, you need to download the Bicep CLI executable manually and save it to a certain location.
190+
The `bicep install` and `bicep upgrade` commands don't work in an air-gapped environment. To install Bicep CLI in an air-gapped environment, you need to download the Bicep CLI executable manually and save it to **.azure/bin**. This location is where the instance managed by Azure CLI is installed.
189191

190192
- **Linux**
191193

@@ -202,8 +204,6 @@ To install Bicep CLI in an air-gapped environment, you need to download the Bice
202204
1. Download **bicep-win-x64.exe** from the [Bicep release page](https://github.com/Azure/bicep/releases/latest/) in a non-air-gapped environment.
203205
1. Copy the executable to the **%UserProfile%/.azure/bin** directory on an air-gapped machine.
204206

205-
Note `bicep install` and `bicep upgrade` commands don't work in an air-gapped environment.
206-
207207
## Install the nightly builds
208208

209209
If you'd like to try the latest pre-release bits of Bicep before they're released, see [Install nightly builds](https://github.com/Azure/bicep/blob/main/docs/installing-nightly.md).

articles/azure-resource-manager/bicep/installation-troubleshoot.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Troubleshoot problems with Bicep installation
33
description: How to resolve errors and problems with your Bicep installation.
44
ms.topic: conceptual
5-
ms.date: 11/18/2021
5+
ms.date: 11/19/2021
66
---
77

88
# Troubleshoot Bicep installation
@@ -61,20 +61,27 @@ For other **macOS** installations, use:
6161

6262
See [User and Workspace Settings](https://code.visualstudio.com/docs/getstarted/settings) for configuring Visual Studio Code settings.
6363

64-
## Two versions of Bicep CLI installed
64+
## Multiple versions of Bicep CLI installed
6565

6666
If you manually install the Bicep CLI to more than one location, you may notice unexpected behavior such as the Bicep CLI not updating when you run the [upgrade command](bicep-cli.md#upgrade). Or, you may notice that running `az bicep version` returns one version, but `bicep --version` returns a different version.
6767

68-
To resolve this issue, you can either update both locations, or delete one location and add the other location to your path.
68+
To resolve this issue, you can either update all locations, or select one location to maintain and delete the other locations.
6969

70-
To **keep both installation locations**, use `az bicep upgrade` to update one version. For the other version, use the same method you used earlier to [manually install the Bicep CLI](install.md#install-manually).
70+
First, open your command prompt (not PowerShell), and run `where bicep`. This command returns the locations of your Bicep installations. If you're using the instance of Bicep CLI that is managed by Azure CLI, you won't see this installation because it's not added to the PATH. If `where bicep` returns only one location, it may be that the conflicting versions you're seeing is between the manual installation and the Azure CLI installation.
71+
72+
To **keep all installation locations**, use the same method you used earlier to [manually install the Bicep CLI](install.md#install-manually) for all locations you want to maintain. If you're using Azure CLI, run `az bicep upgrade` to update that version.
7173

7274
To **keep only one installation location**, use the following steps:
7375

74-
1. Open your command prompt (not PowerShell), and run `where bicep`. This command returns the location of the Bicep installation.
75-
1. Delete the installation that was returned in the previous step.
76-
1. Remove the location from your **PATH** environment variable.
77-
1. Add your other installation location to the **PATH** variable. For Windows, the location maintained by Azure CLI is `%USERPROFILE%\.Azure\bin`.
76+
1. Delete the files for the installations you don't want to keep.
77+
1. Remove those locations from your **PATH** environment variable.
78+
79+
If you have both a **manual installation and the instance managed by Azure CLI**, you can combine your usage to one instance.
80+
81+
1. Delete the manual installation location.
82+
1. Add the location of the Bicep CLI installed by Azure CLI to the **PATH** variable. For Windows, the location maintained by Azure CLI is `%USERPROFILE%\.Azure\bin`.
83+
84+
After adding the Azure CLI instance to the PATH, you can use that version with either `az bicep` or `bicep`.
7885

7986
## Next steps
8087

articles/azure-sql/database/service-tier-hyperscale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Page servers are systems representing a scaled-out storage engine. Each page se
9999

100100
### Log service
101101

102-
The log service accepts transaction log records from the primary compute replica, persists them in a durable cache, and forwards the log records to the rest of compute replicas (so they can update their caches) as well as the relevant page server(s), so that the data can be updated there. In this way, all data changes from the primary compute replica are propagated through the log service to all the secondary compute replicas and page servers. Finally, transaction log records are pushed out to long-term storage in Azure Storage, which is a virtually infinite storage repository. This mechanism removes the need for frequent log truncation. The log service also has local memory and SSD caches to speed up access to log records.
102+
The log service accepts transaction log records from the primary compute replica, persists them in a durable cache, and forwards the log records to the rest of compute replicas (so they can update their caches) as well as the relevant page server(s), so that the data can be updated there. In this way, all data changes from the primary compute replica are propagated through the log service to all the secondary compute replicas and page servers. Finally, transaction log records are pushed out to long-term storage in Azure Storage, which is a virtually infinite storage repository. This mechanism removes the need for frequent log truncation. The log service also has local memory and SSD caches to speed up access to log records. The log on hyperscale is practically infinite with the restriction that a single transaction cannot generate more than 1TB of log.
103103

104104
### Azure storage
105105

articles/cost-management-billing/manage/billing-subscription-transfer.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags: billing,top-support-issue
88
ms.service: cost-management-billing
99
ms.subservice: billing
1010
ms.topic: how-to
11-
ms.date: 02/05/2021
11+
ms.date: 11/17/2021
1212
ms.author: banders
1313
ms.custom: contperf-fy21q1
1414
---
@@ -23,6 +23,8 @@ If you're an Enterprise Agreement (EA) customer, your enterprise administrator c
2323

2424
Only the billing administrator of an account can transfer ownership of a subscription.
2525

26+
When you send or accept transfer request, you agree to terms and conditions. For more information, see [Transfer terms and conditions](subscription-transfer.md#transfer-terms-and-conditions).
27+
2628
## Transfer billing ownership of an Azure subscription
2729

2830
1. Sign in to the [Azure portal](https://portal.azure.com) as an administrator of the billing account that has the subscription that you want to transfer. If you're not sure if you're and administrator, or if you need to determine who is, see [Determine account billing administrator](add-change-subscription-administrator.md#whoisaa).

articles/cost-management-billing/manage/mca-request-billing-ownership.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: billing
77
ms.service: cost-management-billing
88
ms.subservice: billing
99
ms.topic: how-to
10-
ms.date: 11/09/2021
10+
ms.date: 11/17/2021
1111
ms.author: banders
1212
---
1313

@@ -28,6 +28,8 @@ This process contains the following tasks, which we’ll guide you through step
2828
2. Review/approve transfer request
2929
3. Check transfer request status
3030

31+
When you send or accept transfer request, you agree to terms and conditions. For more information, see [Transfer terms and conditions](subscription-transfer.md#transfer-terms-and-conditions).
32+
3133
Before you begin, make sure that the person you're requesting billing ownership from has one of the following roles:
3234

3335
- For a Microsoft Customer Agreement, the person must have an owner or contributor role for the billing account or for the relevant billing profile or invoice section. For more information, see [billing roles and tasks](understand-mca-roles.md#invoice-section-roles-and-tasks).

articles/cost-management-billing/manage/mpa-request-ownership.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tags: billing
66
ms.service: cost-management-billing
77
ms.subservice: billing
88
ms.topic: how-to
9-
ms.date: 09/15/2021
9+
ms.date: 11/17/2021
1010
ms.author: banders
1111
---
1212

@@ -20,6 +20,8 @@ To request the billing ownership, you must have **Global Admin** or **Admin Agen
2020

2121
This article applies to billing accounts for Microsoft Partner Agreements. These accounts are created for Cloud Solution Providers (CSPs) to manage billing for their customers in the new commerce experience. The new experience is only available for partners, who have at least one customer that has accepted a Microsoft Customer Agreement (MCA) and has an Azure Plan. [Check if you have access to a Microsoft Partner Agreement](#check-access-to-a-microsoft-partner-agreement).
2222

23+
When you send or accept transfer request, you agree to terms and conditions. For more information, see [Transfer terms and conditions](subscription-transfer.md#transfer-terms-and-conditions).
24+
2325
## Prerequisites
2426

2527
1. Establish [reseller relationship](/partner-center/request-a-relationship-with-a-customer) with the customer. Check [CSP Regional Authorization Overview](/partner-center/regional-authorization-overview) to ensure both customer and Partner tenant are within the same authorized regions.

articles/cost-management-billing/manage/subscription-transfer.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: billing
77
ms.service: cost-management-billing
88
ms.subservice: billing
99
ms.topic: conceptual
10-
ms.date: 10/12/2021
10+
ms.date: 11/17/2021
1111
ms.author: banders
1212
ms.custom:
1313
---
@@ -102,6 +102,22 @@ Microsoft doesn't provide a tool to automatically move resources between subscri
102102

103103
Read the following sections to learn more about other considerations before you start a product transfer.
104104

105+
### Transfer terms and conditions
106+
107+
When you send or accept a transfer you agree to terms and conditions. The following information provides additional details.
108+
109+
#### Send transfer
110+
111+
When you send a transfer request, must select the **Send transfer request** option. By making the selection you also agree to the following terms and conditions:
112+
113+
_By sending this transfer request, you acknowledge and agree that the selected items will transfer to your account as of the Transition Date (date when the transfer completed successfully). You will be responsible to Microsoft for all ongoing, scheduled billings related to the transfer items as of the Transition Date; provided that Microsoft will move any prepaid subscriptions (including reserved instances) to your account. You agree that you may not cancel any prepaid subscriptions transferred to your account._
114+
115+
#### Transfer acceptance
116+
117+
When you accept a transfer, must select the **Review + validate** option. By making the selection you also agree to the following terms and conditions:
118+
119+
_By accepting this transfer request, you acknowledge and agree that the indicated items will transfer to the nominated destination account as of the Transition Date (date when the transfer completed successfully). Any prepaid subscriptions, if selected, (including reserved instances) will be moved to the destination account and, as of the Transition Date, you will no longer be responsible to Microsoft for ongoing payment obligations (if any) related to the transfer items._
120+
105121
### Resources transfer with subscriptions
106122

107123
When only billing ownership is changing, then resources aren't affected. However, when you do a resource move or change the service tenant, then resources could be affected.

0 commit comments

Comments
 (0)