-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPodmanImageListOptions.Generated.cs
More file actions
80 lines (66 loc) · 2.2 KB
/
PodmanImageListOptions.Generated.cs
File metadata and controls
80 lines (66 loc) · 2.2 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
// <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.Podman.Options;
namespace ModularPipelines.Podman.Options;
/// <summary>
/// List images in local storage
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("image", "list")]
public record PodmanImageListOptions : PodmanOptions
{
/// <summary>
/// Show all images (default hides intermediate images)
/// </summary>
[CliFlag("--all", ShortForm = "-a")]
public bool? All { get; set; }
/// <summary>
/// Show digests
/// </summary>
[CliFlag("--digests")]
public bool? Digests { get; set; }
/// <summary>
/// Filter output based on conditions provided (default [])
/// </summary>
[CliOption("--filter", ShortForm = "-f", Format = OptionFormat.EqualsSeparated, AllowMultiple = true)]
public IEnumerable<string>? Filter { get; set; }
/// <summary>
/// Change the output format to JSON or a Go template
/// </summary>
[CliOption("--format", Format = OptionFormat.EqualsSeparated)]
public string? Format { get; set; }
/// <summary>
/// Display the image name history
/// </summary>
[CliFlag("--history")]
public bool? History { get; set; }
/// <summary>
/// Do not truncate output
/// </summary>
[CliFlag("--no-trunc")]
public bool? NoTrunc { get; set; }
/// <summary>
/// Do not print column headings
/// </summary>
[CliFlag("--noheading", ShortForm = "-n")]
public bool? Noheading { get; set; }
/// <summary>
/// Display only image IDs
/// </summary>
[CliFlag("--quiet", ShortForm = "-q")]
public bool? Quiet { get; set; }
/// <summary>
/// Sort by created, id, repository, size, tag (default "created")
/// </summary>
[CliOption("--sort", Format = OptionFormat.EqualsSeparated)]
public string? Sort { get; set; }
[CliArgument(0, Placement = ArgumentPlacement.BeforeOptions)]
public string? Image { get; set; }
}