File tree Expand file tree Collapse file tree 2 files changed +124
-29
lines changed
src/ServiceManagement/Compute/Commands.ServiceManagement.Preview Expand file tree Collapse file tree 2 files changed +124
-29
lines changed Original file line number Diff line number Diff line change @@ -2253,7 +2253,18 @@ else
2253
2253
$dynamic_param_method_code += $outputs [-4 ];
2254
2254
$invoke_cmdlet_method_code += $outputs [-3 ];
2255
2255
$parameter_cmdlet_method_code += $outputs [-2 ];
2256
- $cliCommandCodeMainBody += $outputs [-1 ];
2256
+
2257
+ # TODO : Comment Out RDFE Deployment APIs
2258
+ if ($opShortName -eq ' Deployment' -and $client_library_namespace -like ' *.WindowsAzure.*' )
2259
+ {
2260
+ $cliCommandCodeMainBody += " /*" + $NEW_LINE ;
2261
+ $cliCommandCodeMainBody += $outputs [-1 ].Replace(" /*" , " " ).Replace(" */" , " " );
2262
+ $cliCommandCodeMainBody += $NEW_LINE + " */" + $NEW_LINE ;
2263
+ }
2264
+ else
2265
+ {
2266
+ $cliCommandCodeMainBody += $outputs [-1 ];
2267
+ }
2257
2268
}
2258
2269
2259
2270
$returnTypeResult = Process - ReturnType - rt $mt.ReturnType.GenericTypeArguments [0 ] - allrt $all_return_type_names ;
You can’t perform that action at this time.
0 commit comments