-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBuildahSourceCreateOptions.Generated.cs
More file actions
41 lines (34 loc) · 1.13 KB
/
BuildahSourceCreateOptions.Generated.cs
File metadata and controls
41 lines (34 loc) · 1.13 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.Buildah.Options;
namespace ModularPipelines.Buildah.Options;
/// <summary>
/// Create and initialize a source image. A source image is an OCI artifact; an OCI image with a custom config media type.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("source", "create")]
public record BuildahSourceCreateOptions : BuildahOptions
{
/// <summary>
/// set the author
/// </summary>
[CliOption("--author", Format = OptionFormat.EqualsSeparated)]
public string? Author { get; set; }
/// <summary>
/// help for create
/// </summary>
[CliFlag("--help", ShortForm = "-h")]
public bool? Help { get; set; }
/// <summary>
/// set the "created" time stamp (default true)
/// </summary>
[CliFlag("--time-stamp")]
public bool? TimeStamp { get; set; }
}