|
| 1 | +// <auto-generated> |
| 2 | +// This file was generated by ModularPipelines.OptionsGenerator. |
| 3 | +// Do not edit this file manually. |
| 4 | +// </auto-generated> |
| 5 | + |
| 6 | +using System.CodeDom.Compiler; |
| 7 | +using System.Diagnostics.CodeAnalysis; |
| 8 | +using ModularPipelines.Attributes; |
| 9 | +using ModularPipelines.Pulumi.Options; |
| 10 | + |
| 11 | +namespace ModularPipelines.Pulumi.Options; |
| 12 | + |
| 13 | +/// <summary> |
| 14 | +/// Install required policy packs for a stack. |
| 15 | +/// </summary> |
| 16 | +[GeneratedCode("ModularPipelines.OptionsGenerator", "")] |
| 17 | +[ExcludeFromCodeCoverage] |
| 18 | +[CliSubCommand("policy", "install")] |
| 19 | +public record PulumiPolicyInstallOptions : PulumiOptions |
| 20 | +{ |
| 21 | + /// <summary> |
| 22 | + /// help for install |
| 23 | + /// </summary> |
| 24 | + [CliFlag("--help", ShortForm = "-h")] |
| 25 | + public bool? Help { get; set; } |
| 26 | + |
| 27 | + /// <summary> |
| 28 | + /// The name of the stack to operate on. Defaults to the current stack |
| 29 | + /// </summary> |
| 30 | + [CliOption("--stack", ShortForm = "-s", Format = OptionFormat.EqualsSeparated)] |
| 31 | + public string? Stack { get; set; } |
| 32 | + |
| 33 | + /// <summary> |
| 34 | + /// Colorize output. Choices are: always, never, raw, auto (default "auto") |
| 35 | + /// </summary> |
| 36 | + [CliOption("--color", Format = OptionFormat.EqualsSeparated)] |
| 37 | + public string? Color { get; set; } |
| 38 | + |
| 39 | + /// <summary> |
| 40 | + /// Run pulumi as if it had been started in another directory |
| 41 | + /// </summary> |
| 42 | + [CliOption("--cwd", ShortForm = "-C", Format = OptionFormat.EqualsSeparated)] |
| 43 | + public string? Cwd { get; set; } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Disable integrity checking of checkpoint files |
| 47 | + /// </summary> |
| 48 | + [CliFlag("--disable-integrity-checking")] |
| 49 | + public bool? DisableIntegrityChecking { get; set; } |
| 50 | + |
| 51 | + /// <summary> |
| 52 | + /// Enable emojis in the output |
| 53 | + /// </summary> |
| 54 | + [CliFlag("--emoji", ShortForm = "-e")] |
| 55 | + public bool? Emoji { get; set; } |
| 56 | + |
| 57 | + /// <summary> |
| 58 | + /// Show fully-qualified stack names |
| 59 | + /// </summary> |
| 60 | + [CliFlag("--fully-qualify-stack-names", ShortForm = "-Q")] |
| 61 | + public bool? FullyQualifyStackNames { get; set; } |
| 62 | + |
| 63 | + /// <summary> |
| 64 | + /// Flow log settings to child processes (like plugins) |
| 65 | + /// </summary> |
| 66 | + [CliFlag("--logflow")] |
| 67 | + public bool? Logflow { get; set; } |
| 68 | + |
| 69 | + /// <summary> |
| 70 | + /// Log to stderr instead of to files |
| 71 | + /// </summary> |
| 72 | + [CliFlag("--logtostderr")] |
| 73 | + public bool? Logtostderr { get; set; } |
| 74 | + |
| 75 | + /// <summary> |
| 76 | + /// Enable more precise (and expensive) memory allocation profiles by setting runtime.MemProfileRate |
| 77 | + /// </summary> |
| 78 | + [CliOption("--memprofilerate", Format = OptionFormat.EqualsSeparated)] |
| 79 | + public int? Memprofilerate { get; set; } |
| 80 | + |
| 81 | + /// <summary> |
| 82 | + /// Disable interactive mode for all commands |
| 83 | + /// </summary> |
| 84 | + [CliFlag("--non-interactive")] |
| 85 | + public bool? NonInteractive { get; set; } |
| 86 | + |
| 87 | + /// <summary> |
| 88 | + /// Emit CPU and memory profiles and an execution trace to '[filename].[pid].{cpu,mem,trace}', respectively |
| 89 | + /// </summary> |
| 90 | + [CliOption("--profiling", Format = OptionFormat.EqualsSeparated)] |
| 91 | + public string? Profiling { get; set; } |
| 92 | + |
| 93 | + /// <summary> |
| 94 | + /// Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file |
| 95 | + /// </summary> |
| 96 | + [CliOption("--tracing", Format = OptionFormat.EqualsSeparated)] |
| 97 | + public string? Tracing { get; set; } |
| 98 | + |
| 99 | + /// <summary> |
| 100 | + /// Enable verbose logging (e.g., v=3); anything >3 is very verbose |
| 101 | + /// </summary> |
| 102 | + [CliOption("--verbose", ShortForm = "-v", Format = OptionFormat.EqualsSeparated)] |
| 103 | + public int? Verbose { get; set; } |
| 104 | + |
| 105 | +} |
0 commit comments