@@ -33,7 +33,7 @@ This configuration returns the largest number from a list of integers.
3333$schema : https://aka.ms/dsc/schemas/v3/bundled/config/document.json
3434resources :
3535- name : Echo maximum value
36- type : Test /Echo
36+ type : Microsoft.DSC.Debug /Echo
3737 properties :
3838 output : " [max(3, 2, 5, 1, 7)]"
3939` ` `
@@ -45,7 +45,7 @@ dsc config get --document max.example.1.dsc.config.yaml config get
4545``` yaml
4646results :
4747- name : Echo maximum value
48- type : Test /Echo
48+ type : Microsoft.DSC.Debug /Echo
4949 result :
5050 actualState :
5151 output : 7
@@ -64,7 +64,7 @@ function more readable.
6464$schema : https://aka.ms/dsc/schemas/v3/bundled/config/document.json
6565resources :
6666- name : Echo integer array
67- type : Test /Echo
67+ type : Microsoft.DSC.Debug /Echo
6868 properties :
6969 output :
7070 - 3
@@ -73,16 +73,16 @@ resources:
7373 - 1
7474 - 7
7575- name : Echo maximum integer
76- type : Test /Echo
76+ type : Microsoft.DSC.Debug /Echo
7777 properties :
7878 output : >-
7979 [max(
8080 reference(
81- resourceId('Test /Echo', 'Echo integer array')
81+ resourceId('Microsoft.DSC.Debug /Echo', 'Echo integer array')
8282 ).actualState.output
8383 )]
8484 dependsOn :
85- - " [resourceId('Test /Echo', 'Echo integer array')]"
85+ - " [resourceId('Microsoft.DSC.Debug /Echo', 'Echo integer array')]"
8686` ` `
8787
8888` ` ` bash
@@ -92,7 +92,7 @@ dsc config get --document max.example.2.dsc.config.yaml
9292``` yaml
9393results :
9494- name : Echo integer array
95- type : Test /Echo
95+ type : Microsoft.DSC.Debug /Echo
9696 result :
9797 actualState :
9898 output :
@@ -102,7 +102,7 @@ results:
102102 - 1
103103 - 7
104104- name : Echo maximum integer
105- type : Test /Echo
105+ type : Microsoft.DSC.Debug /Echo
106106 result :
107107 actualState :
108108 output : 7
0 commit comments