@@ -33,7 +33,7 @@ This configuration returns the largest number from a list of integers.
33
33
$schema : https://aka.ms/dsc/schemas/v3/bundled/config/document.json
34
34
resources :
35
35
- name : Echo maximum value
36
- type : Test /Echo
36
+ type : Microsoft.DSC.Debug /Echo
37
37
properties :
38
38
output : " [max(3, 2, 5, 1, 7)]"
39
39
` ` `
@@ -45,7 +45,7 @@ dsc config get --document max.example.1.dsc.config.yaml config get
45
45
``` yaml
46
46
results :
47
47
- name : Echo maximum value
48
- type : Test /Echo
48
+ type : Microsoft.DSC.Debug /Echo
49
49
result :
50
50
actualState :
51
51
output : 7
@@ -64,7 +64,7 @@ function more readable.
64
64
$schema : https://aka.ms/dsc/schemas/v3/bundled/config/document.json
65
65
resources :
66
66
- name : Echo integer array
67
- type : Test /Echo
67
+ type : Microsoft.DSC.Debug /Echo
68
68
properties :
69
69
output :
70
70
- 3
@@ -73,16 +73,16 @@ resources:
73
73
- 1
74
74
- 7
75
75
- name : Echo maximum integer
76
- type : Test /Echo
76
+ type : Microsoft.DSC.Debug /Echo
77
77
properties :
78
78
output : >-
79
79
[max(
80
80
reference(
81
- resourceId('Test /Echo', 'Echo integer array')
81
+ resourceId('Microsoft.DSC.Debug /Echo', 'Echo integer array')
82
82
).actualState.output
83
83
)]
84
84
dependsOn :
85
- - " [resourceId('Test /Echo', 'Echo integer array')]"
85
+ - " [resourceId('Microsoft.DSC.Debug /Echo', 'Echo integer array')]"
86
86
` ` `
87
87
88
88
` ` ` bash
@@ -92,7 +92,7 @@ dsc config get --document max.example.2.dsc.config.yaml
92
92
``` yaml
93
93
results :
94
94
- name : Echo integer array
95
- type : Test /Echo
95
+ type : Microsoft.DSC.Debug /Echo
96
96
result :
97
97
actualState :
98
98
output :
@@ -102,7 +102,7 @@ results:
102
102
- 1
103
103
- 7
104
104
- name : Echo maximum integer
105
- type : Test /Echo
105
+ type : Microsoft.DSC.Debug /Echo
106
106
result :
107
107
actualState :
108
108
output : 7
0 commit comments