Skip to content

Commit e2c961a

Browse files
authored
Merge pull request #214647 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents a2120ce + 1995a2b commit e2c961a

File tree

10 files changed

+32
-11
lines changed

10 files changed

+32
-11
lines changed

articles/active-directory/fundamentals/auth-saml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ While one of most important use cases that SAML addresses is SSO, especially by
4343

4444
* **Web app**: Enterprise application that supports SAML and uses Azure AD as IdP.
4545

46-
* **Token**: A SAML assertion (also known as SAML tokens) that carries sets of claims made by the IdP about the principle (user). It contains authentication information, attributes, and authorization decision statements.
46+
* **Token**: A SAML assertion (also known as SAML tokens) that carries sets of claims made by the IdP about the principal (user). It contains authentication information, attributes, and authorization decision statements.
4747

4848
* **Azure AD**: Enterprise cloud IdP that provides SSO and Multi-factor authentication for SAML apps. It synchronizes, maintains, and manages identity information for users while providing authentication services to relying applications.
4949

articles/aks/egress-outboundtype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ An AKS cluster can be customized with a unique `outboundType` of type `loadBalan
3434
> Outbound type impacts only the egress traffic of your cluster. For more information, see [setting up ingress controllers](ingress-basic.md).
3535
3636
> [!NOTE]
37-
> You can use your own [route table][byo-route-table] with UDR and kubenet networking. Make sure you cluster identity (service principal or managed identity) has Contributor permissions to the custom route table.
37+
> You can use your own [route table][byo-route-table] with UDR and kubenet networking. Make sure your cluster identity (service principal or managed identity) has Contributor permissions to the custom route table.
3838
3939
### Outbound type of loadBalancer
4040

articles/app-service/includes/quickstart-python/deploy-local-git.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
author: DavidCBerry13
3-
ms.author: daberry
2+
author: cephalin
3+
ms.author: cephalin
44
ms.topic: include
55
ms.date: 01/29/2022
66
---
@@ -15,6 +15,20 @@ You can deploy your application code from a local Git repository to Azure by con
1515
| [!INCLUDE [Deploy local Git Azure portal 3](<./deploy-local-git-azure-portal-3.md>)] | :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-3-240px.png" alt-text="A screenshot showing the deployment center after saving and the remote Git URL to use for deployments." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-3.png"::: |
1616
| [!INCLUDE [Deploy local Git Azure portal 4](<./deploy-local-git-azure-portal-4.md>)] | :::image type="content" source="../../media/quickstart-python/deploy-local-git-azure-portal-4-240px.png" alt-text="A screenshot showing the location of the deployment credentials in the deployment center in App Service." lightbox="../../media/quickstart-python/deploy-local-git-azure-portal-4.png"::: |
1717

18+
Next, in the root directory of your application, configure a [Git remote](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) that points to Azure using the Git URL of the Azure remote obtained in a previous step.
19+
20+
```bash
21+
git remote add azure <git-deployment-url>
22+
```
23+
24+
You can now push code from your local Git repository to Azure using the Git remote you just configured. The default deployment branch for App Service is `master`, but many Git repositories are moving away from `master` to `main`. You can either specify the mapping from local branch name to remote branch name in the push (as shown below), or you can configure your [`DEPLOYMENT_BRANCH` app setting](/azure/app-service/deploy-local-git?tabs=cli#change-deployment-branch).
25+
26+
```bash
27+
git push azure main:master
28+
```
29+
30+
The first time you push code to Azure, Git will prompt you for the Azure deployment credentials you obtained in the previous step. Git will then cache these credentials so you will not have to reenter them on subsequent deployments.
31+
1832
### [Azure CLI](#tab/deploy-instructions-azcli)
1933

2034
First, configure the deployment source for your web app to be local Git using the `az webapp deployment source` command. This command will output the URL of the remote Git repository that you will be pushing code to. Make a copy of this value as you will need it in a later step.
@@ -31,7 +45,7 @@ Next, in the root directory of your application, configure a [Git remote](https:
3145
git remote add azure <git-deployment-url>
3246
```
3347

