Skip to content

Commit f18f615

Browse files
authored
Merge pull request #200408 from MicrosoftDocs/main
6/3 AM Publish
2 parents 992cdd8 + b501c62 commit f18f615

File tree

108 files changed

+1091
-345
lines changed

Some content is hidden

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

108 files changed

+1091
-345
lines changed

articles/active-directory/authentication/howto-mfa-getstarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about deployment considerations and strategy for successful i
44
ms.service: active-directory
55
ms.subservice: authentication
66
ms.topic: how-to
7-
ms.date: 02/02/2022
7+
ms.date: 06/01/2022
88
ms.author: mtillman
99
author: mtillman
1010
manager: martinco
@@ -246,7 +246,7 @@ You can monitor authentication method registration and usage across your organiz
246246

247247
The Azure AD sign in reports include authentication details for events when a user is prompted for MFA, and if any Conditional Access policies were in use. You can also use PowerShell for reporting on users registered for Azure AD Multi-Factor Authentication.
248248

249-
NPS extension and AD FS logs can be viewed from **Security** > **MFA** > **Activity report**.
249+
NPS extension and AD FS logs can be viewed from **Security** > **MFA** > **Activity report**. Inclusion of this activity in the [Sign-in logs](../reports-monitoring/concept-sign-ins.md) is currently in Preview.
250250

