-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBuildahLogoutOptions.Generated.cs
More file actions
47 lines (39 loc) · 1.38 KB
/
BuildahLogoutOptions.Generated.cs
File metadata and controls
47 lines (39 loc) · 1.38 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>
/// Remove the cached username and password for the registry.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("logout")]
public record BuildahLogoutOptions : BuildahOptions
{
/// <summary>
/// Remove the cached credentials for all registries in the auth file
/// </summary>
[CliFlag("--all", ShortForm = "-a")]
public bool? All { 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>
/// path of a Docker-compatible config file to update instead
/// </summary>
[CliOption("--compat-auth-file", Format = OptionFormat.EqualsSeparated)]
public string? CompatAuthFile { get; set; }
/// <summary>
/// help for logout
/// </summary>
[CliFlag("--help", ShortForm = "-h")]
public bool? Help { get; set; }
}