-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPodmanAttachOptions.Generated.cs
More file actions
47 lines (39 loc) · 1.48 KB
/
PodmanAttachOptions.Generated.cs
File metadata and controls
47 lines (39 loc) · 1.48 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.Podman.Options;
namespace ModularPipelines.Podman.Options;
/// <summary>
/// Attach to a running container
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("attach")]
public record PodmanAttachOptions : PodmanOptions
{
/// <summary>
/// Select the key sequence for detaching a container. Format is a single character [a-Z] or a comma separated sequence of `ctrl-<value>`, where `<value>` is one of: `a-z`, `@`, `^`, `[`, `\`, `]`, `^` or `_` (default "ctrl-p,ctrl-q")
/// </summary>
[CliOption("--detach-keys", Format = OptionFormat.EqualsSeparated)]
public string? DetachKeys { get; set; }
/// <summary>
/// Act on the latest container podman is aware of Not supported with the "--remote" flag
/// </summary>
[CliFlag("--latest", ShortForm = "-l")]
public bool? Latest { get; set; }
/// <summary>
/// Do not attach STDIN. The default is false
/// </summary>
[CliFlag("--no-stdin")]
public bool? NoStdin { get; set; }
/// <summary>
/// Proxy received signals to the process (default true)
/// </summary>
[CliFlag("--sig-proxy")]
public bool? SigProxy { get; set; }
}