-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathGcloudComputeCompositeHealthChecksGetHealthOptions.Generated.cs
More file actions
32 lines (27 loc) · 1.14 KB
/
GcloudComputeCompositeHealthChecksGetHealthOptions.Generated.cs
File metadata and controls
32 lines (27 loc) · 1.14 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
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Source: https://cloud.google.com/sdk/gcloud/reference/compute/composite-health-checks/get-health
// Do not edit this file manually.
// </auto-generated>
#nullable enable
using System.CodeDom.Compiler;
using System.Diagnostics.CodeAnalysis;
using ModularPipelines.Attributes;
using ModularPipelines.Google.Options;
namespace ModularPipelines.Google.Options;
/// <summary>
/// get health status of a composite health check
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("compute", "composite-health-checks", "get-health")]
public record GcloudComputeCompositeHealthChecksGetHealthOptions(
[property: CliArgument(0, Placement = ArgumentPlacement.BeforeOptions)] string CompositeHealthCheck
) : GcloudOptions
{
/// <summary>
/// Region of the composite health check to operate on. Overrides the default compute/region property value for this command invocation.
/// </summary>
[CliOption("--region", Format = OptionFormat.EqualsSeparated)]
public string? Region { get; set; }
}