-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPodmanComposeAttachOptions.Generated.cs
More file actions
56 lines (46 loc) · 1.59 KB
/
PodmanComposeAttachOptions.Generated.cs
File metadata and controls
56 lines (46 loc) · 1.59 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
// <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 local standard input, output, and error streams to a service's running container
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("compose", "attach")]
public record PodmanComposeAttachOptions : PodmanOptions
{
/// <summary>
/// Override the key sequence for detaching from a container.
/// </summary>
[CliOption("--detach-keys", Format = OptionFormat.EqualsSeparated)]
public string? DetachKeys { get; set; }
/// <summary>
/// Execute command in dry run mode
/// </summary>
[CliFlag("--dry-run")]
public bool? DryRun { get; set; }
/// <summary>
/// index of the container if service has multiple replicas.
/// </summary>
[CliOption("--index", Format = OptionFormat.EqualsSeparated)]
public int? Index { get; set; }
/// <summary>
/// Do not attach STDIN
/// </summary>
[CliFlag("--no-stdin")]
public bool? NoStdin { get; set; }
/// <summary>
/// Proxy all received signals to the process (default true)
/// </summary>
[CliFlag("--sig-proxy")]
public bool? SigProxy { get; set; }
[CliArgument(0, Placement = ArgumentPlacement.BeforeOptions)]
public string? Options { get; set; }
}