Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { type ContainerAppCreateContext } from "./ContainerAppCreateContext";
export class ContainerAppCreateStep<T extends ContainerAppCreateContext> extends AzureWizardExecuteStepWithActivityOutput<T> {
public priority: number = 620;
public stepName: string = 'containerAppCreateStep';
protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}"', context.newContainerAppName);
protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}".', context.newContainerAppName);
protected getOutputLogFail = (context: T) => localize('createContainerAppFail', 'Failed to create container app "{0}"', context.newContainerAppName);
protected getTreeItemLabel = (context: T) => localize('createContainerAppLabel', 'Create container app "{0}"', context.newContainerAppName);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class AddScaleRuleStep<T extends IAddScaleRuleContext> extends RevisionDr
await this.updateRevisionDraftWithTemplate(context);

const resourceName = getParentResourceFromItem(this.baseItem).name;
ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft)', context.newRuleType, context.newRuleName, resourceName));
ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft).', context.newRuleType, context.newRuleName, resourceName));
}

public shouldExecute(context: T): boolean {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class DeleteScaleRuleStep<T extends ScaleRuleContext> extends RevisionDra
await this.updateRevisionDraftWithTemplate(context);

const resourceName = getParentResourceFromItem(this.baseItem).name;
ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft)', context.scaleRule?.name, resourceName));
ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft).', context.scaleRule?.name, resourceName));
}

public shouldExecute(context: T): boolean {
Expand Down