-
Notifications
You must be signed in to change notification settings - Fork 519
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 14347 in Azure/azure-rest-api-specs
Add Microsoft.Security softwareInventories API (#14347) * Created a new resource - software inventories * Moved to a new api * fixed syntax Co-authored-by: Eitan Mechtinger <emechtinger@microsoft.com>
- Loading branch information
SDKAuto
and
Eitan Mechtinger
committed
May 20, 2021
1 parent
dcdbf57
commit 0ac60ac
Showing
2 changed files
with
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2021-01-15-preview/Microsoft.Security.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.Security", | ||
"description": "Microsoft Security Resource Types", | ||
"resourceDefinitions": {}, | ||
"subscription_resourceDefinitions": { | ||
"ingestionSettings": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2021-01-15-preview" | ||
] | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "Name of the ingestion setting" | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"properties": {}, | ||
"description": "Ingestion setting data" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.Security/ingestionSettings" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "Microsoft.Security/ingestionSettings" | ||
} | ||
}, | ||
"definitions": {} | ||
} |