We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dfdb1d commit e8c011aCopy full SHA for e8c011a
specification/compute/resource-manager/readme.python.md
@@ -36,6 +36,23 @@ azure-arm: true
36
license-header: MICROSOFT_MIT_NO_VERSION
37
package-name: azure-mgmt-compute
38
no-namespace-folders: true
39
+
40
+directive:
41
+ # dynamically add a DummyOrchestrationServiceName value to the enum
42
+ - from: compute.json
43
+ where: $..enum
44
+ transform: >-
45
+ if( $.length === 1 && $[0] === "AutomaticRepairs") {
46
+ $.push('DummyOrchestrationServiceName');
47
+ }
48
+ return $;
49
50
+ - from: source-file-python
51
+ where: $
52
53
+ return $.
54
+ replace(/, 'DummyOrchestrationServiceName'/g,'').
55
+ replace(/dummy_orchestration_service_name = "DummyOrchestrationServiceName"/g,'');
56
```
57
58
### Python multi-api
0 commit comments