-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathMinikubeIpOptions.Generated.cs
More file actions
29 lines (24 loc) · 844 Bytes
/
MinikubeIpOptions.Generated.cs
File metadata and controls
29 lines (24 loc) · 844 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>
/// Retrieves the IP address of the specified node, and writes it to STDOUT.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("ip")]
public record MinikubeIpOptions : MinikubeOptions
{
/// <summary>
/// The node to get IP. Defaults to the primary control plane.
/// </summary>
[CliOption("--node", ShortForm = "-n", Format = OptionFormat.EqualsSeparated)]
public string? Node { get; set; }
}