-
Notifications
You must be signed in to change notification settings - Fork 20
Conversation
/azp run |
Azure Pipelines failed to run 1 pipeline(s). |
policy_name, | ||
no_wait=False): | ||
return sdk_no_wait(no_wait, client.begin_delete, | ||
resource_group_name=resource_group_name, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there may be some python formatting lint issue here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am sure this one will not cause the lint error. but please don't merge this PR for now
@@ -37,13 +38,13 @@ export function GenerateAzureCliCommands(model: CodeModelAz): string[] { | |||
output.push(" client_factory=" + cf_name + ")"); | |||
let groupinfos = model.CommandGroup_Name.split(' '); | |||
let extraInfo = ""; | |||
if(groupinfos.length == 2) { | |||
if(groupinfos.length == 2 && model.Extension_Mode == 'experimental') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add similar logic when Extension_Mode is preview.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought preview don't need to add this is_preview=True
at the end of the command?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If not added, it means GA.
factory_name, | ||
integration_runtime_name, | ||
no_wait=False): | ||
return sdk_no_wait(no_wait, client.begin_stop, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to have better format? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what kind of format does CLI need?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed, please review again.
…st.az into extension-mode-configurable
This is to solve
4.1 if the operation already has parameter 'name', main resource option shouldn't be applied.
4.2 change wait_comamnd to the custom_wait_command since python sdk get operation is not always consistent with the show command parameter.
4.3 add parameter description in param.py for wait command.
4.4 allow change subgroup in the command.