forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 14374 in Azure/azure-rest-api-specs
Merge 61d132fca8f6b9fa84a32a698e248c1d23d493f1 into 5f9965cd81e1651c38651ddc9a964a7f1ba4b218
- Loading branch information
SDKAuto
committed
May 31, 2021
1 parent
f6dd80a
commit 858b110
Showing
3 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Security.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.Security", | ||
"description": "Microsoft Security Resource Types", | ||
"resourceDefinitions": {}, | ||
"subscription_resourceDefinitions": { | ||
"settings": { | ||
"type": "object", | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/DataExportSettings" | ||
}, | ||
{ | ||
"$ref": "#/definitions/AlertSyncSettings" | ||
} | ||
], | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2021-06-01" | ||
] | ||
}, | ||
"name": { | ||
"oneOf": [ | ||
{ | ||
"type": "string", | ||
"enum": [ | ||
"MCAS", | ||
"WDATP", | ||
"Sentinel" | ||
] | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "The name of the setting." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.Security/settings" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"type" | ||
], | ||
"description": "Microsoft.Security/settings" | ||
} | ||
}, | ||
"definitions": { | ||
"AlertSyncSettingProperties": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"oneOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Is the alert sync setting enabled" | ||
} | ||
}, | ||
"required": [ | ||
"enabled" | ||
], | ||
"description": "The alert sync setting properties" | ||
}, | ||
"AlertSyncSettings": { | ||
"type": "object", | ||
"properties": { | ||
"kind": { | ||
"type": "string", | ||
"enum": [ | ||
"AlertSyncSettings" | ||
] | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/AlertSyncSettingProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "The alert sync setting properties" | ||
} | ||
}, | ||
"required": [ | ||
"kind" | ||
], | ||
"description": "Represents an alert sync setting" | ||
}, | ||
"DataExportSettingProperties": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"oneOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Is the data export setting enabled" | ||
} | ||
}, | ||
"required": [ | ||
"enabled" | ||
], | ||
"description": "The data export setting properties" | ||
}, | ||
"DataExportSettings": { | ||
"type": "object", | ||
"properties": { | ||
"kind": { | ||
"type": "string", | ||
"enum": [ | ||
"DataExportSettings" | ||
] | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/DataExportSettingProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "The data export setting properties" | ||
} | ||
}, | ||
"required": [ | ||
"kind" | ||
], | ||
"description": "Represents a data export setting" | ||
} | ||
} | ||
} |