-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMinikubeServiceOptions.Generated.cs
More file actions
59 lines (49 loc) · 1.93 KB
/
MinikubeServiceOptions.Generated.cs
File metadata and controls
59 lines (49 loc) · 1.93 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
57
58
59
// <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>
/// Returns the Kubernetes URL(s) for service(s) in your local cluster. In the case of multiple URLs they will be printed one at a time.
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("service")]
public record MinikubeServiceOptions : MinikubeOptions
{
/// <summary>
/// Forwards all services in a namespace (defaults to "false")
/// </summary>
[CliOption("--all", Format = OptionFormat.EqualsSeparated)]
public string? All { get; set; }
/// <summary>
/// Open the service URL with https instead of http (defaults to "false")
/// </summary>
[CliOption("--https", Format = OptionFormat.EqualsSeparated)]
public string? Https { get; set; }
/// <summary>
/// The initial time interval for each check that wait performs in seconds
/// </summary>
[CliOption("--interval", Format = OptionFormat.EqualsSeparated)]
public string? Interval { get; set; }
/// <summary>
/// The service namespace
/// </summary>
[CliOption("--namespace", ShortForm = "-n", Format = OptionFormat.EqualsSeparated)]
public string? Namespace { get; set; }
/// <summary>
/// Display the Kubernetes service URL in the CLI instead of opening it in the default browser
/// </summary>
[CliOption("--url", Format = OptionFormat.EqualsSeparated)]
public string? Url { get; set; }
/// <summary>
/// Amount of time to wait for a service in seconds
/// </summary>
[CliOption("--wait", Format = OptionFormat.EqualsSeparated)]
public string? Wait { get; set; }
}