22 references to SecretCommandStrings
aspire (22)
Commands\SecretCommand.cs (1)
33
: base("secret",
SecretCommandStrings
.Description, features, updateNotifier, executionContext, interactionService, telemetry)
Commands\SecretDeleteCommand.cs (5)
23
Description =
SecretCommandStrings
.KeyDeleteArgumentDescription
35
: base("delete",
SecretCommandStrings
.DeleteDescription, features, updateNotifier, executionContext, interactionService, telemetry)
52
InteractionService.DisplayError(
SecretCommandStrings
.CouldNotFindAppHost);
58
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
SecretCommandStrings
.SecretNotFound, key.EscapeMarkup()));
63
InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture,
SecretCommandStrings
.SecretDeleteSuccess, key));
Commands\SecretGetCommand.cs (4)
23
Description =
SecretCommandStrings
.KeyRetrieveArgumentDescription
35
: base("get",
SecretCommandStrings
.GetDescription, features, updateNotifier, executionContext, interactionService, telemetry)
52
InteractionService.DisplayError(
SecretCommandStrings
.CouldNotFindAppHost);
59
InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture,
SecretCommandStrings
.SecretNotFound, key.EscapeMarkup()));
Commands\SecretListCommand.cs (6)
24
Description =
SecretCommandStrings
.FormatOptionDescription
36
: base("list",
SecretCommandStrings
.ListDescription, features, updateNotifier, executionContext, interactionService, telemetry)
52
InteractionService.DisplayError(
SecretCommandStrings
.CouldNotFindAppHost);
73
InteractionService.DisplayMessage(KnownEmojis.Information,
SecretCommandStrings
.NoSecretsConfigured);
78
table.AddBoldColumn(
SecretCommandStrings
.KeyColumnHeader, noWrap: true);
79
table.AddBoldColumn(
SecretCommandStrings
.ValueColumnHeader);
Commands\SecretSetCommand.cs (5)
22
Description =
SecretCommandStrings
.KeyArgumentDescription
27
Description =
SecretCommandStrings
.ValueArgumentDescription
39
: base("set",
SecretCommandStrings
.SetDescription, features, updateNotifier, executionContext, interactionService, telemetry)
60
InteractionService.DisplayError(
SecretCommandStrings
.CouldNotFindAppHost);
67
InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture,
SecretCommandStrings
.SecretSetSuccess, key));
Resources\SecretCommandStrings.Designer.cs (1)
8
private static readonly System.Resources.ResourceManager s_resourceManager = new("Aspire.Cli.Resources.SecretCommandStrings", typeof(
SecretCommandStrings
).Assembly);