Skip to content

Commit 5dc2578

Browse files
author
Cynthia Nottingham
committed
2 parents b08263f + 910b403 commit 5dc2578

File tree

482 files changed

+8591
-7484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

482 files changed

+8591
-7484
lines changed

.openpublishing.redirection.json

Lines changed: 435 additions & 0 deletions
Large diffs are not rendered by default.

articles/active-directory/authentication/how-to-authentication-find-coverage-gaps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ Based on gaps you found, require administrators to use multi-factor authenticati
4747

4848
- Run the [MFA enablement wizard](https://aka.ms/MFASetupGuide) to choose your MFA policy.
4949

50-
- If you assign custom or built-in admin roles in [Privileged Identity Management](/privileged-identity-management/pim-configure.md), require multi-factor authentication upon role activation.
50+
- If you assign custom or built-in admin roles in [Privileged Identity Management](https://docs.microsoft.com/azure/active-directory/privileged-identity-management/pim-configure), require multi-factor authentication upon role activation.
5151

5252
## Use Passwordless and phishing resistant authentication methods for your administrators
5353

5454
After your admins are enforced for multi-factor authentication and have been using it for a while, it is time to raise the bar on strong authentication and use Passwordless and phishing resistant authentication method:
5555

5656
- [Phone Sign-in (with Microsoft Authenticator)](concept-authentication-authenticator-app.md)
5757
- [FIDO2](concept-authentication-passwordless.md#fido2-security-keys)
58-
- [Windows Hello for Business](/windows/security/identity-protection/hello-for-business/hello-overview.md)
58+
- [Windows Hello for Business](https://docs.microsoft.com/windows/security/identity-protection/hello-for-business/hello-overview)
5959

6060
You can read more about these authentication methods and their security considerations in [Azure AD authentication methods](concept-authentication-methods.md).
6161

articles/active-directory/saas-apps/talentsoft-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Follow these steps to enable Azure AD SSO in the Azure portal.
7979
1. Click **Set additional URLs** and perform the following step if you wish to configure the application in **SP** initiated mode:
8080

8181
In the **Sign-on URL** text box, type a URL using the following pattern:
82-
`https://<tenant>.talentsoft.com`
82+
`https://<tenant>.talent-soft.com`
8383

8484
> [!NOTE]
8585
> These values are not real. Update these values with the actual Identifier, Reply URL and Sign-on URL. Contact [Talentsoft Client support team](mailto:[email protected]) to get these values. You can also refer to the patterns shown in the **Basic SAML Configuration** section in the Azure portal.
@@ -142,4 +142,4 @@ You can also use Microsoft My Apps to test the application in any mode. When you
142142

143143
## Next steps
144144

145-
Once you configure Talentsoft you can enforce session control, which protects exfiltration and infiltration of your organization’s sensitive data in real time. Session control extends from Conditional Access. [Learn how to enforce session control with Microsoft Cloud App Security](/cloud-app-security/proxy-deployment-aad).
145+
Once you configure Talentsoft you can enforce session control, which protects exfiltration and infiltration of your organization’s sensitive data in real time. Session control extends from Conditional Access. [Learn how to enforce session control with Microsoft Cloud App Security](/cloud-app-security/proxy-deployment-aad).

articles/applied-ai-services/form-recognizer/api-v2-0/includes/java-v3-0-0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: ignite-fall-2021
1515
<!-- markdownlint-disable MD033 -->
1616
<!-- markdownlint-disable MD034 -->
1717

18-
[Reference documentation](/java/api/overview/azure/ai-formrecognizer-readme) | [Library source code](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/formrecognizer/azure-ai-formrecognizer/src) | [Package (Maven)](https://mvnrepository.com/artifact/com.azure/azure-ai-formrecognizer) | [Samples](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/formrecognizer/azure-ai-formrecognizer/src/samples/README.md)
18+
[Reference documentation](/java/api/overview/azure/ai-formrecognizer-readme) | [Library source code](https://github.com/Azure/azure-sdk-for-java/tree/azure-ai-formrecognizer_3.1.1/sdk/formrecognizer/azure-ai-formrecognizer/src) | [Package (Maven)](https://mvnrepository.com/artifact/com.azure/azure-ai-formrecognizer) | [Samples](https://github.com/Azure/azure-sdk-for-java/blob/azure-ai-formrecognizer_3.1.1/sdk/formrecognizer/azure-ai-formrecognizer/src/samples/README.md)
1919

2020
## Prerequisites
2121

@@ -420,4 +420,4 @@ In this quickstart, you used the Form Recognizer Java client library to train mo
420420
> [Build a training data set](../../build-training-data-set.md)
421421
422422
* [What is Form Recognizer?](../../overview.md)
423-
* The sample code from this guide (and more) can be found on [GitHub](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/formrecognizer/azure-ai-formrecognizer/src/samples).
423+
* The sample code from this guide (and more) can be found on [GitHub](https://github.com/Azure/azure-sdk-for-java/tree/azure-ai-formrecognizer_3.1.1/sdk/formrecognizer/azure-ai-formrecognizer/src/samples).

articles/azure-functions/durable/durable-functions-versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static Task Run([OrchestrationTrigger] IDurableOrchestrationContext conte
3030
}
3131
```
3232

33-
This simplistic function takes the results of **Foo** and passes it to **Bar**. Let's assume we need to change the return value of **Foo** from `bool` to `int` to support a wider variety of result values. The result looks like this:
33+
This simplistic function takes the results of **Foo** and passes it to **Bar**. Let's assume we need to change the return value of **Foo** from `bool` to `string` to support a wider variety of result values. The result looks like this:
3434

3535
```csharp
3636
[FunctionName("FooBar")]

articles/azure-functions/functions-bindings-timer.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -272,14 +272,15 @@ When a timer trigger function is invoked, a timer object is passed into the func
272272

273273
```json
274274
{
275-
"schedule":{
275+
"Schedule":{
276+
"AdjustForDST": true
276277
},
277-
"scheduleStatus": {
278-
"last":"2016-10-04T10:15:00+00:00",
279-
"lastUpdated":"2016-10-04T10:16:00+00:00",
280-
"next":"2016-10-04T10:20:00+00:00"
278+
"ScheduleStatus": {
279+
"Last":"2016-10-04T10:15:00+00:00",
280+
"LastUpdated":"2016-10-04T10:16:00+00:00",
281+
"Next":"2016-10-04T10:20:00+00:00"
281282
},
282-
"isPastDue":false
283+
"IsPastDue":false
283284
}
284285
```
285286

articles/azure-sql/database/authentication-azure-ad-only-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.topic: conceptual
88
author: GithubMirek
99
ms.author: mireks
1010
ms.reviewer: vanto
11-
ms.date: 10/21/2021
11+
ms.date: 11/03/2021
1212
ms.custom: ignite-fall-2021
1313
---
1414

@@ -397,7 +397,7 @@ When Azure AD-only authentication is enabled for SQL Database, the following fea
397397
- [Azure SQL Database server roles](security-server-roles.md)
398398
- [Elastic jobs](job-automation-overview.md)
399399
- [SQL Data Sync](sql-data-sync-data-sql-server-sql-database.md)
400-
- [Change data capture (CDC)](/sql/relational-databases/track-changes/about-change-data-capture-sql-server)
400+
- [Change data capture (CDC)](/sql/relational-databases/track-changes/about-change-data-capture-sql-server) - If you create a database in Azure SQL Database as an Azure AD user and enable change data capture on it, a SQL user will not be able to disable or make changes to CDC artifacts. However, another Azure AD user will be able to enable or disable CDC on the same database. Similarly, if you create an Azure SQL Database as a SQL user, enabling or disabling CDC as an Azure AD user won't work
401401
- [Transactional replication](/azure/azure-sql/managed-instance/replication-transactional-overview) - Since SQL authentication is required for connectivity between replication participants, when Azure AD-only authentication is enabled, transactional replication is not supported for SQL Database for scenarios where transactional replication is used to push changes made in an Azure SQL Managed Instance, on-premises SQL Server, or an Azure VM SQL Server instance to a database in Azure SQL Database
402402
- [SQL insights](/azure/azure-monitor/insights/sql-insights-overview)
403403
- EXEC AS statement for Azure AD group member accounts

articles/azure-vmware/configure-identity-source-vcenter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ You'll run the `New-AvsLDAPSIdentitySource` cmdlet to add an AD over LDAP with S
8383
| **Name** | User-friendly name of the external identity source, for example, **avslap.local**. |
8484
| **DomainName** | The FQDN of the domain. |
8585
| **DomainAlias** | For Active Directory identity sources, the domain's NetBIOS name. Add the NetBIOS name of the AD domain as an alias of the identity source if you're using SSPI authentications. |
86-
| **PrimaryUrl** | Primary URL of the external identity source, for example, **ldap://yourserver:389**. |
86+
| **PrimaryUrl** | Primary URL of the external identity source, for example, **ldap://yourserver:636**. |
8787
| **SecondaryURL** | Secondary fall-back URL if there's primary failure. |
8888
| **BaseDNUsers** | Where to look for valid users, for example, **CN=users,DC=yourserver,DC=internal**. Base DN is needed to use LDAP Authentication. |
8989
| **BaseDNGroups** | Where to look for groups, for example, **CN=group1, DC=yourserver,DC= internal**. Base DN is needed to use LDAP Authentication. |

articles/cognitive-services/language-service/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Azure Cognitive Service for Language provides the following features:
3636
> | [Personally Identifiable Information (PII) detection](personally-identifiable-information/overview.md) | This pre-configured feature identifies entities in text across several pre-defined categories of sensitive information, such as account information. |[Language Studio](language-studio.md) <br> • [REST API and client-library](named-entity-recognition/quickstart.md) |
3737
> | [Key phrase extraction](key-phrase-extraction/overview.md) | This pre-configured feature evaluates unstructured text, and for each input document, returns a list of key phrases and main points in the text. |[Language Studio](language-studio.md) <br> • [REST API and client-library](key-phrase-extraction/quickstart.md) <br> • [Docker container](key-phrase-extraction/how-to/use-containers.md) |
3838
> |[Entity linking](entity-linking/overview.md) | This pre-configured feature disambiguates the identity of an entity found in text and provides links to the entity on Wikipedia. |[Language Studio](language-studio.md) <br> • [REST API and client-library](entity-linking/quickstart.md) |
39-
> | [Text Analytics for health (preview)](text-analytics-for-health/overview.md) | This pre-configured feature extracts information from unstructured medical texts, such as clinical notes and doctor's notes. |[Language Studio](language-studio.md) <br> • [REST API and client-library](text-analytics-for-health/quickstart.md) <br> • [Docker container](text-analytics-for-health/how-to/use-containers.md) |
39+
> | [Text Analytics for health](text-analytics-for-health/overview.md) | This pre-configured feature extracts information from unstructured medical texts, such as clinical notes and doctor's notes. |[Language Studio](language-studio.md) <br> • [REST API and client-library](text-analytics-for-health/quickstart.md) <br> • [Docker container](text-analytics-for-health/how-to/use-containers.md) |
4040
> | [Custom NER](custom-named-entity-recognition/overview.md) | Build an AI model to extract custom entity categories, using unstructured text that you provide. |[Language Studio](custom-named-entity-recognition/quickstart.md?pivots=language-studio) <br> • [REST API](custom-named-entity-recognition/quickstart.md?pivots=rest-api) |
4141
> | [Analyze sentiment and opinions](sentiment-opinion-mining/overview.md) | This pre-configured feature provides sentiment labels (such as "*negative*", "*neutral*" and "*positive*") for sentences and documents. This feature can additionally provide granular information about the opinions related to words that appear in the text, such as the attributes of products or services. | • [Language Studio](language-studio.md) <br> • [REST API and client-library](sentiment-opinion-mining/quickstart.md) <br> • [Docker container](sentiment-opinion-mining/how-to/use-containers.md)
4242
> |[Language detection](language-detection/overview.md) | This pre-configured feature evaluates text, and determines the language it was written in. It returns a language identifier and a score that indicates the strength of the analysis. |[Language Studio](language-studio.md) <br> • [REST API and client-library](language-detection/quickstart.md) <br> • [Docker container](language-detection/how-to/use-containers.md) |

articles/confidential-computing/quick-create-portal.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ For more information about connecting to Linux VMs, see [Create a Linux VM on Az
136136
## Install Azure DCAP Client
137137

138138
> [!NOTE]
139-
> Trusted Hardware Identity Management (THIM) is a free Azure service that helps you manage the hardware identities of different Trusted Execution Environments (TEEs). It fetches collateral from Intel Provisioning Certification Service (PCS) and caches it. The service enforces a minimum Trusted Compute Base (TCB) level as Azure security baseline, for attestation purposes.
139+
> Trusted Hardware Identity Management (THIM) is a free Azure service that helps you manage the hardware identities of different Trusted Execution Environments (TEEs). It fetches collateral from Intel Provisioning Certification Service (PCS) and caches it. The service enforces a minimum Trusted Compute Base (TCB) level as Azure security baseline, for attestation purposes. For DCsv3 and DCdsv3-series Azure VMs, the Intel certificates can only be fetched from THIM, as it is not possible to make direct calls to Intel service from the VMs.
140140
141-
DCsv2, DCsv3 and DCdsv3-series Azure VM users are recommended to install Azure DCAP client to interact with THIM and fetch TEE collateral for quote generation, during attestation process. To learn more about attestation, please refer to [Microsoft Azure Attestation](/azure/attestation/overview) or [ECDSA Attestation](https://www.intel.com/content/www/us/en/developer/tools/software-guard-extensions/attestation-services.html).
141+
With the release of the Intel® Xeon Scalable Processors, remote attestation support is changing. DCsv3 and DCdsv3 only support [ECDSA-based Attestation](https://www.intel.com/content/www/us/en/developer/tools/software-guard-extensions/attestation-services.html) and the users are required to install [Azure DCAP](https://github.com/Microsoft/Azure-DCAP-Client) client to interact with THIM and fetch TEE collateral for quote generation during attestation process. DCsv2 continues to support [EPID-based Attestation](https://www.intel.com/content/www/us/en/developer/tools/software-guard-extensions/attestation-services.html).
142142

143143
## Clean up resources
144144

@@ -154,3 +154,6 @@ Discover how you can build confidential computing applications, by continuing to
154154

155155
> [!div class="nextstepaction"]
156156
> [Building Open Enclave SDK Samples](https://github.com/openenclave/openenclave/blob/master/samples/README.md)
157+
158+
Microsoft Azure Attestation is free and ECDSA-based attestation framework, for remotely verifying the trustworthiness of multiple TEEs and integrity of the binaries running inside it. Learn [more](/azure/attestation/overview)
159+

0 commit comments

Comments
 (0)