diff --git a/cSpell.json b/cSpell.json index a980cefc8de2..146798df6db4 100644 --- a/cSpell.json +++ b/cSpell.json @@ -1169,7 +1169,8 @@ { "filename": "**/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/**/*.json", "words": [ - "Criterias" + "Criterias", + "Mdti" ] }, { diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/AutomationRules.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/AutomationRules.json index dcc262f3e6b7..7ceb1ddbda3f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/AutomationRules.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/AutomationRules.json @@ -1548,4 +1548,3 @@ "application/json" ] } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/DataConnectors.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/DataConnectors.json index 3514ed647fbe..264acfc0778a 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/DataConnectors.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/DataConnectors.json @@ -108,6 +108,12 @@ }, "Get a RestApiPoller data connector": { "$ref": "./examples/dataConnectors/GetRestApiPollerById.json" + }, + "Get a MicrosoftThreatIntelligence data connector": { + "$ref": "./examples/dataConnectors/GetMicrosoftThreatIntelligenceById.json" + }, + "Get a PremiumMicrosoftDefenderForThreatIntelligence data connector": { + "$ref": "./examples/dataConnectors/GetPremiumMicrosoftDefenderForThreatIntelligenceById.json" } }, "tags": [ @@ -155,6 +161,12 @@ }, "Creates or updates an Threat Intelligence Platform data connector.": { "$ref": "./examples/dataConnectors/CreateThreatIntelligenceDataConnector.json" + }, + "Creates or updates a MicrosoftThreatIntelligence data connector.": { + "$ref": "./examples/dataConnectors/CreateMicrosoftThreatIntelligenceDataConnector.json" + }, + "Creates or updates a PremiumMicrosoftDefenderForThreatIntelligence data connector.": { + "$ref": "./examples/dataConnectors/CreatePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json" } }, "tags": [ @@ -207,6 +219,12 @@ "x-ms-examples": { "Delete an Office365 data connector.": { "$ref": "./examples/dataConnectors/DeleteOfficeDataConnetor.json" + }, + "Delete an MicrosoftThreatIntelligence data connector": { + "$ref": "./examples/dataConnectors/DeleteMicrosoftThreatIntelligenceDataConnector.json" + }, + "Deletes a PremiumMicrosoftDefenderForThreatIntelligence data connector.": { + "$ref": "./examples/dataConnectors/DeletePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json" } }, "tags": [ @@ -1375,6 +1393,8 @@ "AzureSecurityCenter", "MicrosoftCloudAppSecurity", "ThreatIntelligence", + "MicrosoftThreatIntelligence", + "PremiumMicrosoftDefenderForThreatIntelligence", "Office365", "AmazonWebServicesCloudTrail", "AzureAdvancedThreatProtection", @@ -1398,6 +1418,12 @@ { "value": "ThreatIntelligence" }, + { + "value": "MicrosoftThreatIntelligence" + }, + { + "value": "PremiumMicrosoftDefenderForThreatIntelligence" + }, { "value": "Office365" }, @@ -1608,6 +1634,132 @@ }, "type": "object" }, + "MSTIDataConnector": { + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "description": "Represents Microsoft Threat Intelligence data connector.", + "properties": { + "properties": { + "$ref": "#/definitions/MSTIDataConnectorProperties", + "description": "Microsoft Threat Intelligence data connector properties.", + "x-ms-client-flatten": true + } + }, + "type": "object", + "x-ms-discriminator-value": "MicrosoftThreatIntelligence" + }, + "MSTIDataConnectorDataTypes": { + "description": "The available data types for Microsoft Threat Intelligence data connector.", + "properties": { + "microsoftEmergingThreatFeed": { + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" + } + ], + "properties": { + "lookbackPeriod": { + "description": "The lookback period for the feed to be imported. The date-time to begin importing the feed from, for example: 2024-01-01T00:00:00.000Z.", + "format": "date-time", + "type": "string" + } + }, + "description": "Data type for Microsoft Threat Intelligence data connector.", + "type": "object", + "required": [ + "lookbackPeriod" + ] + } + }, + "type": "object", + "required": [ + "microsoftEmergingThreatFeed" + ] + }, + "MSTIDataConnectorProperties": { + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" + } + ], + "description": "Microsoft Threat Intelligence data connector properties.", + "properties": { + "dataTypes": { + "$ref": "#/definitions/MSTIDataConnectorDataTypes", + "description": "The available data types for the connector." + } + }, + "required": [ + "dataTypes" + ], + "type": "object" + }, + "PremiumMicrosoftDefenderForThreatIntelligence": { + "allOf": [ + { + "$ref": "#/definitions/DataConnector" + } + ], + "description": "Represents Premium Microsoft Defender for Threat Intelligence data connector.", + "properties": { + "properties": { + "$ref": "#/definitions/PremiumMdtiDataConnectorProperties", + "description": "Premium Microsoft Defender for Threat Intelligence data connector properties.", + "x-ms-client-flatten": true + } + }, + "type": "object", + "x-ms-discriminator-value": "PremiumMicrosoftDefenderForThreatIntelligence" + }, + "PremiumMdtiDataConnectorDataTypes": { + "description": "The available data types for Premium Microsoft Defender for Threat Intelligence data connector.", + "properties": { + "connector": { + "allOf": [ + { + "$ref": "#/definitions/DataConnectorDataTypeCommon" + } + ], + "description": "Data type for Premium Microsoft Defender for Threat Intelligence data connector.", + "type": "object" + } + }, + "type": "object", + "required": [ + "connector" + ] + }, + "PremiumMdtiDataConnectorProperties": { + "description": "Premium Microsoft Defender for Threat Intelligence data connector properties.", + "allOf": [ + { + "$ref": "#/definitions/DataConnectorTenantId" + } + ], + "properties": { + "lookbackPeriod": { + "description": "The lookback period for the feed to be imported. The date-time to begin importing the feed from, for example: 2024-01-01T00:00:00.000Z.", + "format": "date-time", + "type": "string" + }, + "requiredSKUsPresent": { + "description": "The flag to indicate whether the tenant has the premium SKU required to access this connector.", + "type": "boolean" + }, + "dataTypes": { + "$ref": "#/definitions/PremiumMdtiDataConnectorDataTypes", + "description": "The available data types for the connector." + } + }, + "required": [ + "dataTypes", + "lookbackPeriod" + ], + "type": "object" + }, "OfficeDataConnector": { "allOf": [ { diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/Incidents.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/Incidents.json index 3ac3d7c76225..29f99f1606d9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/Incidents.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/Incidents.json @@ -1675,4 +1675,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/AlertTypes.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/AlertTypes.json index 33853de457c4..e687dddaacf6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/AlertTypes.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/AlertTypes.json @@ -68,4 +68,3 @@ }, "parameters": {} } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/ContentCommonTypes.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/ContentCommonTypes.json index 3030e88d6cd0..d2f7621934d9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/ContentCommonTypes.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/ContentCommonTypes.json @@ -644,4 +644,3 @@ }, "parameters": {} } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/IncidentTypes.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/IncidentTypes.json index 5b0f1cb4f8ac..47f994172d44 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/IncidentTypes.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/common/IncidentTypes.json @@ -244,4 +244,3 @@ }, "parameters": {} } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/CreateActionOfAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/CreateActionOfAlertRule.json index e5823213daf7..312746e4a265 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/CreateActionOfAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/CreateActionOfAlertRule.json @@ -42,4 +42,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/DeleteActionOfAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/DeleteActionOfAlertRule.json index 10871f9845f9..a865a99333b6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/DeleteActionOfAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/DeleteActionOfAlertRule.json @@ -13,4 +13,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetActionOfAlertRuleById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetActionOfAlertRuleById.json index dfab8988f94b..155143f1af45 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetActionOfAlertRuleById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetActionOfAlertRuleById.json @@ -23,4 +23,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetAllActionsByAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetAllActionsByAlertRule.json index 0bee0dfb4e5d..de79783d3a9e 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetAllActionsByAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/actions/GetAllActionsByAlertRule.json @@ -26,4 +26,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplateById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplateById.json index 687aa6806c65..c173fac83f61 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplateById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplateById.json @@ -78,4 +78,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplates.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplates.json index 70c93b63edf4..88272c8d68ac 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplates.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRuleTemplates/GetAlertRuleTemplates.json @@ -84,4 +84,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateFusionAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateFusionAlertRule.json index 949b998b614a..714c9904aa61 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateFusionAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateFusionAlertRule.json @@ -64,4 +64,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateMicrosoftSecurityIncidentCreationAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateMicrosoftSecurityIncidentCreationAlertRule.json index e65091e12871..db81f5dfe2f4 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateMicrosoftSecurityIncidentCreationAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateMicrosoftSecurityIncidentCreationAlertRule.json @@ -57,4 +57,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateScheduledAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateScheduledAlertRule.json index 494f88b8e33f..fa04cea0a2ca 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateScheduledAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/CreateScheduledAlertRule.json @@ -279,4 +279,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/DeleteAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/DeleteAlertRule.json index 1b11d0ed7ddd..4f861a46838c 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/DeleteAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/DeleteAlertRule.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetAllAlertRules.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetAllAlertRules.json index 95466aefa5cd..9e4c0e4be529 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetAllAlertRules.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetAllAlertRules.json @@ -131,4 +131,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetFusionAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetFusionAlertRule.json index efe9ded50a18..c93e79e23429 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetFusionAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetFusionAlertRule.json @@ -33,4 +33,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetMicrosoftSecurityIncidentCreationAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetMicrosoftSecurityIncidentCreationAlertRule.json index 3bd302d670de..8f814b08236e 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetMicrosoftSecurityIncidentCreationAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetMicrosoftSecurityIncidentCreationAlertRule.json @@ -29,4 +29,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetScheduledAlertRule.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetScheduledAlertRule.json index 5d900b95575c..7913271aaa14 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetScheduledAlertRule.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/alertRules/GetScheduledAlertRule.json @@ -90,4 +90,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_CreateOrUpdate.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_CreateOrUpdate.json index ef737da17019..fef223f84a96 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_CreateOrUpdate.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_CreateOrUpdate.json @@ -169,4 +169,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Delete.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Delete.json index 0e04762c852d..7ba8eefbbe23 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Delete.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Delete.json @@ -15,4 +15,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Get.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Get.json index 0b6e92f65b47..0e4a7e5fa2b1 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Get.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_Get.json @@ -63,4 +63,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_List.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_List.json index e8f9fa76e2bb..8226a9d5fc30 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_List.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/automationRules/AutomationRules_List.json @@ -66,4 +66,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/CreateBookmark.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/CreateBookmark.json index 4fef1f1db125..f04d95cf66e1 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/CreateBookmark.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/CreateBookmark.json @@ -91,4 +91,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/DeleteBookmark.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/DeleteBookmark.json index c11c6343ee22..62a1f16b865f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/DeleteBookmark.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/DeleteBookmark.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarkById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarkById.json index a6e38b40b314..d4a314386c1c 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarkById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarkById.json @@ -46,4 +46,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarks.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarks.json index f2c215f18597..ba75871f695d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarks.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/bookmarks/GetBookmarks.json @@ -49,4 +49,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackageById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackageById.json index ef31eab0b884..045ec539c14f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackageById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackageById.json @@ -32,4 +32,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackages.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackages.json index aee0ca81d911..1f36ad462f99 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackages.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetPackages.json @@ -37,4 +37,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackageById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackageById.json index aee6541aabac..821ef871a2ad 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackageById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackageById.json @@ -74,4 +74,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackages.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackages.json index c8438895e183..4ff965adebbe 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackages.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/GetProductPackages.json @@ -76,4 +76,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/InstallPackage.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/InstallPackage.json index e34de3121f44..b4376789d2a3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/InstallPackage.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/InstallPackage.json @@ -149,4 +149,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/UninstallPackage.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/UninstallPackage.json index e801c4c9a694..acdae92fab90 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/UninstallPackage.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentPackages/UninstallPackage.json @@ -11,4 +11,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/DeleteTemplate.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/DeleteTemplate.json index 4c40b68065c1..aea93c37e84d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/DeleteTemplate.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/DeleteTemplate.json @@ -11,4 +11,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetProductTemplateById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetProductTemplateById.json index acca43688ccc..8b4efe6f37d9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetProductTemplateById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetProductTemplateById.json @@ -41,4 +41,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplateById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplateById.json index ec4b8ebff8b9..6680a49ae4b6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplateById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplateById.json @@ -39,4 +39,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplates.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplates.json index ce56f9001110..38052f797cef 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplates.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/GetTemplates.json @@ -41,4 +41,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/InstallTemplate.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/InstallTemplate.json index 4cc794952604..218fea985e9c 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/InstallTemplate.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/contentTemplates/InstallTemplate.json @@ -226,4 +226,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateMicrosoftThreatIntelligenceDataConnector.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateMicrosoftThreatIntelligenceDataConnector.json new file mode 100644 index 000000000000..c053a5fb02c5 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateMicrosoftThreatIntelligenceDataConnector.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "dataConnector": { + "kind": "MicrosoftThreatIntelligence", + "properties": { + "tenantId": "06b3ccb8-1384-4bcc-aec7-852f6d57161b", + "dataTypes": { + "microsoftEmergingThreatFeed": { + "state": "Enabled", + "lookbackPeriod": "2024-11-01T00:00:00Z" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", + "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "type": "Microsoft.SecurityInsights/dataConnectors", + "etag": "d12423f6-a60b-4ca5-88c0-feb1a182d0f0", + "kind": "MicrosoftThreatIntelligence", + "properties": { + "tenantId": "06b3ccb8-1384-4bcc-aec7-852f6d57161b", + "dataTypes": { + "microsoftEmergingThreatFeed": { + "state": "Enabled", + "lookbackPeriod": "2024-11-01T00:00:00Z" + } + } + } + } + }, + "201": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", + "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "type": "Microsoft.SecurityInsights/dataConnectors", + "etag": "d12423f6-a60b-4ca5-88c0-feb1a182d0f0", + "kind": "MicrosoftThreatIntelligence", + "properties": { + "tenantId": "06b3ccb8-1384-4bcc-aec7-852f6d57161b", + "dataTypes": { + "microsoftEmergingThreatFeed": { + "state": "Enabled", + "lookbackPeriod": "2024-11-01T00:00:00Z" + } + } + } + } + } + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateOfficeDataConnetor.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateOfficeDataConnetor.json index a82a1285ea3b..28e99274c391 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateOfficeDataConnetor.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateOfficeDataConnetor.json @@ -74,4 +74,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreatePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreatePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json new file mode 100644 index 000000000000..5246098cff70 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreatePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "b66e5c69-e2eb-422a-81c3-002de57059f3", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "8c569548-a86c-4fb4-8ae4-d1e35a6146f8", + "dataConnector": { + "kind": "PremiumMicrosoftDefenderForThreatIntelligence", + "properties": { + "tenantId": "e4afb3c4-813b-4e68-b6de-e5360866e798", + "lookbackPeriod": "1970-01-01T00:00:00.000Z", + "dataTypes": { + "connector": { + "state": "Enabled" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b66e5c69-e2eb-422a-81c3-002de57059f3/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/3deede2e-c6d1-4ee6-afc8-e0190ac34200", + "name": "3deede2e-c6d1-4ee6-afc8-e0190ac34200", + "etag": "56003401-0000-0100-0000-67314b0b0000", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "PremiumMicrosoftDefenderForThreatIntelligence", + "properties": { + "lookbackPeriod": "2024-11-01T00:00:00Z", + "requiredSKUsPresent": true, + "dataTypes": { + "connector": { + "state": "Enabled" + } + }, + "tenantId": "e4afb3c4-813b-4e68-b6de-e5360866e798" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/b66e5c69-e2eb-422a-81c3-002de57059f3/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/3deede2e-c6d1-4ee6-afc8-e0190ac34200", + "name": "3deede2e-c6d1-4ee6-afc8-e0190ac34200", + "etag": "56003401-0000-0100-0000-67314b0b0000", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "PremiumMicrosoftDefenderForThreatIntelligence", + "properties": { + "lookbackPeriod": "2024-11-01T00:00:00Z", + "requiredSKUsPresent": true, + "dataTypes": { + "connector": { + "state": "Enabled" + } + }, + "tenantId": "e4afb3c4-813b-4e68-b6de-e5360866e798" + } + } + } + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateThreatIntelligenceDataConnector.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateThreatIntelligenceDataConnector.json index 08325403eec0..3d854f3b1d34 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateThreatIntelligenceDataConnector.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/CreateThreatIntelligenceDataConnector.json @@ -58,4 +58,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteMicrosoftThreatIntelligenceDataConnector.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteMicrosoftThreatIntelligenceDataConnector.json new file mode 100644 index 000000000000..255aaca2fcb9 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteMicrosoftThreatIntelligenceDataConnector.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "c345bf40-8509-4ed2-b947-50cb773aaf04" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteOfficeDataConnetor.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteOfficeDataConnetor.json index 530749e5157f..0ca9e80230c6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteOfficeDataConnetor.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeleteOfficeDataConnetor.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeletePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeletePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json new file mode 100644 index 000000000000..5cd46b272c58 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/DeletePremiumMicrosoftDefenderForThreatIntelligenceDataConnector.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "b66e5c69-e2eb-422a-81c3-002de57059f3", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "8c569548-a86c-4fb4-8ae4-d1e35a6146f8" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAmazonWebServicesCloudTrailById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAmazonWebServicesCloudTrailById.json index 6d792fe5a136..7ecebc59bb57 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAmazonWebServicesCloudTrailById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAmazonWebServicesCloudTrailById.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureActiveDirectoryById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureActiveDirectoryById.json index 1f97d80be856..f80fcbba04fd 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureActiveDirectoryById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureActiveDirectoryById.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureAdvancedThreatProtectionById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureAdvancedThreatProtectionById.json index 8c09d9a1ae27..5a5d8a63af1d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureAdvancedThreatProtectionById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureAdvancedThreatProtectionById.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureSecurityCenterById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureSecurityCenterById.json index d9ee84f15ac2..d4dfe7061858 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureSecurityCenterById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetAzureSecurityCenterById.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetDataConnectors.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetDataConnectors.json index 5917e086b63b..c21df3ff522a 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetDataConnectors.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetDataConnectors.json @@ -141,4 +141,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json index 9244b65be548..a410e14fb657 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftCloudAppSecurityById.json @@ -30,4 +30,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftDefenderAdvancedThreatProtectionById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftDefenderAdvancedThreatProtectionById.json index 017c31f78440..76e5649be81f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftDefenderAdvancedThreatProtectionById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftDefenderAdvancedThreatProtectionById.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftThreatIntelligenceById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftThreatIntelligenceById.json new file mode 100644 index 000000000000..6dfc61e5f390 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetMicrosoftThreatIntelligenceById.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "c345bf40-8509-4ed2-b947-50cb773aaf04" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/c345bf40-8509-4ed2-b947-50cb773aaf04", + "name": "c345bf40-8509-4ed2-b947-50cb773aaf04", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "MicrosoftThreatIntelligence", + "etag": "\"0300bf09-0000-0000-0000-5c37296e0000\"", + "properties": { + "tenantId": "2070ecc9-b4d5-4ae4-adaa-936fa1954fa8", + "dataTypes": { + "microsoftEmergingThreatFeed": { + "state": "Enabled", + "lookbackPeriod": "2024-11-01T00:00:00Z" + } + } + } + } + } + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetOfficeDataConnetorById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetOfficeDataConnetorById.json index b99cfd8a88d5..4bad058624a9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetOfficeDataConnetorById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetOfficeDataConnetorById.json @@ -33,4 +33,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetPremiumMicrosoftDefenderForThreatIntelligenceById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetPremiumMicrosoftDefenderForThreatIntelligenceById.json new file mode 100644 index 000000000000..3c54193ec311 --- /dev/null +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetPremiumMicrosoftDefenderForThreatIntelligenceById.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2024-09-01", + "subscriptionId": "b66e5c69-e2eb-422a-81c3-002de57059f3", + "resourceGroupName": "myRg", + "workspaceName": "myWorkspace", + "dataConnectorId": "8c569548-a86c-4fb4-8ae4-d1e35a6146f8" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/b66e5c69-e2eb-422a-81c3-002de57059f3/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/8c569548-a86c-4fb4-8ae4-d1e35a6146f8", + "name": "8c569548-a86c-4fb4-8ae4-d1e35a6146f8", + "etag": "d30049a2-0000-0800-0000-658ca2270000", + "type": "Microsoft.SecurityInsights/dataConnectors", + "kind": "PremiumMicrosoftDefenderForThreatIntelligence", + "properties": { + "lookbackPeriod": "2023-12-26T22:16:07Z", + "requiredSKUsPresent": false, + "dataTypes": { + "connector": { + "state": "Enabled" + } + }, + "tenantId": "e4afb3c4-813b-4e68-b6de-e5360866e798" + } + } + } + } +} diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetThreatIntelligenceById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetThreatIntelligenceById.json index 90e0f74dfd73..0acb6f0790af 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetThreatIntelligenceById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/dataConnectors/GetThreatIntelligenceById.json @@ -28,4 +28,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/CreateIncident.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/CreateIncident.json index c1dd81a9423c..b25a136a15d3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/CreateIncident.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/CreateIncident.json @@ -106,4 +106,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/DeleteIncident.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/DeleteIncident.json index 8e8c6d6d3f3f..672aceeeb6a6 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/DeleteIncident.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/DeleteIncident.json @@ -11,4 +11,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentAlerts.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentAlerts.json index 9a7a925edcf9..635473720e94 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentAlerts.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentAlerts.json @@ -48,4 +48,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentBookmarks.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentBookmarks.json index ba8f3c27fcb3..73bb38d82e1f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentBookmarks.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentBookmarks.json @@ -75,4 +75,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentEntities.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentEntities.json index 4c694b305560..4034c535fa28 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentEntities.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetAllIncidentEntities.json @@ -32,4 +32,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidentById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidentById.json index a603c1c7a3b0..f8c7d4d6c707 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidentById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidentById.json @@ -54,4 +54,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidents.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidents.json index 1b72836ceb4a..c0815a5942ed 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidents.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/GetIncidents.json @@ -59,4 +59,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/CreateIncidentComment.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/CreateIncidentComment.json index 0e832240f976..69890bb35677 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/CreateIncidentComment.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/CreateIncidentComment.json @@ -53,4 +53,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/DeleteIncidentComment.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/DeleteIncidentComment.json index 31f10814e44e..467d7c29203d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/DeleteIncidentComment.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/DeleteIncidentComment.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetAllIncidentComments.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetAllIncidentComments.json index 2331c691e205..8bf832a23d84 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetAllIncidentComments.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetAllIncidentComments.json @@ -32,4 +32,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetIncidentCommentById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetIncidentCommentById.json index 01e347fed176..79137a0cfb42 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetIncidentCommentById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/comments/GetIncidentCommentById.json @@ -29,4 +29,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/CreateIncidentRelation.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/CreateIncidentRelation.json index b46991ee1b36..10c2b547f6c3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/CreateIncidentRelation.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/CreateIncidentRelation.json @@ -41,4 +41,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/DeleteIncidentRelation.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/DeleteIncidentRelation.json index 36f36837e3eb..2975a756efd8 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/DeleteIncidentRelation.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/DeleteIncidentRelation.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetAllIncidentRelations.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetAllIncidentRelations.json index 9c7eb0750009..6f1da21675fd 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetAllIncidentRelations.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetAllIncidentRelations.json @@ -38,4 +38,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetIncidentRelationByName.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetIncidentRelationByName.json index 0c5b86899215..33e2be3dedfb 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetIncidentRelationByName.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/relations/GetIncidentRelationByName.json @@ -23,4 +23,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_CreateOrUpdate.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_CreateOrUpdate.json index 992100f49317..571daeb03432 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_CreateOrUpdate.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_CreateOrUpdate.json @@ -71,4 +71,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Delete.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Delete.json index 5fec5e2e1a24..69131bd1277d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Delete.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Delete.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Get.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Get.json index bdc3b5f68266..e2218c6a5b49 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Get.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_Get.json @@ -37,4 +37,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_List.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_List.json index 2345b319c90f..769f494e0966 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_List.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/incidents/tasks/IncidentTasks_List.json @@ -40,4 +40,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Entities_RunPlaybook.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Entities_RunPlaybook.json index b5a199c47c29..a1134135ff3e 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Entities_RunPlaybook.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Entities_RunPlaybook.json @@ -15,4 +15,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Incidents_RunPlaybook.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Incidents_RunPlaybook.json index c38272f864b1..2870bb04d576 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Incidents_RunPlaybook.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/manualTrigger/Incidents_RunPlaybook.json @@ -14,4 +14,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/DeleteMetadata.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/DeleteMetadata.json index f5ebe4c068ca..6513639560df 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/DeleteMetadata.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/DeleteMetadata.json @@ -11,4 +11,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadata.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadata.json index 0bc75c5507a6..24f90b06263d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadata.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadata.json @@ -62,4 +62,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadataOData.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadataOData.json index bde2f65e5de1..83d83d153a4a 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadataOData.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetAllMetadataOData.json @@ -50,4 +50,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetMetadata.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetMetadata.json index 9ee1d5a3fc40..89889caf581d 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetMetadata.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/GetMetadata.json @@ -102,4 +102,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PatchMetadata.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PatchMetadata.json index 694a0b526614..a883ecb101ad 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PatchMetadata.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PatchMetadata.json @@ -33,4 +33,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadata.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadata.json index 84a6eae33d27..0436d2c4a99c 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadata.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadata.json @@ -284,4 +284,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadataMinimal.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadataMinimal.json index c362fff76a06..8bd0dcd186e3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadataMinimal.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/metadata/PutMetadataMinimal.json @@ -38,4 +38,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/CreateSentinelOnboardingState.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/CreateSentinelOnboardingState.json index b95680a1bf8b..1b0113e7d329 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/CreateSentinelOnboardingState.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/CreateSentinelOnboardingState.json @@ -35,4 +35,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/DeleteSentinelOnboardingState.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/DeleteSentinelOnboardingState.json index 26521a2e589f..823fd9598877 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/DeleteSentinelOnboardingState.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/DeleteSentinelOnboardingState.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetAllSentinelOnboardingStates.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetAllSentinelOnboardingStates.json index 205be2ff08a1..04b46a924117 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetAllSentinelOnboardingStates.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetAllSentinelOnboardingStates.json @@ -23,4 +23,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetSentinelOnboardingState.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetSentinelOnboardingState.json index 2dafec4d251f..5d5399d19204 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetSentinelOnboardingState.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/onboardingStates/GetSentinelOnboardingState.json @@ -20,4 +20,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/operations/ListOperations.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/operations/ListOperations.json index b7b429ede5b9..55ed9107715f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/operations/ListOperations.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/operations/ListOperations.json @@ -561,4 +561,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/repositories/GetRepositories.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/repositories/GetRepositories.json index c8b236445a3a..ba7924cb1eef 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/repositories/GetRepositories.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/repositories/GetRepositories.json @@ -35,4 +35,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/CreateAnomalySecurityMLAnalyticsSetting.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/CreateAnomalySecurityMLAnalyticsSetting.json index aa1afc5a3c46..ff12f2de39f1 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/CreateAnomalySecurityMLAnalyticsSetting.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/CreateAnomalySecurityMLAnalyticsSetting.json @@ -243,4 +243,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/DeleteSecurityMLAnalyticsSetting.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/DeleteSecurityMLAnalyticsSetting.json index 9ff0f4e73043..ea23f7d3e962 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/DeleteSecurityMLAnalyticsSetting.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/DeleteSecurityMLAnalyticsSetting.json @@ -11,4 +11,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAllSecurityMLAnalyticsSettings.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAllSecurityMLAnalyticsSettings.json index 0adc123e8d81..613b0ea175fb 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAllSecurityMLAnalyticsSettings.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAllSecurityMLAnalyticsSettings.json @@ -92,4 +92,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAnomalySecurityMLAnalyticsSetting.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAnomalySecurityMLAnalyticsSetting.json index c9606f05f344..b70b27d323e2 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAnomalySecurityMLAnalyticsSetting.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/securityMLAnalyticsSettings/GetAnomalySecurityMLAnalyticsSetting.json @@ -89,4 +89,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/CreateSourceControl.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/CreateSourceControl.json index 0b89bb5372c7..614b6915221f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/CreateSourceControl.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/CreateSourceControl.json @@ -160,4 +160,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/DeleteSourceControl.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/DeleteSourceControl.json index c6eabef6ac53..d6681c06b541 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/DeleteSourceControl.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/DeleteSourceControl.json @@ -27,4 +27,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControlById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControlById.json index d2cf90f4c109..931e8e4df21f 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControlById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControlById.json @@ -73,4 +73,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControls.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControls.json index 11b0655bcb38..92d3a83b9472 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControls.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/sourcecontrols/GetSourceControls.json @@ -76,4 +76,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/AppendTagsThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/AppendTagsThreatIntelligence.json index 5f2149052250..632d8c7456e5 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/AppendTagsThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/AppendTagsThreatIntelligence.json @@ -17,4 +17,3 @@ "200": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CollectThreatIntelligenceMetrics.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CollectThreatIntelligenceMetrics.json index 3b0ae5a1fec4..a8d25c32e6c2 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CollectThreatIntelligenceMetrics.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CollectThreatIntelligenceMetrics.json @@ -42,4 +42,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CreateThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CreateThreatIntelligence.json index 6a33200d94c1..374fb677489e 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CreateThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/CreateThreatIntelligence.json @@ -99,4 +99,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/DeleteThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/DeleteThreatIntelligence.json index 0fc12be7c7df..7c23c921f348 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/DeleteThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/DeleteThreatIntelligence.json @@ -12,4 +12,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligence.json index 288acd458bb2..f99b373928d9 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligence.json @@ -75,4 +75,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligenceById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligenceById.json index b1ce4ecbf1ce..2d9375e43adb 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligenceById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/GetThreatIntelligenceById.json @@ -42,4 +42,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/QueryThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/QueryThreatIntelligence.json index eb1241f2e464..3e6512d8ecc0 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/QueryThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/QueryThreatIntelligence.json @@ -106,4 +106,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/ReplaceTagsThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/ReplaceTagsThreatIntelligence.json index 6cb460757c4d..0abc161594ba 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/ReplaceTagsThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/ReplaceTagsThreatIntelligence.json @@ -51,4 +51,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/UpdateThreatIntelligence.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/UpdateThreatIntelligence.json index 37e01793371b..8393319c4645 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/UpdateThreatIntelligence.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/threatintelligence/UpdateThreatIntelligence.json @@ -100,4 +100,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/CreateWatchlistItem.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/CreateWatchlistItem.json index 025c445bf49d..5a88498c6ec8 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/CreateWatchlistItem.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/CreateWatchlistItem.json @@ -90,4 +90,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/DeleteWatchlistItem.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/DeleteWatchlistItem.json index 5418665ed9e2..1fc3d297d7e2 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/DeleteWatchlistItem.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/DeleteWatchlistItem.json @@ -13,4 +13,3 @@ "204": {} } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItemById.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItemById.json index 8998142283bc..be25c72064dc 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItemById.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItemById.json @@ -45,4 +45,3 @@ } } } - diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItems.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItems.json index 806caf1776df..6d42c51f57e7 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItems.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/stable/2024-09-01/examples/watchlists/GetWatchlistItems.json @@ -48,4 +48,3 @@ } } } -