Skip to content

Commit 9681176

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into ddos-patch
2 parents 30eadb5 + 9fb98e8 commit 9681176

File tree

10 files changed

+180
-10
lines changed

10 files changed

+180
-10
lines changed

articles/active-directory/app-proxy/application-proxy-configure-complex-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Before you get started with Application Proxy Complex application scenario apps,
5959
To configure (and update) Application Segments for a complex app using the API, you first [create a wildcard application](application-proxy-wildcard.md#create-a-wildcard-application), and then update the application's onPremisesPublishing property to configure the application segments and respective CORS settings.
6060

6161
> [!NOTE]
62-
> One application segment is supported in preview. Support for multiple application segment to be announced soon.
62+
> 2 application segment per complex application are supported for [Microsoft Azure AD premium subscription](https://azure.microsoft.com/pricing/details/active-directory). Licence requirement for more than 2 application segments per complex application to be announced soon.
6363
6464
If successful, this method returns a `204 No Content` response code and does not return anything in the response body.
6565
## Example

articles/active-directory/develop/msal-compare-msal-js-and-adal-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Once your changes are done, run the app and test your authentication scenario:
304304
npm start
305305
```
306306

307-
## Example: Securing web apps with ADAL Node vs. MSAL Node
307+
## Example: Securing a SPA with ADAL.js vs. MSAL.js
308308

309309
The snippets below demonstrates the minimal code required for a single-page application authenticating users with the Microsoft identity platform and getting an access token for Microsoft Graph using first ADAL.js and then MSAL.js:
310310

articles/azure-monitor/essentials/metrics-supported.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ ms.reviewer: priyamishra
1515
> [!NOTE]
1616
> This list is largely auto-generated. Any modification made to this list via GitHub might be written over without warning. Contact the author of this article for details on how to make permanent updates.
1717
18-
Date list was last updated: 2021-10-05.
19-
2018
Azure Monitor provides several ways to interact with metrics, including charting them in the Azure portal, accessing them through the REST API, or querying them by using PowerShell or the Azure CLI (Command Line Interface).
2119

2220
This article is a complete list of all platform (that is, automatically collected) metrics currently available with the consolidated metric pipeline in Azure Monitor. Metrics changed or added after the date at the top of this article might not yet appear in the list. To query for and access the list of metrics programmatically, use the [2018-01-01 api-version](/rest/api/monitor/metricdefinitions). Other metrics not in this list might be available in the portal or through legacy APIs.

articles/chaos-studio/chaos-studio-fault-library.md

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,6 +1225,7 @@ Configuring the shutdown fault:
12251225
```
12261226

12271227
## Key Vault Deny Access
1228+
12281229
| Property | Value |
12291230
|-|-|
12301231
| Capability Name | DenyAccess-1.0 |
@@ -1252,3 +1253,166 @@ Configuring the shutdown fault:
12521253
]
12531254
}
12541255
```
1256+
1257+
## Key Vault Disable Certificate
1258+
1259+
1260+
| Property | Value |
1261+
| ---- | --- |
1262+
| Capability Name | DisableCertificate-1.0 |
1263+
| Target Type | Microsoft-KeyVault |
1264+
| Description | Using certificate properties, fault will disable the certificate for specific duration (provided by user) and enables it after this fault duration. |
1265+
| Prerequisites | For OneCert certificates, the domain must be registered with OneCert before attempting to run the fault. |
1266+
| Urn | urn:csci:microsoft:keyvault:disableCertificate/1.0 |
1267+
| Fault Type | Continuous |
1268+
| Parameters (key, value) | |
1269+
| certificateName | Name of AKV certificate on which fault will be executed |
1270+
| version | The certificate version that should be updated; if not specified, the latest version will be updated. |
1271+
1272+
### Sample JSON
1273+
1274+
```json
1275+
{
1276+
"name": "branchOne",
1277+
"actions": [
1278+
{
1279+
"type": "continuous",
1280+
"name": "urn:csci:microsoft:keyvault:disableCertificate/1.0",
1281+
"parameters": [
1282+
{
1283+
"key": "certificateName",
1284+
"value": "<name of AKV certificate>"
1285+
},
1286+
{
1287+
"key": "version",
1288+
"value": "<certificate version>"
1289+
}
1290+
1291+
],
1292+
"duration": "PT10M",
1293+
"selectorid": "myResources"
1294+
}
1295+
]
1296+
}
1297+
```
1298+
1299+
## Key Vault Increment Certificate Version
1300+
1301+
| Property | Value |
1302+
| ---- | --- |
1303+
| Capability Name | IncrementCertificateVersion-1.0 |
1304+
| Target Type | Microsoft-KeyVault |
1305+
| Description | Generates new certificate version and thumbprint using the Key Vault Certificate client library. Current working certificate will be upgraded to this version. |
1306+
| Prerequisites | For OneCert certificates, the domain must be registered with OneCert before attempting to run the fault. |
1307+
| Urn | urn:csci:microsoft:keyvault:incrementCertificateVersion/1.0 |
1308+
| Fault Type | Discrete |
1309+
| Parameters (key, value) | |
1310+
| certificateName | Name of AKV certificate on which fault will be executed |
1311+
1312+
### Sample JSON
1313+
1314+
```json
1315+
{
1316+
"name": "branchOne",
1317+
"actions": [
1318+
{
1319+
"type": "discrete",
1320+
"name": "urn:csci:microsoft:keyvault:incrementCertificateVersion/1.0",
1321+
"parameters": [
1322+
{
1323+
"key": "certificateName",
1324+
"value": "<name of AKV certificate>"
1325+
}
1326+
],
1327+
"duration": "PT10M",
1328+
"selectorid": "myResources"
1329+
}
1330+
]
1331+
}
1332+
```
1333+
1334+
## Key Vault Update Certificate Policy
1335+
1336+
| Property | Value |
1337+
| ---- | --- |
1338+
| Capability Name | UpdateCertificatePolicy-1.0 |
1339+
| Target Type | Microsoft-KeyVault |
1340+
| Description | Certificate policies (examples: certificate validity period, certificate type, key size, or key type) are updated based on the user input and reverted after the fault duration. |
1341+
| Prerequisites | For OneCert certificates, the domain must be registered with OneCert before attempting to run the fault. |
1342+
| Urn | urn:csci:microsoft:keyvault:updateCertificatePolicy/1.0 |
1343+
| Fault Type | Continuous |
1344+
| Parameters (key, value) | |
1345+
| certificateName | Name of AKV certificate on which fault will be executed |
1346+
| version | The certificate version that should be updated; if not specified, the latest version will be updated. |
1347+
| enabled | Bool. Value indicating whether the new certificate version will be enabled |
1348+
| validityInMonths | The validity period of the certificate in months |
1349+
| certificateTransparency | Indicates whether the certificate should be published to the certificate transparency list when created |
1350+
| certificateType | the certificate type |
1351+
| contentType | The content type of the certificate, eg Pkcs12 when the certificate contains raw PFX bytes, or Pem when it contains ASCII PEM-encoded btes. Pkcs12 is the default value assumed |
1352+
| keySize | The size of the RSA key: 2048, 3072, or 4096 |
1353+
| exportable | Boolean. Value indicating if the certificate key is exportable from the vault or secure certificate store |
1354+
| reuseKey | Boolean. Value indicating if the certificate key should be reused when rotating the certificate|
1355+
| keyType | The type of backing key to be generated when issuing new certificates: RSA or EC |
1356+
1357+
### Sample JSON
1358+
1359+
```json
1360+
{
1361+
"name": "branchOne",
1362+
"actions": [
1363+
{
1364+
"type": "continuous",
1365+
"name": "urn:csci:microsoft:keyvault:updateCertificatePolicy/1.0",
1366+
"parameters": [
1367+
{
1368+
"key": "certificateName",
1369+
"value": "<name of AKV certificate>"
1370+
},
1371+
{
1372+
"key": "version",
1373+
"value": "<certificate version>"
1374+
},
1375+
{
1376+
"key": "enabled",
1377+
"value": "True"
1378+
},
1379+
{
1380+
"key": "validityInMonths",
1381+
"value": "12"
1382+
},
1383+
{
1384+
"key": "certificateTransparency",
1385+
"value": "True"
1386+
},
1387+
{
1388+
"key": "certificateType",
1389+
"value": "<certificate type>"
1390+
},
1391+
{
1392+
"key": "contentType",
1393+
"value": "Pem"
1394+
},
1395+
{
1396+
"key": "keySize",
1397+
"value": "4096"
1398+
},
1399+
{
1400+
"key": "exportable",
1401+
"value": "True"
1402+
},
1403+
{
1404+
"key": "reuseKey",
1405+
"value": "False"
1406+
},
1407+
{
1408+
"key": "keyType",
1409+
"value": "RSA"
1410+
}
1411+
1412+
],
1413+
"duration": "PT10M",
1414+
"selectorid": "myResources"
1415+
}
1416+
]
1417+
}
1418+
```

articles/data-factory/index.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,18 @@ landingContent:
111111
url: ./data-transformation-functions.md
112112
- text: Change Data Capture (CDC)
113113
url: ./concepts-change-data-capture.md
114+
- title: SAP knowledge center
115+
linkLists:
116+
- linkListType: concept
117+
links:
118+
- text: Overview
119+
url: industry-sap-overview.md
120+
- text: SAP connectors
121+
url: industry-sap-connectors.md
122+
- text: SAP templates
123+
url: industry-sap-templates.md
124+
- text: SAP change data capture (CDC) capabilities
125+
url: sap-change-data-capture-introduction-architecture.md
114126
- title: Lift and shift SSIS packages
115127
linkLists:
116128
- linkListType: overview
58 Bytes
Loading

articles/digital-twins/reference-service-limits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ To manage the throttling, here are some recommendations for working with limits.
3636
* Use retry logic. The [Azure Digital Twins SDKs](concepts-apis-sdks.md) implement retry logic for failed requests, so if you're working with a provided SDK, this functionality is already built-in. Otherwise, consider implementing retry logic in your own application. The service sends back a `Retry-After` header in the failure response, which you can use to determine how long to wait before retrying.
3737
* Use thresholds and notifications to warn about approaching limits. Some of the service limits for Azure Digital Twins have corresponding [metrics](../azure-monitor/essentials/data-platform-metrics.md) that can be used to track usage in these areas. To configure thresholds and set up an alert on any metric when a threshold is approached, see the instructions in [Create a new alert rule](../azure-monitor/alerts/alerts-create-new-alert-rule.md?tabs=metric). To set up notifications for other limits where metrics aren't provided, consider implementing this logic in your own application code.
3838
* Deploy at scale across multiple instances. Avoid having a single point of failure. Instead of one large graph for your entire deployment, consider sectioning out subsets of twins logically (like by region or tenant) across multiple instances.
39+
* For modeling recommendations to help you operate within the functional limits, see [Modeling tools and best practices](concepts-models.md#modeling-tools-and-best-practices).
3940

4041
>[!NOTE]
4142
>Azure Digital Twins will automatically scale resources to meet the rate limits described in this article. You may experience throttling before these limits are reached due to internal scaling to adapt to the incoming load. Internal scaling can take anywhere from 5 to 30 minutes, during which time your application may encounter 429 errors.

articles/storage/blobs/storage-blob-container-properties-metadata-java.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ You can specify metadata as one or more name-value pairs on a blob or container
4141

4242
- [setMetadata](/java/api/com.azure.storage.blob.blobcontainerclient)
4343

44-
The name of your metadata must conform to the naming conventions for C# identifiers. Metadata names preserve the case with which they were created, but are case-insensitive when set or read. If two or more metadata headers with the same name are submitted for a resource, the Blob service returns status code 400 (Bad Request).
45-
4644
Setting container metadata overwrites all existing metadata associated with the container. It's not possible to modify an individual name-value pair.
4745

4846
The following code example sets metadata on a container:

articles/storage/blobs/storage-blob-properties-metadata-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following code example gets a blob's system properties and displays some of
5353

5454
## Set and retrieve metadata
5555

56-
You can specify metadata as one or more name-value pairs on a blob or container resource. To set metadata, send a JSON object of name-value pairs using the following method:
56+
You can specify metadata as one or more name-value pairs on a blob or container resource. To set metadata, send a [Map](https://docs.oracle.com/javase/8/docs/api/java/util/Map.html) object containing name-value pairs using the following method:
5757

5858
- [setMetadata](/java/api/com.azure.storage.blob.specialized.blobclientbase)
5959

includes/digital-twins-limits.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ ms.author: baanders
1111

1212
The following table lists the functional limits of Azure Digital Twins.
1313

14-
> [!TIP]
15-
> For modeling recommendations to operate within these functional limits, see [Modeling tools and best practices](../articles/digital-twins/concepts-models.md#modeling-tools-and-best-practices).
16-
1714
| Area | Capability | Default limit | Adjustable? |
1815
| --- | --- | --- | --- |
1916
| Azure resource | Number of Azure Digital Twins instances in a region, per subscription | 10 | Yes |

0 commit comments

Comments
 (0)