-
Notifications
You must be signed in to change notification settings - Fork 3
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 #53 from pulumiverse/upgrade-terraform-provider-cp…
…ln-to-v1.1.36-80162023 Upgrade terraform-provider-cpln to v1.1.36
- Loading branch information
Showing
53 changed files
with
6,319 additions
and
756 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretAwsArgs : global::Pulumi.InvokeArgs | ||
{ | ||
[Input("accessKey", required: true)] | ||
private string? _accessKey; | ||
public string? AccessKey | ||
{ | ||
get => _accessKey; | ||
set => _accessKey = value; | ||
} | ||
|
||
[Input("externalId")] | ||
public string? ExternalId { get; set; } | ||
|
||
[Input("roleArn")] | ||
public string? RoleArn { get; set; } | ||
|
||
[Input("secretKey", required: true)] | ||
private string? _secretKey; | ||
public string? SecretKey | ||
{ | ||
get => _secretKey; | ||
set => _secretKey = value; | ||
} | ||
|
||
public GetSecretAwsArgs() | ||
{ | ||
} | ||
public static new GetSecretAwsArgs Empty => new GetSecretAwsArgs(); | ||
} | ||
} |
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,51 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretAwsInputArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("accessKey", required: true)] | ||
private Input<string>? _accessKey; | ||
public Input<string>? AccessKey | ||
{ | ||
get => _accessKey; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_accessKey = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
[Input("externalId")] | ||
public Input<string>? ExternalId { get; set; } | ||
|
||
[Input("roleArn")] | ||
public Input<string>? RoleArn { get; set; } | ||
|
||
[Input("secretKey", required: true)] | ||
private Input<string>? _secretKey; | ||
public Input<string>? SecretKey | ||
{ | ||
get => _secretKey; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_secretKey = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
public GetSecretAwsInputArgs() | ||
{ | ||
} | ||
public static new GetSecretAwsInputArgs Empty => new GetSecretAwsInputArgs(); | ||
} | ||
} |
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,37 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretAzureConnectorArgs : global::Pulumi.InvokeArgs | ||
{ | ||
[Input("code", required: true)] | ||
private string? _code; | ||
public string? Code | ||
{ | ||
get => _code; | ||
set => _code = value; | ||
} | ||
|
||
[Input("url", required: true)] | ||
private string? _url; | ||
public string? Url | ||
{ | ||
get => _url; | ||
set => _url = value; | ||
} | ||
|
||
public GetSecretAzureConnectorArgs() | ||
{ | ||
} | ||
public static new GetSecretAzureConnectorArgs Empty => new GetSecretAzureConnectorArgs(); | ||
} | ||
} |
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,45 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretAzureConnectorInputArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("code", required: true)] | ||
private Input<string>? _code; | ||
public Input<string>? Code | ||
{ | ||
get => _code; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_code = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
[Input("url", required: true)] | ||
private Input<string>? _url; | ||
public Input<string>? Url | ||
{ | ||
get => _url; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_url = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
public GetSecretAzureConnectorInputArgs() | ||
{ | ||
} | ||
public static new GetSecretAzureConnectorInputArgs Empty => new GetSecretAzureConnectorInputArgs(); | ||
} | ||
} |
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,46 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretEcrArgs : global::Pulumi.InvokeArgs | ||
{ | ||
[Input("accessKey", required: true)] | ||
public string AccessKey { get; set; } = null!; | ||
|
||
[Input("externalId")] | ||
public string? ExternalId { get; set; } | ||
|
||
[Input("repos", required: true)] | ||
private List<string>? _repos; | ||
public List<string> Repos | ||
{ | ||
get => _repos ?? (_repos = new List<string>()); | ||
set => _repos = value; | ||
} | ||
|
||
[Input("roleArn")] | ||
public string? RoleArn { get; set; } | ||
|
||
[Input("secretKey", required: true)] | ||
private string? _secretKey; | ||
public string? SecretKey | ||
{ | ||
get => _secretKey; | ||
set => _secretKey = value; | ||
} | ||
|
||
public GetSecretEcrArgs() | ||
{ | ||
} | ||
public static new GetSecretEcrArgs Empty => new GetSecretEcrArgs(); | ||
} | ||
} |
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,50 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretEcrInputArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("accessKey", required: true)] | ||
public Input<string> AccessKey { get; set; } = null!; | ||
|
||
[Input("externalId")] | ||
public Input<string>? ExternalId { get; set; } | ||
|
||
[Input("repos", required: true)] | ||
private InputList<string>? _repos; | ||
public InputList<string> Repos | ||
{ | ||
get => _repos ?? (_repos = new InputList<string>()); | ||
set => _repos = value; | ||
} | ||
|
||
[Input("roleArn")] | ||
public Input<string>? RoleArn { get; set; } | ||
|
||
[Input("secretKey", required: true)] | ||
private Input<string>? _secretKey; | ||
public Input<string>? SecretKey | ||
{ | ||
get => _secretKey; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_secretKey = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
public GetSecretEcrInputArgs() | ||
{ | ||
} | ||
public static new GetSecretEcrInputArgs Empty => new GetSecretEcrInputArgs(); | ||
} | ||
} |
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,40 @@ | ||
// *** 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 Pulumiverse.Cpln.Inputs | ||
{ | ||
|
||
public sealed class GetSecretKeypairArgs : global::Pulumi.InvokeArgs | ||
{ | ||
[Input("passphrase")] | ||
private string? _passphrase; | ||
public string? Passphrase | ||
{ | ||
get => _passphrase; | ||
set => _passphrase = value; | ||
} | ||
|
||
[Input("publicKey")] | ||
public string? PublicKey { get; set; } | ||
|
||
[Input("secretKey", required: true)] | ||
private string? _secretKey; | ||
public string? SecretKey | ||
{ | ||
get => _secretKey; | ||
set => _secretKey = value; | ||
} | ||
|
||
public GetSecretKeypairArgs() | ||
{ | ||
} | ||
public static new GetSecretKeypairArgs Empty => new GetSecretKeypairArgs(); | ||
} | ||
} |
Oops, something went wrong.