Skip to content

Commit a4f0c99

Browse files
fix blocking issues
1 parent 0328f54 commit a4f0c99

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

articles/sentinel/create-codeless-connector.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Before building a connector, understand your data source and how Microsoft Senti
4848

4949
It's important to understand the shape of your data stream and the fields you want to include in the output table. Reference your data source documentation or analyze sufficient output examples.
5050

51-
Research the following components and verify support for them in the [Data Connector API reference](restapipoller-data-connector-reference.md):
51+
Research the following components and verify support for them in the [Data Connector API reference](data-connector-connection-rules-reference.md):
5252

5353
1. HTTP request and response structure to the data source
5454

@@ -76,8 +76,8 @@ Each component has a section detailing the process to create and validate. Take
7676
7777
If your data source doesn't conform to the schema of a standard table, you have two options:
7878

79-
1. create a custom table for all the data
80-
1. create a custom table for some data and split conforming data out to a standard table
79+
- Create a custom table for all the data
80+
- Create a custom table for some data and split conforming data out to a standard table
8181

8282
Use the Log Analytics UI for a straight forward method to create a custom table together with a DCR. If you create the custom table using the [Tables API](/rest/api/loganalytics/tables/create-or-update) or another programmatic method, add the `_CL` suffix manually to the table name. For more information, see [Create a custom table](../azure-monitor/logs/create-custom-table.md#create-a-custom-table).
8383

@@ -103,7 +103,7 @@ To understand how to create a complex DCR with multiple data flows, see the [DCR
103103

104104
This component renders the UI for the data connector in the Microsoft Sentinel data connector gallery. Each data connector may have only one UI definition.
105105

106-
Build the data connector user interface with the [**Data Connector Definition**](/rest/api/securityinsights/preview/data-connector-definitions/create-or-update) API. Use the [Data connector definitions reference](connectorUIConfig-supplemental-reference.md) as a supplement to explain the API elements in greater detail.
106+
Build the data connector user interface with the [**Data Connector Definition**](/rest/api/securityinsights/preview/data-connector-definitions/create-or-update) API. Use the [Data connector definitions reference](data-connector-ui-definitions-reference.md) as a supplement to explain the API elements in greater detail.
107107

108108
Notes:
109109
1) The `kind` property for API polling connector should always be `Customizable`.
@@ -112,7 +112,7 @@ Notes:
112112

113113
Use Postman to call the data connector definitions API to create the data connector UI in order to validate it in the data connectors gallery.
114114

115-
To learn from an example, see the [Data connector definitions reference example section](connectorUIConfig-supplemental-reference.md#example-data-connector-definition).
115+
To learn from an example, see the [Data connector definitions reference example section](data-connector-ui-definitions-reference.md#example-data-connector-definition).
116116

117117
### Data connection rules
118118

@@ -121,9 +121,9 @@ This portion defines the connection rules including:
121121
- authentication
122122
- paging
123123

124-
For more information on building this section, see the [Data connector connection rules reference](restapipoller-data-connector-reference.md).
124+
For more information on building this section, see the [Data connector connection rules reference](data-connector-connection-rules-reference.md).
125125

126-
To learn from an example, see the [Data connector connection rules reference example](restapipoller-data-connector-reference.md#example-ccp-data-connector).
126+
To learn from an example, see the [Data connector connection rules reference example](data-connector-connection-rules-reference.md#example-ccp-data-connector).
127127

128128
Use Postman to call the data connector API to create the data connector which combines the connection rules and previous components. Verify the connector is now connected in the UI.
129129

@@ -155,8 +155,8 @@ Each step in building the codeless connector is represented in the following exa
155155
- [Example data](#example-data)
156156
- [Example custom table](#example-custom-table)
157157
- [Example data collection rule](#example-data-collection-rule)
158-
- [Example data connector UI definition](connectorUIConfig-supplemental-reference.md#example-data-connector-definition)
159-
- [Example data connection rules](restapipoller-data-connector-reference.md#example-ccp-data-connector)
158+
- [Example data connector UI definition](data-connector-ui-definitions-reference.md#example-data-connector-definition)
159+
- [Example data connection rules](data-connector-connection-rules-reference.md#example-ccp-data-connector)
160160
- [Use example data with example template](#example-arm-template)
161161

162162
To demonstrate a complex data source with ingestion to more than one table, this example features an output table schema and a DCR with multiple output streams. The DCR example puts these together along with its KQL transforms. The data connector UI definition and connection rules examples continue from this same example data source. Finally, the solution template uses all these example components to show end to end how to create the example CCP data connector.
@@ -335,11 +335,11 @@ To create this DCR in a test environment, follow the [Data Collection Rules API]
335335

336336
### Example data connector UI definition
337337

338-
This example is located in the [Data connector definitions reference](connectorUIConfig-supplemental-reference.md#example-data-connector-definition).
338+
This example is located in the [Data connector definitions reference](data-connector-ui-definitions-reference.md#example-data-connector-definition).
339339

340340
### Example data connector connection rules
341341

342-
This example is located in the [Data connectors reference](restapipoller-data-connector-reference.md#example-ccp-data-connector).
342+
This example is located in the [Data connectors reference](data-connector-connection-rules-reference.md#example-ccp-data-connector).
343343

344344
### Example ARM template
345345

articles/sentinel/restapipoller-data-connector-reference.md renamed to articles/sentinel/data-connector-connection-rules-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Data connectors reference for the Codeless Connector Platform
3+
titleSuffix: Microsoft Sentinel
34
description: This article provides reference JSON fields and properties for creating the RestApiPoller data connector type and its data connection rules as part of the Codeless Connector Platform.
45
services: sentinel
56
author: austinmccollum

articles/sentinel/connectorUIConfig-supplemental-reference.md renamed to articles/sentinel/data-connector-ui-definitions-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Data connector definitions reference for the Codeless Connector Platform
3+
titleSuffix: Microsoft Sentinel
34
description: This article provides a supplemental reference for creating the connectorUIConfig JSON section for the Data Connector Definitions API as part of the Codeless Connector Platform.
45
services: sentinel
56
author: austinmccollum
-1.13 KB
Loading
-1.13 KB
Loading

0 commit comments

Comments
 (0)