34-
You can now push code from your local Git repository to Azure using the Git remote you just configured. Master is the default deployment branch for App Service. You must specify the mapping from local branch name to remote branch name in the push.
48+
You can now push code from your local Git repository to Azure using the Git remote you just configured. The default deployment branch for App Service is `master`, but many Git repositories are moving away from `master` to `main`. You can either specify the mapping from local branch name to remote branch name in the push (as shown below), or you can configure your [`DEPLOYMENT_BRANCH` app setting](/azure/app-service/deploy-local-git?tabs=cli#change-deployment-branch).
3549

3650
```bash
3751
git push azure main:master

articles/cosmos-db/continuous-backup-restore-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Currently the point in time restore functionality has the following limitations:
142142

143143
* While a restore is in progress, don't modify or delete the Identity and Access Management (IAM) policies. These policies grant the permissions for the account to change any VNET, firewall configuration.
144144

145-
* Azure Cosmso DB for SQL or MongoDB accounts that create unique index after the container is created aren't supported for continuous backup. Only containers that create unique index as a part of the initial container creation are supported. For MongoDB accounts, you create unique index using [extension commands](mongodb/custom-commands.md).
145+
* Azure Cosmos DB for SQL or MongoDB accounts that create unique index after the container is created aren't supported for continuous backup. Only containers that create unique index as a part of the initial container creation are supported. For MongoDB accounts, you create unique index using [extension commands](mongodb/custom-commands.md).
146146

147147
* The point-in-time restore functionality always restores to a new Azure Cosmos DB account. Restoring to an existing account is currently not supported. If you're interested in providing feedback about in-place restore, contact the Azure Cosmos DB team via your account representative.
148148

articles/event-grid/event-schema-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ If the blob storage account uses SFTP to create or overwrite a blob, then the da
651651
* The `identity` key is included in the data set. This corresponds to the local user used for SFTP authentication.
652652

653653
> [!NOTE]
654-
> SFTP uploads will generate 2 events. One `SftpCreate` for an initial empty blob created when opening the file and one `SftpCommit` when the file contents are written.
654+
> SFTP uploads will generate 2 events. One `SftpCreate` for an initial empty blob created when opening the file and one `SftpCommit` when the file contents are written. If you want to ensure that the Microsoft.Storage.BlobCreated event is triggered only when a Block Blob is completely committed, filter the event for the SftpCommit REST API call.
655655
656656
```json
657657
[{

articles/marketplace/azure-private-plan-troubleshooting.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ While troubleshooting the Azure Subscription Hierarchy, keep these things in min
6565

6666
- ISV to ensure the SaaS private plan is using the correct tenant ID for the customer - [How to find your Azure Active Directory tenant ID](../active-directory/fundamentals/active-directory-how-to-find-tenant.md). For VMs use the [Azure Subscription ID.](../azure-portal/get-subscription-tenant-id.md)
6767
- ISV to ensure that the Customer is not buying through a CSP. Private Plans are not available on a CSP-managed subscription.
68+
- ISV to ensure the purchaser tenant ID is always present in the private audience list and isn't removed until the customer SaaS subscription is unsubscribed as this could have potential consequences of managing or sending meter usage for that customer SaaS subscription.
6869
- Customer to ensure customer is logging in with an email ID that is registered under the same tenant ID (use the same user ID they used in step #1 above)
6970
- ISV to ask the customer to find the Private Plan in Azure Marketplace: [Private plans in Azure Marketplace](/marketplace/private-plans)
7071
- Customer to ensure marketplace is enabled - [Azure Marketplace](../cost-management-billing/manage/ea-azure-marketplace.md) – if it is not, the user has to contact their Azure Administrator to enable marketplace, for more information regarding Azure Marketplace, see [Azure Marketplace](../cost-management-billing/manage/ea-azure-marketplace.md).
@@ -81,4 +82,4 @@ While troubleshooting the Azure Subscription Hierarchy, keep these things in min
8182

8283
## Next steps
8384

84-
- [Create an Azure Support Request](../azure-portal/supportability/how-to-create-azure-support-request.md)
85+
- [Create an Azure Support Request](../azure-portal/supportability/how-to-create-azure-support-request.md)

articles/marketplace/partner-center-portal/pc-saas-fulfillment-webhook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ When creating a transactable SaaS offer in Partner Center, the partner provides
1616
* When the SaaS subscription is in *Subscribed* status:
1717
* ChangePlan
1818
* ChangeQuantity
19-
* Renew
20-
* Suspend
19+
* Renew (notify only, no ACK needed)
20+
* Suspend (notify only, no ACK needed)
2121
* Unsubscribe (notify only, no ACK needed)
2222
* When SaaS subscription is in *Suspended* status:
2323
* Reinstate

articles/notification-hubs/notification-hubs-android-push-notification-google-fcm-get-started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ Your hub is now configured to work with Firebase Cloud Messaging. You also have
129129
```gradle
130130
implementation 'com.google.firebase:firebase-core:16.0.8'
131131
implementation 'com.google.firebase:firebase-messaging:17.3.4'
132+
implementation 'com.google.firebase:firebase-iid:21.1.0'
132133
```
133134

134135
2. Add the following plug-in at the end of the file if it's not already there.

articles/service-bus-messaging/service-bus-dead-letter-queues.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,10 @@ You can access the dead-letter queue by using the following syntax:
7373
```
7474

7575

76+
## Sending dead-lettered messages to be reprocessed
77+
As there can be valuable business data in messages that ended up in the dead-letter queue, it is desirable to have those messages be reprocessed when operators have finished dealing with the circumstances which caused the messages to be dead-lettered in the first place.
78+
79+
Tools like [Azure Service Bus Explorer](/azure/service-bus-messaging/explorer) enable manual moving of messages between queues and topics. If there are many messages in the dead-letter queue that need to be moved, [code like this](https://stackoverflow.com/a/68632602/151350) can help move them all at once. Operators will often prefer having a user interface so they can troubleshoot which message types have failed processing, from which source queues, and for what reasons, while still being able to resubmit batches of messages to be reprocessed. Tools like [ServicePulse with NServiceBus](https://docs.particular.net/servicepulse/intro-failed-messages) provide these capabilities.
80+
7681
## Next steps
7782
See [Enable dead lettering for a queue or subscription](enable-dead-letter.md) to learn about different ways of configuring the **dead lettering on message expiration** setting.

articles/service-bus-messaging/service-bus-integrate-with-rabbitmq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ In the `Address` field we'll enter the name of your **Azure Service Bus Queue**,
102102

103103
## Publishing Messages from RabbitMQ to Azure Service Bus
104104

105-
In the RabbitMQ Management interface we can go to `Queues`, select the `azure` queue, and search for the `Publish message` panel. There a form will appear that will let you publish messages directly to your queue. For our example we're just going to add `fist message` as the `Payload` and hit `Publish Message`:
105+
In the RabbitMQ Management interface we can go to `Queues`, select the `azure` queue, and search for the `Publish message` panel. There a form will appear that will let you publish messages directly to your queue. For our example we're just going to add `first message` as the `Payload` and hit `Publish Message`:
106106

107107
:::image type="content" source="./media/service-bus-integrate-with-rabbitmq/first-message.png" alt-text="Publish first message":::
108108

0 commit comments

Comments
 (0)