-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBuildahManifestAddOptions.Generated.cs
More file actions
101 lines (84 loc) · 3.17 KB
/
BuildahManifestAddOptions.Generated.cs
File metadata and controls
101 lines (84 loc) · 3.17 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// <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>
/// Adds an image to a manifest list or image index.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("manifest", "add")]
public record BuildahManifestAddOptions : BuildahOptions
{
/// <summary>
/// add all of the list's images if the image is a list
/// </summary>
[CliFlag("--all")]
public bool? All { get; set; }
/// <summary>
/// set an annotation for the specified image
/// </summary>
[CliOption("--annotation", Format = OptionFormat.EqualsSeparated)]
public string? Annotation { get; set; }
/// <summary>
/// override the architecture of the specified image
/// </summary>
[CliOption("--arch", Format = OptionFormat.EqualsSeparated)]
public string? Arch { get; set; }
/// <summary>
/// path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override
/// </summary>
[CliOption("--authfile", Format = OptionFormat.EqualsSeparated)]
public string? Authfile { get; set; }
/// <summary>
/// use certificates at the specified path to access the registry
/// </summary>
[CliOption("--cert-dir", Format = OptionFormat.EqualsSeparated)]
public string? CertDir { get; set; }
/// <summary>
/// use [username[:password]] for accessing the registry
/// </summary>
[CliOption("--creds", Format = OptionFormat.EqualsSeparated)]
public string? Creds { get; set; }
/// <summary>
/// override the features of the specified image
/// </summary>
[CliOption("--features", Format = OptionFormat.EqualsSeparated)]
public string? Features { get; set; }
/// <summary>
/// help for add
/// </summary>
[CliFlag("--help", ShortForm = "-h")]
public bool? Help { get; set; }
/// <summary>
/// override the OS of the specified image
/// </summary>
[CliOption("--os", Format = OptionFormat.EqualsSeparated)]
public string? Os { get; set; }
/// <summary>
/// override the OS features of the specified image
/// </summary>
[CliOption("--os-features", Format = OptionFormat.EqualsSeparated)]
public string? OsFeatures { get; set; }
/// <summary>
/// override the OS version of the specified image
/// </summary>
[CliOption("--os-version", Format = OptionFormat.EqualsSeparated)]
public string? OsVersion { get; set; }
/// <summary>
/// require HTTPS and verify certificates when accessing the registry. TLS verification cannot be used when talking to an insecure registry. (default true)
/// </summary>
[CliFlag("--tls-verify")]
public bool? TlsVerify { get; set; }
/// <summary>
/// override the variant of the specified image
/// </summary>
[CliOption("--variant", Format = OptionFormat.EqualsSeparated)]
public string? Variant { get; set; }
}