-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathPSAdaptedTestClassResource.dsc.adaptedResource.json
More file actions
36 lines (36 loc) · 1.3 KB
/
PSAdaptedTestClassResource.dsc.adaptedResource.json
File metadata and controls
36 lines (36 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
"type": "PSAdaptedTestClassResource/PSAdaptedTestClass",
"kind": "resource",
"version": "0.1.0",
"capabilities": [
"get"
],
"description": "An adapted resource for testing.",
"author": "DSC Team",
"requireAdapter": "Microsoft.Adapter/PowerShell",
"path": "PSAdaptedTestClassResource.psd1",
"schema": {
"embedded": {
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/resources/PSAdaptedTestClass/v0.1.0/schema.json",
"title": "PSAdaptedTestClass",
"description": "An adapted resource for testing.",
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "This is property one of the adapted resource."
},
"value": {
"type": "integer",
"title": "Value",
"description": "The value of the adapted resource instance."
}
}
}
}
}