-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathKindBuildOptions.Generated.cs
More file actions
41 lines (34 loc) · 1.05 KB
/
KindBuildOptions.Generated.cs
File metadata and controls
41 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Do not edit this file manually.
// </auto-generated>
#nullable enable
using System.CodeDom.Compiler;
using System.Diagnostics.CodeAnalysis;
using ModularPipelines.Attributes;
using ModularPipelines.Kind.Options;
namespace ModularPipelines.Kind.Options;
/// <summary>
/// Build one of [node-image]
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("build")]
public record KindBuildOptions : KindOptions
{
/// <summary>
/// help for build
/// </summary>
[CliFlag("--help", ShortForm = "-h")]
public bool? Help { get; set; }
/// <summary>
/// silence all stderr output
/// </summary>
[CliFlag("--quiet", ShortForm = "-q")]
public bool? Quiet { get; set; }
/// <summary>
/// info log verbosity, higher value produces more output
/// </summary>
[CliOption("--verbosity", ShortForm = "-v", Format = OptionFormat.EqualsSeparated)]
public int? Verbosity { get; set; }
}