-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeAddonsImagesOptions.Generated.cs
More file actions
29 lines (24 loc) · 906 Bytes
/
MinikubeAddonsImagesOptions.Generated.cs
File metadata and controls
29 lines (24 loc) · 906 Bytes
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
// <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.Minikube.Options;
namespace ModularPipelines.Minikube.Options;
/// <summary>
/// List image names the addon w/ADDON_NAME used. For a list of available addons use: minikube addons list
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("addons", "images")]
public record MinikubeAddonsImagesOptions : MinikubeOptions
{
/// <summary>
/// minikube addons images ADDON_NAME --output OUTPUT. table, json
/// </summary>
[CliOption("--output", ShortForm = "-o", Format = OptionFormat.EqualsSeparated)]
public string? Output { get; set; }
}