-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBuildahManifestCreateOptions.Generated.cs
More file actions
47 lines (39 loc) · 1.33 KB
/
BuildahManifestCreateOptions.Generated.cs
File metadata and controls
47 lines (39 loc) · 1.33 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
// <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>
/// Creates manifest lists and image indexes.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("manifest", "create")]
public record BuildahManifestCreateOptions : BuildahOptions
{
/// <summary>
/// add all of the lists' images if the images to add are lists
/// </summary>
[CliFlag("--all")]
public bool? All { get; set; }
/// <summary>
/// modify an existing list if one with the desired name already exists
/// </summary>
[CliFlag("--amend")]
public bool? Amend { get; set; }
/// <summary>
/// help for create
/// </summary>
[CliFlag("--help", ShortForm = "-h")]
public bool? Help { 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; }
}