-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGcloudAccessContextManagerAuthorizedOrgsListOptions.Generated.cs
More file actions
30 lines (25 loc) · 1.21 KB
/
GcloudAccessContextManagerAuthorizedOrgsListOptions.Generated.cs
File metadata and controls
30 lines (25 loc) · 1.21 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/authorized-orgs/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 authorized organizations descriptions
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("access-context-manager", "authorized-orgs", "list")]
public record GcloudAccessContextManagerAuthorizedOrgsListOptions : GcloudOptions
{
/// <summary>
/// ID of the policy or fully qualified identifier for the policy. To set the policy attribute: ◆ provide the argument --policy on the command line; ◆ set the property access_context_manager/policy; ◆ automatically, if the current account belongs to an organization with exactly one access policy..
/// </summary>
[CliOption("--policy", Format = OptionFormat.EqualsSeparated)]
public string? Policy { get; set; }
}