-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPodmanComposePublishOptions.Generated.cs
More file actions
56 lines (46 loc) · 1.54 KB
/
PodmanComposePublishOptions.Generated.cs
File metadata and controls
56 lines (46 loc) · 1.54 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>
/// Publish compose application
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("compose", "publish")]
public record PodmanComposePublishOptions : PodmanOptions
{
/// <summary>
/// Execute command in dry run mode
/// </summary>
[CliFlag("--dry-run")]
public bool? DryRun { get; set; }
/// <summary>
/// OCI image/artifact specification version (automatically determined by default)
/// </summary>
[CliOption("--oci-version", Format = OptionFormat.EqualsSeparated)]
public string? OciVersion { get; set; }
/// <summary>
/// Pin image tags to digests
/// </summary>
[CliFlag("--resolve-image-digests")]
public bool? ResolveImageDigests { get; set; }
/// <summary>
/// Include environment variables in the published OCI artifact
/// </summary>
[CliFlag("--with-env")]
public bool? WithEnv { get; set; }
/// <summary>
/// Assume "yes" as answer to all prompts
/// </summary>
[CliFlag("--yes", ShortForm = "-y")]
public bool? Yes { get; set; }
[CliArgument(0, Placement = ArgumentPlacement.BeforeOptions)]
public string? Options { get; set; }
}