@@ -35,28 +35,28 @@ directive:
35
35
transform : $.name = "ResourceIdentityTypeForCommonTypes"
36
36
- from : swagger-document
37
37
where : $.definitions.ManagedClusterAgentPoolProfileProperties.properties.orchestratorVersion
38
- transform : $["description"] = $["description"].replaceAll("<" , "(");
38
+ transform : $["description"] = $["description"].replace(/</g , "(");
39
39
- from : swagger-document
40
40
where : $.definitions.ManagedClusterAgentPoolProfileProperties.properties.orchestratorVersion
41
- transform : $["description"] = $["description"].replaceAll(">" , ")");
41
+ transform : $["description"] = $["description"].replace(/>/g , ")");
42
42
- from : swagger-document
43
43
where : $.definitions.ManagedClusterAgentPoolProfileProperties.properties.currentOrchestratorVersion
44
- transform : $["description"] = $["description"].replaceAll("<" , "(");
44
+ transform : $["description"] = $["description"].replace(/</g , "(");
45
45
- from : swagger-document
46
46
where : $.definitions.ManagedClusterAgentPoolProfileProperties.properties.currentOrchestratorVersion
47
- transform : $["description"] = $["description"].replaceAll(">" , ")");
47
+ transform : $["description"] = $["description"].replace(/>/g , ")");
48
48
- from : swagger-document
49
49
where : $.definitions.ManagedClusterProperties.properties.kubernetesVersion
50
- transform : $["description"] = $["description"].replaceAll("<" , "(");
50
+ transform : $["description"] = $["description"].replace(/</g , "(");
51
51
- from : swagger-document
52
52
where : $.definitions.ManagedClusterProperties.properties.kubernetesVersion
53
- transform : $["description"] = $["description"].replaceAll(">" , ")");
53
+ transform : $["description"] = $["description"].replace(/>/g , ")");
54
54
- from : swagger-document
55
55
where : $.definitions.ManagedClusterProperties.properties.currentKubernetesVersion
56
- transform : $["description"] = $["description"].replaceAll("<" , "(");
56
+ transform : $["description"] = $["description"].replace(/</g , "(");
57
57
- from : swagger-document
58
58
where : $.definitions.ManagedClusterProperties.properties.currentKubernetesVersion
59
- transform : $["description"] = $["description"].replaceAll(">" , ")");
59
+ transform : $["description"] = $["description"].replace(/>/g , ")");
60
60
61
61
output-folder : Generated
62
62
namespace : Microsoft.Azure.Management.ContainerService
0 commit comments