You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ArgGroup(heading = "%nConnection Options:%n", order = 100)
37
-
private@NullableCredsProvider$credsProvider;
38
-
39
-
publicstaticclassCredsProvider {
40
-
@ArgGroup(exclusive = false)
41
-
public@NullableConfigSpec$config;
42
-
43
-
@ArgGroup(exclusive = false)
44
-
public@NullableCredsSpec$creds;
45
-
}
46
-
47
-
publicstaticclassCredsSpec {
48
-
@Option(
49
-
names = { $Token.LONG },
50
-
description = "The astra token to use for this command. Use the @|code --token @file|@ syntax to read the token from a file, to avoid potential leaks.",
51
-
paramLabel = $Token.LABEL,
52
-
required = true
53
-
)
54
-
publicAstraToken$token;
55
-
56
-
@Option(
57
-
names = { $Env.LONG },
58
-
completionCandidates = AstraEnvCompletion.class,
59
-
description = "Override the target astra environment",
60
-
paramLabel = $Env.LABEL
61
-
)
62
-
privateOptional<AstraEnvironment> $env;
63
-
}
64
-
65
-
publicstaticclassConfigSpec {
66
-
@Option(
67
-
names = { $ConfigFile.LONG, $ConfigFile.SHORT },
68
-
description = { "The @|code .astrarc|@ file to use for this command", SHOW_CUSTOM_DEFAULT + "${cli.rc-file.path}" },
0 commit comments