generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from tencentcloudstack/feat/sync_provider_v1.8…
…1.144 sync terraform provider v1.81.144
- Loading branch information
Showing
87 changed files
with
10,391 additions
and
150 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
sdk/dotnet/Tencentcloud/Clb/Inputs/ListenerRuleOauthArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace TencentCloudIAC.PulumiPackage.Tencentcloud.Clb.Inputs | ||
{ | ||
|
||
public sealed class ListenerRuleOauthArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Enable or disable authentication. True: Enabled; False: Disabled. | ||
/// </summary> | ||
[Input("oauthEnable")] | ||
public Input<bool>? OauthEnable { get; set; } | ||
|
||
/// <summary> | ||
/// After all IAPs fail, the request is rejected or released. BYPASS: PASS; REJECT: Reject. | ||
/// </summary> | ||
[Input("oauthFailureStatus")] | ||
public Input<string>? OauthFailureStatus { get; set; } | ||
|
||
public ListenerRuleOauthArgs() | ||
{ | ||
} | ||
public static new ListenerRuleOauthArgs Empty => new ListenerRuleOauthArgs(); | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
sdk/dotnet/Tencentcloud/Clb/Inputs/ListenerRuleOauthGetArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace TencentCloudIAC.PulumiPackage.Tencentcloud.Clb.Inputs | ||
{ | ||
|
||
public sealed class ListenerRuleOauthGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Enable or disable authentication. True: Enabled; False: Disabled. | ||
/// </summary> | ||
[Input("oauthEnable")] | ||
public Input<bool>? OauthEnable { get; set; } | ||
|
||
/// <summary> | ||
/// After all IAPs fail, the request is rejected or released. BYPASS: PASS; REJECT: Reject. | ||
/// </summary> | ||
[Input("oauthFailureStatus")] | ||
public Input<string>? OauthFailureStatus { get; set; } | ||
|
||
public ListenerRuleOauthGetArgs() | ||
{ | ||
} | ||
public static new ListenerRuleOauthGetArgs Empty => new ListenerRuleOauthGetArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.