-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathGcloudAccessContextManagerCloudBindingsListOptions.Generated.cs
More file actions
30 lines (25 loc) · 1.15 KB
/
GcloudAccessContextManagerCloudBindingsListOptions.Generated.cs
File metadata and controls
30 lines (25 loc) · 1.15 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
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Source: https://cloud.google.com/sdk/gcloud/reference/access-context-manager/cloud-bindings/list
// 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>
/// list cloud access bindings under an organization
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("access-context-manager", "cloud-bindings", "list")]
public record GcloudAccessContextManagerCloudBindingsListOptions : GcloudOptions
{
/// <summary>
/// ID of the organization or fully qualified identifier for the organization. To set the organization attribute: ◆ provide the argument --organization on the command line; ◆ set the property access_context_manager/organization.
/// </summary>
[CliOption("--organization", Format = OptionFormat.EqualsSeparated)]
public string? Organization { get; set; }
}