You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/fundamentals/automate-provisioning-to-applications-solutions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ The table depicts common scenarios and the recommended technology.
77
77
78
78
## Automate provisioning users into non-Microsoft applications
79
79
80
-
After identities are in Azure AD through HR-provisioning or Azure AD Connect Could Sync / Azure AD Connect Sync, the employee can use the identity to access Teams, SharePoint, and Microsoft 365 applications. However, employees still need access to many Microsoft applications to perform their work.
80
+
After identities are in Azure AD through HR-provisioning or Azure AD Connect cloud sync / Azure AD Connect sync, the employee can use the identity to access Teams, SharePoint, and Microsoft 365 applications. However, employees still need access to many Microsoft applications to perform their work.
Copy file name to clipboardExpand all lines: articles/active-directory/saas-apps/olfeo-saas-provisioning-tutorial.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ The scenario outlined in this tutorial assumes that you already have the followi
47
47
1. Login to Olfeo SAAS admin console.
48
48
1. Navigate to **Configuration > Annuaires**.
49
49
1. Create a new directory and then name it.
50
-
1. Select **Azure** provider and then click on **Cr�er** to save the new directory.
50
+
1. Select **Azure** provider and then click on **Créer** to save the new directory.
51
51
1. Navigate to the **Synchronisation** tab to see the **Tenant URL** and the **Jeton secret**. These values will be copied and pasted in the **Tenant URL** and **Secret Token** fields in the Provisioning tab of your Olfeo SAAS application in the Azure portal.
52
52
53
53
## Step 3. Add Olfeo SAAS from the Azure AD application gallery
Copy file name to clipboardExpand all lines: articles/aks/use-managed-identity.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ Example:
148
148
az role assignment create --assignee 22222222-2222-2222-2222-222222222222 --role "Contributor" --scope "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/custom-resource-group"
149
149
```
150
150
151
-
For user-assigned kubelet identity which is outside the default woker node resource group, you need to assign the `Managed Identity Operator`on kubelet identity.
151
+
For user-assigned kubelet identity which is outside the default worker node resource group, you need to assign the `Managed Identity Operator`on kubelet identity.
152
152
153
153
```azurecli-interactive
154
154
az role assignment create --assignee <control-plane-identity-principal-id> --role "Managed Identity Operator" --scope "<kubelet-identity-resource-id>"
Copy file name to clipboardExpand all lines: articles/azure-monitor/autoscale/autoscale-custom-metric.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,9 @@ This article describes how to set up autoscale for a web app by using a custom m
18
18
19
19
Autoscale allows you to add and remove resources to handle increases and decreases in load. In this article, we'll show you how to set up autoscale for a web app by using one of the Application Insights metrics to scale the web app in and out.
20
20
21
+
> [!NOTE]
22
+
> Autoscaling on custom metrics in Application Insights is supported only for metrics published to **Standard** and **Azure.ApplicationInsights** namespaces. If any other namespaces are used for custom metrics in Application Insights, it will return **Unsupported Metric** error.
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file. |
24
+
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file, and it should be a compile-time constant (cannot use variables). |
25
25
26
26
### Remarks
27
27
28
-
Use this function when you have binary content you would like to include in deployment. Rather than manually encoding the file to a base64 string and adding it to your Bicep file, load the file with this function. The file is loaded when the Bicep file is compiled to a JSON template. During deployment, the JSON template contains the contents of the file as a hard-coded string.
28
+
Use this function when you have binary content you would like to include in deployment. Rather than manually encoding the file to a base64 string and adding it to your Bicep file, load the file with this function. The file is loaded when the Bicep file is compiled to a JSON template. Hence variables cannot be used in filePath as they are not resolved at this stage. During deployment, the JSON template contains the contents of the file as a hard-coded string.
29
29
30
30
This function requires **Bicep version 0.4.412 or later**.
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file. |
50
+
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file. The path is relative to the deployed Bicep file, and it should be a compile-time constant (cannot use variables). |
51
51
| jsonPath | No | string | JSONPath expression to take only a part of the JSON into ARM. |
52
52
| encoding | No | string | The file encoding. The default value is `utf-8`. The available options are: `iso-8859-1`, `us-ascii`, `utf-16`, `utf-16BE`, or `utf-8`. |
53
53
54
54
### Remarks
55
55
56
-
Use this function when you have JSON content or minified JSON content that is stored in a separate file. Rather than duplicating the JSON content in your Bicep file, load the content with this function. You can load a part of a JSON file by specifying a JSON path. The file is loaded when the Bicep file is compiled to the JSON template. During deployment, the JSON template contains the contents of the file as a hard-coded string.
56
+
Use this function when you have JSON content or minified JSON content that is stored in a separate file. Rather than duplicating the JSON content in your Bicep file, load the content with this function. You can load a part of a JSON file by specifying a JSON path. The file is loaded when the Bicep file is compiled to the JSON template. Hence variables cannot be used in filePath as they are not resolved at this stage. During deployment, the JSON template contains the contents of the file as a hard-coded string.
57
57
58
58
In VS Code, the properties of the loaded object are available intellisense. For example, you can create a file with values to share across many Bicep files. An example is shown in this article.
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file. |
92
+
| filePath | Yes | string | The path to the file to load. The path is relative to the deployed Bicep file. The path is relative to the deployed Bicep file, and it should be a compile-time constant (cannot use variables). |
93
93
| encoding | No | string | The file encoding. The default value is `utf-8`. The available options are: `iso-8859-1`, `us-ascii`, `utf-16`, `utf-16BE`, or `utf-8`. |
94
94
95
95
### Remarks
96
96
97
-
Use this function when you have content that is more stored in a separate file. Rather than duplicating the content in your Bicep file, load the content with this function. For example, you can load a deployment script from a file. The file is loaded when the Bicep file is compiled to the JSON template. During deployment, the JSON template contains the contents of the file as a hard-coded string.
97
+
Use this function when you have content that is more stored in a separate file. Rather than duplicating the content in your Bicep file, load the content with this function. For example, you can load a deployment script from a file. The file is loaded when the Bicep file is compiled to the JSON template. Hence variables cannot be used in filePath as they are not resolved at this stage. During deployment, the JSON template contains the contents of the file as a hard-coded string.
98
98
99
99
Use the [`loadJsonContent()`](#loadjsoncontent) function to load JSON files.
Copy file name to clipboardExpand all lines: articles/cosmos-db/mongodb/change-log.md
-12Lines changed: 0 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,18 +41,6 @@ The API for MongoDB now offers a built-in role-based access control (RBAC) that
41
41
[Learn more](./how-to-setup-rbac.md)
42
42
43
43
44
-
### Unique partial indexes in Azure Cosmos DB API for MongoDB
45
-
The unique partial indexes feature allows you more flexibility to specify exactly which fields in which documents you’d like to index, all while enforcing uniqueness of that field’s value. Resulting in the unique constraint being applied only to the documents that meet the specified filter expression.
46
-
47
-
[Learn more](./feature-support-42.md)
48
-
49
-
50
-
### Azure Cosmos DB API for MongoDB unique index reindexing (Preview)
51
-
The unique index feature for Azure Cosmos DB allows you to create unique indexes when your collection was empty and didn't contain documents. This feature provides you with more flexibility by giving you the ability to create unique indexes whenever you want to—meaning there’s no need to plan unique indexes ahead of time before inserting any data into the collection.
52
-
53
-
[Learn more](./mongodb-indexing.md) and enable the feature today by [submitting a support ticket request](https://azure.microsoft.com/support/create-ticket/)
54
-
55
-
56
44
### Azure Cosmos DB API for MongoDB supports version 4.2
57
45
The Azure Cosmos DB API for MongoDB version 4.2 includes new aggregation functionality and improved security features such as client-side field encryption. These features help you accelerate development by applying the new functionality instead of developing it yourself.
**Domain Data Management Service (DDMS)** – is a platform component that extends [OSDU™](https://osduforum.org) core data platform with domain specific model and optimizations. DDMS is a mechanism of a platform extension that:
15
15
16
16
* delivers optimized handling of data for each (non-overlapping) "domain."
17
-
* single vertical discipline or business area, for example, Petrophysics, Geophysics, Seismic
18
-
* a functional aspect of one or more vertical disciplines or business areas, for example, Earth Model
17
+
*pertains to a single vertical discipline or business area, for example, Petrophysics, Geophysics, Seismic
18
+
*serves a functional aspect of one or more vertical disciplines or business areas, for example, Earth Model
19
19
* delivers high performance capabilities not supported by OSDU™ generic normal APIs.
20
-
*can help achieve the extension of OSDU™ scope to new business areas.
20
+
*helps achieve the extension of OSDU™ scope to new business areas.
21
21
* may be developed in a distributed manner with separate resources/sponsors.
22
22
23
23
OSDU™ Technical Standard defines the following types of OSDU™ application types:
0 commit comments