251251
For more information, and additional Azure AD Multi-Factor Authentication reports, see [Review Azure AD Multi-Factor Authentication events](howto-mfa-reporting.md#view-the-azure-ad-sign-ins-report).
252252

articles/active-directory/enterprise-users/groups-dynamic-membership.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: enterprise-users
1010
ms.workload: identity
1111
ms.topic: overview
12-
ms.date: 06/02/2022
12+
ms.date: 06/03/2022
1313
ms.author: curtand
1414
ms.reviewer: krbain
1515
ms.custom: it-pro
@@ -81,10 +81,10 @@ The following are the user properties that you can use to create a single expres
8181

8282
### Properties of type boolean
8383

84-
| Properties | Allowed values | Usage |
85-
| --- | --- | --- |
86-
| accountEnabled |true false |user.accountEnabled -eq true |
87-
| dirSyncEnabled |true false |user.dirSyncEnabled -eq true |
84+
Properties | Allowed values | Usage
85+
--- | --- | ---
86+
accountEnabled |true false |user.accountEnabled -eq true
87+
dirSyncEnabled |true false |user.dirSyncEnabled -eq true
8888

8989
### Properties of type string
9090

@@ -101,6 +101,7 @@ The following are the user properties that you can use to create a single expres
101101
| jobTitle |Any string value or *null* |(user.jobTitle -eq "value") |
102102
| mail |Any string value or *null* (SMTP address of the user) |(user.mail -eq "value") |
103103
| mailNickName |Any string value (mail alias of the user) |(user.mailNickName -eq "value") |
104+
| memberOf | Any string value (valid group object ID) | (device.memberof -any (group.objectId -in ['value'])) |
104105
| mobile |Any string value or *null* |(user.mobile -eq "value") |
105106
| objectId |GUID of the user object |(user.objectId -eq "11111111-1111-1111-1111-111111111111") |
106107
| onPremisesDistinguishedName (preview)| Any string value or *null* |(user.onPremisesDistinguishedName -eq "value") |
@@ -393,12 +394,13 @@ The following device attributes can be used.
393394
enrollmentProfileName | Apple Device Enrollment Profile name, Android Enterprise Corporate-owned dedicated device Enrollment Profile name, or Windows Autopilot profile name | (device.enrollmentProfileName -eq "DEP iPhones")
394395
isRooted | true false | (device.isRooted -eq true)
395396
managementType | MDM (for mobile devices) | (device.managementType -eq "MDM")
397+
memberOf | Any string value (valid group object ID) | (user.memberof -any (group.objectId -in ['value']))
396398
deviceId | a valid Azure AD device ID | (device.deviceId -eq "d4fe7726-5966-431c-b3b8-cddc8fdb717d")
397399
objectId | a valid Azure AD object ID | (device.objectId -eq "76ad43c9-32c5-45e8-a272-7b58b58f596d")
398400
devicePhysicalIds | any string value used by Autopilot, such as all Autopilot devices, OrderID, or PurchaseOrderID | (device.devicePhysicalIDs -any _ -contains "[ZTDId]") (device.devicePhysicalIds -any _ -eq "[OrderID]:179887111881") (device.devicePhysicalIds -any _ -eq "[PurchaseOrderId]:76222342342")
399401
systemLabels | any string matching the Intune device property for tagging Modern Workplace devices | (device.systemLabels -contains "M365Managed")
400402

401-
> [!Note]
403+
> [!NOTE]
402404
> For the deviceOwnership when creating Dynamic Groups for devices you need to set the value equal to "Company". On Intune the device ownership is represented instead as Corporate. Refer to [OwnerTypes](/intune/reports-ref-devices#ownertypes) for more details.
403405
404406
## Next steps

articles/aks/configure-azure-cni.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The maximum number of pods per node in an AKS cluster is 250. The *default* maxi
5959
| -- | :--: | :--: | -- |
6060
| Azure CLI | 110 | 30 | Yes (up to 250) |
6161
| Resource Manager template | 110 | 30 | Yes (up to 250) |
62-
| Portal | 110 | 110 (configured in the Node Pools tab) | No |
62+
| Portal | 110 | 110 (configurable in the Node Pools tab) | Yes (up to 250) |
6363

6464
### Configure maximum - new clusters
6565

@@ -72,7 +72,7 @@ A minimum value for maximum pods per node is enforced to guarantee space for sys
7272
| Networking | Minimum | Maximum |
7373
| -- | :--: | :--: |
7474
| Azure CNI | 10 | 250 |
75-
| Kubenet | 10 | 110 |
75+
| Kubenet | 10 | 250 |
7676

7777
> [!NOTE]
7878
> The minimum value in the table above is strictly enforced by the AKS service. You can not set a maxPods value lower than the minimum shown as doing so can prevent the cluster from starting.
@@ -175,10 +175,10 @@ The planning of IPs for Kubernetes services and Docker bridge remain unchanged.
175175

176176
The pods per node values when using Azure CNI with dynamic allocation of IPs have changed slightly from the traditional CNI behavior:
177177

178-
|CNI|Deployment Method|Default|Configurable at deployment|
179-
|--|--| :--: |--|
180-
|Traditional Azure CNI|Azure CLI|30|Yes (up to 250)|
181-
|Azure CNI with dynamic allocation of IPs|Azure CLI|250|Yes (up to 250)|
178+
|CNI|Default|Configurable at deployment|
179+
|--| :--: |--|
180+
|Traditional Azure CNI|30|Yes (up to 250)|
181+
|Azure CNI with dynamic allocation of IPs|250|Yes (up to 250)|
182182

183183
All other guidance related to configuring the maximum nodes per pod remains the same.
184184

articles/azure-arc/servers/onboard-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The script to automate the download and installation, and to establish the conne
2323

2424
1. On the **Servers - Azure Arc** page, select **Add** at the upper left.
2525

26-
1. On the **Select a method** page, select the **Add servers using interactive script** tile, and then select **Generate script**.
26+
1. On the **Select a method** page, select the **Add a single server** tile, and then select **Generate script**.
2727

2828
1. On the **Generate script** page, select the subscription and resource group where you want the machine to be managed within Azure. Select an Azure location where the machine metadata will be stored. This location can be the same or different, as the resource group's location.
2929

articles/azure-functions/create-first-function-vs-code-other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The *function.json* file in the *HttpExample* folder declares an HTTP trigger fu
167167
Err(_) => 3000,
168168
};
169169
170-
warp::serve(example1).run((Ipv4Addr::UNSPECIFIED, port)).await
170+
warp::serve(example1).run((Ipv4Addr::LOCALHOST, port)).await
171171
}
172172
```
173173

articles/azure-functions/durable/durable-functions-dotnet-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ We also enforce some additional rules:
267267
* Entity interface methods must not have more than one parameter.
268268
* Entity interface methods must return `void`, `Task`, or `Task<T>`.
269269

270-
If any of these rules are violated, an `InvalidOperationException` is thrown at runtime when the interface is used as a type argument to `SignalEntity` or `CreateProxy`. The exception message explains which rule was broken.
270+
If any of these rules are violated, an `InvalidOperationException` is thrown at runtime when the interface is used as a type argument to `SignalEntity`, `SignalEntityAsync`, or `CreateEntityProxy`. The exception message explains which rule was broken.
271271

272272
> [!NOTE]
273273
> Interface methods returning `void` can only be signaled (one-way), not called (two-way). Interface methods returning `Task` or `Task<T>` can be either called or signalled. If called, they return the result of the operation, or re-throw exceptions thrown by the operation. However, when signalled, they do not return the actual result or exception from the operation, but just the default value.

articles/azure-functions/durable/durable-functions-phone-verification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The **E4_SendSmsChallenge** function uses the Twilio binding to send the SMS mes
9595
[!code-csharp[Main](~/samples-durable-functions/samples/precompiled/PhoneVerification.cs?range=72-89)]
9696

9797
> [!NOTE]
98-
> You will need to install the `Microsoft.Azure.WebJobs.Extensions.Twilio` Nuget package to run the sample code.
98+
> You must first install the `Microsoft.Azure.WebJobs.Extensions.Twilio` Nuget package for Functions to run the sample code. Don't also install the main [Twilio nuget package](https://www.nuget.org/packages/Twilio/) because this can cause versioning problems that result in build errors.
9999
100100
# [JavaScript](#tab/javascript)
101101

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

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Understand how to use Azure SQL bindings in Azure Functions.
44
author: dzsquared
55
ms.topic: reference
66
ms.custom: event-tier1-build-2022
7-
ms.date: 5/24/2022
7+
ms.date: 6/3/2022
88
ms.author: drskwier
99
ms.reviewer: glenga
1010
zone_pivot_groups: programming-languages-set-functions-lang-workers
@@ -97,10 +97,17 @@ You can add the preview extension bundle by adding or replacing the following co
9797

9898
::: zone pivot="programming-language-python"
9999

100+
## Functions runtime
101+
100102
> [!NOTE]
101-
> Python language support for the SQL bindings extension is only available for v4 of the [functions runtime](./set-runtime-version.md#view-and-update-the-current-runtime-version) and requires runtime v4.5.0 for deployment in Azure. Learn more about determining the runtime in the [functions runtime](./set-runtime-version.md#view-and-update-the-current-runtime-version) documentation. Please see the tracking [GitHub issue](https://github.com/Azure/azure-functions-sql-extension/issues/250) for the latest update on availability.
103+
> Python language support for the SQL bindings extension is only available for v4 of the [functions runtime](./set-runtime-version.md#view-and-update-the-current-runtime-version) and requires runtime v4.5.0 or greater for deployment in Azure. Learn more about determining the runtime in the [functions runtime](./set-runtime-version.md#view-and-update-the-current-runtime-version) documentation. Please see the tracking [GitHub issue](https://github.com/Azure/azure-functions-sql-extension/issues/250) for the latest update on availability.
102104
103-
## Install bundle
105+
The functions runtime required for local development and testing of Python functions isn't included in the current release of functions core tools and must be installed independently. The latest instructions on installing a preview version of functions core tools are available in the tracking [GitHub issue](https://github.com/Azure/azure-functions-sql-extension/issues/250).
106+
107+
Alternatively, a VS Code [development container](https://code.visualstudio.com/docs/remote/containers) definition can be used to expedite your environment setup. The definition components are available in the SQL bindings [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-python/.devcontainer).
108+
109+
110+
## Install bundle
104111

105112
The SQL bindings extension is part of a preview [extension bundle], which is specified in your host.json project file.
106113

@@ -120,7 +127,7 @@ You can add the preview extension bundle by adding or replacing the following co
120127

121128
# [Preview Bundle v3.x](#tab/extensionv3)
122129

123-
Python support is not available with the SQL bindings extension in the v3 version of the functions runtime.
130+
Python support isn't available with the SQL bindings extension in the v3 version of the functions runtime.
124131

125132
---
126133

articles/azure-functions/functions-bindings-storage-queue-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ See the [Example section](#example) for complete examples.
363363
364364
::: zone pivot="programming-language-csharp"
365365

366-
The usage of the Blob trigger depends on the extension package version, and the C# modality used in your function app, which can be one of the following:
366+
The usage of the Queue trigger depends on the extension package version, and the C# modality used in your function app, which can be one of the following:
367367

368368
# [In-process class library](#tab/in-process)
369369

@@ -528,4 +528,4 @@ The host.json file contains settings that control queue trigger behavior. See th
528528
<!-- LINKS -->
529529

530530
[CloudQueueMessage]: /dotnet/api/microsoft.azure.storage.queue.cloudqueuemessage
531-
[QueueMessage]: /dotnet/api/azure.storage.queues.models.queuemessage
531+
[QueueMessage]: /dotnet/api/azure.storage.queues.models.queuemessage

articles/azure-government/documentation-government-csp-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Below you can find a list of all the authorized Cloud Solution Providers (CSPs),
7171
|[Bitscape](https://www.bitscape.com)|
7272
|[Bio Automation Support](https://www.stacsdna.com/)|
7373
|[Blackwood Associates, Inc. (dba BAI Federal)](https://www.blackwoodassociates.com/)|
74-
|[Blue Source Group, Inc.](https://www.blackwoodassociates.com/)|
74+
|[Blue Source Group, Inc.](https://bluesourcegroup.com/)|
7575
|[Blueforce Development Corporation](https://www.blueforcedev.com/)|
7676
|[Booz Allen Hamilton](https://www.boozallen.com/)|
7777
|[Bridge Partners LLC](https://www.bridgepartnersllc.com)|

0 commit comments

Comments
 (0)