Skip to content

Commit 8049cdc

Browse files
authored
Merge pull request #241223 from MicrosoftDocs/main
6/12/2023 10AM Publishing
2 parents f4cbade + e3eca6e commit 8049cdc

20 files changed

+166
-152
lines changed

articles/active-directory/develop/web-app-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ zone_pivot_groups: web-app-quickstart
2727
::: zone-end
2828

2929
::: zone pivot="devlang-nodejs-msal"
30-
[!INCLUDE [node.js-msal](./includes/web-app/quickstart-nodejs-msal.md)]
30+
[!INCLUDE [node.js](./includes/web-app/quickstart-nodejs-msal.md)]
3131
::: zone-end
3232

3333
::: zone pivot="devlang-java"

articles/api-management/import-api-from-oas.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ After importing the API, if needed, you can update the settings by using the [Se
100100

101101
[!INCLUDE [api-management-define-api-topics.md](../../includes/api-management-define-api-topics.md)]
102102

103+
## Validate against an OpenAPI specification
104+
105+
You can configure API Management [validation policies](api-management-policies.md#validation-policies) to validate requests and responses (or elements of them) against the schema in an OpenAPI specification. For example, use the [validate-content](validate-content-policy.md) policy to validate the size or content of a request or response body.
106+
103107
## Next steps
104108

105109
> [!div class="nextstepaction"]

articles/azure-monitor/app/opentelemetry-enable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ Examples of using the Python logging library can be found on [GitHub](https://gi
439439
---
440440

441441
**Footnotes**
442-
- <a name="FOOTNOTEONE">1</a>: Supports automatic reporting of unhandled exceptions
442+
- <a name="FOOTNOTEONE">1</a>: Supports automatic reporting of *unhandled/uncaught* exceptions
443443
- <a name="FOOTNOTETWO">2</a>: Supports OpenTelemetry Metrics
444444
- <a name="FOOTNOTETHREE">3</a>: By default, logging is only collected at INFO level or higher. To change this setting, see the [configuration options](./java-standalone-config.md#autocollected-logging).
445445
- <a name="FOOTNOTEFOUR">4</a>: By default, logging is only collected at WARNING level or higher..

articles/bastion/kerberos-authentication-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: Learn how to configure Bastion to use Kerberos authentication via t
55
author: cherylmc
66
ms.service: bastion
77
ms.topic: how-to
8-
ms.date: 08/03/2022
8+
ms.date: 06/12/2023
99
ms.author: cherylmc
1010

1111
---
1212

13-
# How to configure Bastion for Kerberos authentication using the Azure portal (Preview)
13+
# Configure Bastion for Kerberos authentication using the Azure portal (Preview)
1414

1515
This article shows you how to configure Azure Bastion to use Kerberos authentication. Kerberos authentication can be used with both the Basic and the Standard Bastion SKUs. For more information about Kerberos authentication, see the [Kerberos authentication overview](/windows-server/security/kerberos/kerberos-authentication-overview). For more information about Azure Bastion, see [What is Azure Bastion?](bastion-overview.md)
1616

articles/cognitive-services/openai/concepts/models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ These models can only be used with the Chat Completion API.
216216

217217
| Model ID | Base model Regions | Fine-Tuning Regions | Max Request (tokens) | Training Data (up to) |
218218
| --- | --- | --- | --- | --- |
219-
| `gpt-4` <sup>1,</sup><sup>2</sup> | East US, France Central, UK South | N/A | 8,192 | September 2021 |
220-
| `gpt-4-32k` <sup>1,</sup><sup>2</sup> | East US, France Central, UK South | N/A | 32,768 | September 2021 |
219+
| `gpt-4` <sup>1,</sup><sup>2</sup> | East US, France Central | N/A | 8,192 | September 2021 |
220+
| `gpt-4-32k` <sup>1,</sup><sup>2</sup> | East US, France Central | N/A | 32,768 | September 2021 |
221221

222222
<sup>1</sup> The model is [only available by request](https://aka.ms/oai/get-gpt4).<br>
223223
<sup>2</sup> Currently, only version `0314` of this model is available.

articles/cosmos-db/analytical-store-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ df = spark.read\
174174
.format("cosmos.olap")\
175175
.option("spark.synapse.linkedService","<your-linked-service-name>")\
176176
.option("spark.synapse.container","<your-container-name>")\
177-
.option("spark.synapse.dropColumn","FirstName,LastName")\
177+
.option("spark.cosmos.dropColumn","FirstName,LastName")\
178178
.load()
179179

180180
# Removing multiple columns:
181181
df = spark.read\
182182
.format("cosmos.olap")\
183183
.option("spark.synapse.linkedService","<your-linked-service-name>")\
184184
.option("spark.synapse.container","<your-container-name>")\
185-
.option("spark.synapse.dropColumn","FirstName,LastName;StreetName,StreetNumber")\
185+
.option("spark.cosmos.dropColumn","FirstName,LastName;StreetName,StreetNumber")\
186186
.option("spark.cosmos.dropMultiColumnSeparator", ";")\
187187
.load()
188188
```

articles/frontdoor/tier-mapping.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ The route configuration override in a rules engine configuration action for Fron
6161

6262
* Learn more about the [Azure Front Door migration process](tier-migration.md).
6363
* Learn how to [migrate from Azure Front Door (classic) to Azure Front Door Standard or Premium](migrate-tier.md) using the Azure portal.
64+
* Learn how to [migrate from Azure Front Door (classic) to Azure Front Door Standard or Premium](migrate-tier-powershell.md) using the Azure PowerShell.

articles/frontdoor/tier-migration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,5 @@ The following table explains the various stages of the migration process and if
122122
## Next steps
123123

124124
* Understand the [settings mapping between Azure Front Door tiers](tier-mapping.md).
125-
* Learn how to [migrate from Azure Front Door (classic) to Standard or Premium tier](migrate-tier.md).
125+
* Learn how to [migrate from Azure Front Door (classic) to Standard or Premium tier](migrate-tier.md) using the Azure portal.
126+
* Learn how to [migrate from Azure Front Door (classic) to Standard or Premium tier](migrate-tier-powershell.md) using Azure PowerShell.

articles/iot-central/core/overview-iot-central-api-tour.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Take a tour of the Azure IoT Central API
33
description: Become familiar with the key areas of the Azure IoT Central REST API. Use the API to create, manage, and use your IoT solution from client applications.
44
author: dominicbetts
55
ms.author: dobett
6-
ms.date: 06/10/2022
6+
ms.date: 06/12/2023
77
ms.topic: overview
88
ms.service: iot-central
99
services: iot-central
@@ -20,18 +20,21 @@ The REST API operations are grouped into the:
2020

2121
## Data plane operations
2222

23-
Version 2022-05-31 of the data plane API lets you manage the following resources in your IoT Central application:
23+
Version 2022-07-31 of the data plane API lets you manage the following resources in your IoT Central application:
2424

2525
- API tokens
2626
- Device groups
2727
- Device templates
2828
- Devices
29+
- Enrollment groups
2930
- File uploads
31+
- Jobs
3032
- Organizations
3133
- Roles
34+
- Scheduled jobs
3235
- Users
3336

34-
The preview devices API also lets you [query telemetry and property values from your devices](howto-query-with-rest-api.md), [manage jobs](howto-manage-jobs-with-rest-api.md), and [manage data exports](howto-manage-data-export-with-rest-api.md).
37+
The preview devices API also lets you [manage dashboards](howto-manage-dashboards-with-rest-api.md), [manage deployment manifests](howto-manage-deployment-manifests-with-rest-api.md), and [manage data exports](howto-manage-data-export-with-rest-api.md).
3538

3639
To get started with the data plane APIs, see [Tutorial: Use the REST API to manage an Azure IoT Central application](tutorial-use-rest-api.md).
3740

articles/iot-central/core/overview-iot-central-tour.md

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ title: Take a tour of the Azure IoT Central UI
33
description: Become familiar with the key areas of the Azure IoT Central UI that you use to create, manage, and use your IoT solution.
44
author: dominicbetts
55
ms.author: dobett
6-
ms.date: 06/10/2022
6+
ms.date: 06/12/2023
77
ms.topic: overview
88
ms.service: iot-central
99
services: iot-central
1010
ms.custom: mvc
11-
manager: corywink
1211
---
1312

1413
# Take a tour of the Azure IoT Central UI
@@ -19,21 +18,21 @@ This article introduces you to Azure IoT Central UI. You can use the UI to creat
1918

2019
The [IoT Central homepage](https://apps.azureiotcentral.com/) page is the place to learn more about the latest news and features available on IoT Central, create new applications, and see and launch your existing applications.
2120

22-
:::image type="content" source="media/overview-iot-central-tour/iot-central-homepage.png" alt-text="IoT Central homepage":::
21+
:::image type="content" source="media/overview-iot-central-tour/iot-central-homepage.png" alt-text="Screenshot that shows the IoT Central homepage where you can create new IoT Central applications.":::
2322

2423
### Create an application
2524

2625
In the **Build** section you can browse the list of industry-relevant IoT Central templates, or start from scratch using a Custom application template.
2726

28-
:::image type="content" source="media/overview-iot-central-tour/iot-central-build.png" alt-text="IoT Central build page":::
27+
:::image type="content" source="media/overview-iot-central-tour/iot-central-build.png" alt-text="Screenshot that shows the IoT Central build page where you can select an application template.":::
2928

3029
To learn more, see the [Create an Azure IoT Central application](quick-deploy-iot-central.md) quickstart.
3130

3231
### Launch your application
3332

34-
You launch your IoT Central application by navigating to the URL you chose during app creation. You can also see a list of all the applications you have access to in the [IoT Central app manager](https://apps.azureiotcentral.com/myapps).
33+
You launch your IoT Central application by navigating to the URL you chose during app creation. You can see a list of all the applications you have access to in the [IoT Central app manager](https://apps.azureiotcentral.com/myapps).
3534

36-
:::image type="content" source="media/overview-iot-central-tour/app-manager.png" alt-text="IoT Central app manager":::
35+
:::image type="content" source="media/overview-iot-central-tour/app-manager.png" alt-text="Screenshot of the IoT Central app manager that shows a list of the applications you can access.":::
3736

3837
## Navigate your application
3938

@@ -58,7 +57,7 @@ Once you're inside your IoT application, use the left pane to access various fea
5857

5958
**Edge manifests** lets you import and manage deployment manifests for the IoT Edge devices that connect to your application.
6059

61-
**Data explorer** exposes rich capabilities to analyze historical trends and correlate various telemetries from your devices.
60+
**Data explorer** exposes rich capabilities to analyze historical trends and correlate various telemetry types from your devices.
6261

6362
**Dashboards** displays all application and personal dashboards.
6463

@@ -85,7 +84,7 @@ Once you're inside your IoT application, use the left pane to access various fea
8584

8685
The top menu appears on every page:
8786

88-
:::image type="content" source="media/overview-iot-central-tour/toolbar.png" alt-text="IoT Central Toolbar":::
87+
:::image type="content" source="media/overview-iot-central-tour/toolbar.png" alt-text="Screenshot that shows the IoT Central Toolbar with access to utilities such as search.":::
8988

9089
* To search for devices, enter a **Search** value.
9190
* To change the UI language or theme, choose the **Settings** icon. Learn more about [managing your application preferences](howto-manage-preferences.md)
@@ -101,7 +100,7 @@ You can choose between a light theme or a dark theme for the UI:
101100

102101
### Devices
103102

104-
:::image type="content" source="Media/overview-iot-central-tour/devices.png" alt-text="Screenshot of Devices Page.":::
103+
:::image type="content" source="Media/overview-iot-central-tour/devices.png" alt-text="Screenshot of the Devices page that list your devices.":::
105104

106105
This page shows the devices in your IoT Central application grouped by _device template_.
107106

@@ -110,73 +109,73 @@ This page shows the devices in your IoT Central application grouped by _device t
110109

111110
### Device groups
112111

113-
:::image type="content" source="Media/overview-iot-central-tour/device-groups.png" alt-text="Device Group page":::
112+
:::image type="content" source="Media/overview-iot-central-tour/device-groups.png" alt-text="Screenshot of the Device Group page that shows device groupings.":::
114113

115114
This page lets you create and view device groups in your IoT Central application. You can use device groups to do bulk operations in your application or to analyze data. To learn more, see the [Use device groups in your Azure IoT Central application](tutorial-use-device-groups.md) article.
116115

117116
### Device templates
118117

119-
:::image type="content" source="Media/overview-iot-central-tour/templates.png" alt-text="Screenshot of Device Templates.":::
118+
:::image type="content" source="Media/overview-iot-central-tour/templates.png" alt-text="Screenshot of Device templates page where you can manage device templates.":::
120119

121120
The device templates page is where you can view and create device templates in the application. To learn more, see [Connect Azure IoT Edge devices to an Azure IoT Central application](concepts-iot-edge.md).
122121

123122
### Edge manifests
124123

125-
:::image type="content" source="Media/overview-iot-central-tour/manifests.png" alt-text="Screenshot of Edge manifests page.":::
124+
:::image type="content" source="Media/overview-iot-central-tour/manifests.png" alt-text="Screenshot of IoT Edge manifests page where you can manage IoT Edge deployment manifests.":::
126125

127126
The edge manifests page is where you can import and manage IoT Edge deployment manifests in the application. To learn more, see the [Define a new device type in your Azure IoT Central application](howto-set-up-template.md) tutorial.
128127

129128
### Data Explorer
130129

131-
:::image type="content" source="Media/overview-iot-central-tour/analytics.png" alt-text="Screenshot of data analytics page.":::
130+
:::image type="content" source="Media/overview-iot-central-tour/analytics.png" alt-text="Screenshot of data analytics page where you can build custom queries and charts.":::
132131

133-
Data explorer exposes rich capabilities to analyze historical trends and correlate various telemetries from your devices. To learn more, see the [Create analytics for your Azure IoT Central application](howto-create-analytics.md) article.
132+
Data explorer exposes rich capabilities to analyze historical trends and correlate various telemetry types from your devices. To learn more, see the [Create analytics for your Azure IoT Central application](howto-create-analytics.md) article.
134133

135134
### Dashboards
136135

137-
:::image type="content" source="Media/overview-iot-central-tour/dashboard.png" alt-text="Screenshot of IoT Central Dashboard.":::
136+
:::image type="content" source="Media/overview-iot-central-tour/dashboard.png" alt-text="Screenshot of IoT Central Dashboard, a customizable UI for your application.":::
138137

139138
* Personal dashboards can also be created to monitor what you care about. To learn more, see the [Create Azure IoT Central personal dashboards](howto-manage-dashboards.md) how-to article.
140139

141140
### Jobs
142141

143-
:::image type="content" source="Media/overview-iot-central-tour/jobs.png" alt-text="Jobs Page":::
142+
:::image type="content" source="Media/overview-iot-central-tour/jobs.png" alt-text="Screenshot that shows the Jobs page where you can manage your application's jobs.":::
144143

145144
This page lets you view and create jobs that can be used for bulk device management operations on your devices. You can update device properties, settings, and execute commands against device groups. To learn more, see the [Run a job](howto-manage-devices-in-bulk.md) article.
146145

147146
### Rules
148147

149-
:::image type="content" source="Media/overview-iot-central-tour/rules.png" alt-text="Screenshot of Rules Page.":::
148+
:::image type="content" source="Media/overview-iot-central-tour/rules.png" alt-text="Screenshot of Rules page where you manage your rules.":::
150149

151150
This page lets you view and create rules based on device data. When a rule fires, it can trigger one or more actions such as sending an email or invoking a webhook. To learn, see the [Configuring rules](tutorial-create-telemetry-rules.md) tutorial.
152151

153152
### Data export
154153

155-
:::image type="content" source="Media/overview-iot-central-tour/export.png" alt-text="Data Export":::
154+
:::image type="content" source="Media/overview-iot-central-tour/export.png" alt-text="Screenshot that shows the Data export page where you configure data exports to various destinations.":::
156155

157156
Data export enables you to set up streams of data to external systems. To learn more, see the [Export your data in Azure IoT Central](./howto-export-to-blob-storage.md) article.
158157

159158
### Audit logs
160159

161-
:::image type="content" source="Media/overview-iot-central-tour/audit.png" alt-text="Screenshot of audit logs page.":::
160+
:::image type="content" source="Media/overview-iot-central-tour/audit.png" alt-text="Screenshot of audit logs page where you can track activity in the application.":::
162161

163162
Audit logs enable you to view a list of recent changes made in your IoT Central application. To learn more, see the [Use audit logs to track activity in your IoT Central application](howto-use-audit-logs.md) article.
164163

165164
### Permissions
166165

167-
:::image type="content" source="Media/overview-iot-central-tour/permissions.png" alt-text="Screenshot of Permissions Page.":::
166+
:::image type="content" source="Media/overview-iot-central-tour/permissions.png" alt-text="Screenshot of Permissions page where you can manage access to your application.":::
168167

169168
This page let you define a hierarchy that you use to manage which users can see which devices in your IoT Central application. To learn, see the [Manage IoT Central organizations](howto-create-organizations.md).
170169

171170
### Application
172171

173-
:::image type="content" source="media/overview-iot-central-tour/administration.png" alt-text="Screenshot of IoT Application.":::
172+
:::image type="content" source="media/overview-iot-central-tour/administration.png" alt-text="Screenshot of IoT application page where can access various configuration settings for the application.":::
174173

175174
The application page allows you to configure your IoT Central application. Here you can change your application name, URL, theming, manage users and roles, create API tokens, and export your application. To learn more, see the [Administer your Azure IoT Central application](howto-administer.md) article.
176175

177176
### Customization
178177

179-
:::image type="content" source="media/overview-iot-central-tour/customization.png" alt-text="Screenshot of customization.":::
178+
:::image type="content" source="media/overview-iot-central-tour/customization.png" alt-text="Screenshot of customization page where you can customize the application's UI.":::
180179

181180
The customization page allows you to customize your IoT Central application. Here you can change your masthead logo, browser icon, and browser colors. To learn more, see the [How to customize the Azure IoT Central UI](howto-customize-ui.md) article.
182181

0 commit comments

Comments
 (0)