File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Tasks/AzureResourceManagerTemplateDeploymentV3 Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ import { DeploymentScopeBase } from "./operations/DeploymentScopeBase";
1212function run ( ) : Promise < void > {
1313 var taskParameters = new armDeployTaskParameters . TaskParameters ( ) ;
1414 return taskParameters . getTaskParameters ( ) . then ( ( taskParameters ) => {
15+
16+ //Telemetry
17+ var deploymentScopeTelemetry = {
18+ deploymentScope : taskParameters . deploymentScope ,
19+ deploymentMode : taskParameters . deploymentMode
20+ } ;
21+ console . log ( "##vso[telemetry.publish area=TaskDeploymentMethod;feature=AzureResourceManagerTemplateDeployment]" + JSON . stringify ( deploymentScopeTelemetry ) ) ;
22+
1523 if ( taskParameters . deploymentScope === "Management Group" ) {
1624 var deploymentParameters = new DeploymentParameters ( { } , taskParameters . location ) ;
1725 var managementGroupOperationsController = new DeploymentScopeBase (
Original file line number Diff line number Diff line change 1515 "version" : {
1616 "Major" : 3 ,
1717 "Minor" : 0 ,
18- "Patch" : 1
18+ "Patch" : 2
1919 },
2020 "preview" : " true" ,
2121 "demands" : [],
Original file line number Diff line number Diff line change 1515 "version" : {
1616 "Major" : 3 ,
1717 "Minor" : 0 ,
18- "Patch" : 1
18+ "Patch" : 2
1919 },
2020 "preview" : " true" ,
2121 "demands" : [],
You can’t perform that action at this time.
0 commit comments