-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeAddonsListOptions.Generated.cs
More file actions
35 lines (29 loc) · 1.1 KB
/
MinikubeAddonsListOptions.Generated.cs
File metadata and controls
35 lines (29 loc) · 1.1 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
// <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>
/// Lists all available minikube addons as well as their current statuses (enabled/disabled)
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("addons", "list")]
public record MinikubeAddonsListOptions : MinikubeOptions
{
/// <summary>
/// If true, print web links to addons' documentation if using --output=list (default).
/// </summary>
[CliOption("--docs", ShortForm = "-d", Format = OptionFormat.EqualsSeparated)]
public string? Docs { get; set; }
/// <summary>
/// minikube addons list --output OUTPUT. json, list
/// </summary>
[CliOption("--output", ShortForm = "-o", Format = OptionFormat.EqualsSeparated)]
public string? Output { get; set; }
}