Skip to content

Commit

Permalink
make build_sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
pulumi-bot committed Oct 10, 2024
1 parent 6ca6fde commit 745a234
Show file tree
Hide file tree
Showing 48 changed files with 5,971 additions and 719 deletions.
561 changes: 561 additions & 0 deletions sdk/dotnet/GetSecret.cs

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions sdk/dotnet/Inputs/GetSecretAws.cs
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();
}
}
51 changes: 51 additions & 0 deletions sdk/dotnet/Inputs/GetSecretAwsArgs.cs
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();
}
}
37 changes: 37 additions & 0 deletions sdk/dotnet/Inputs/GetSecretAzureConnector.cs
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();
}
}
45 changes: 45 additions & 0 deletions sdk/dotnet/Inputs/GetSecretAzureConnectorArgs.cs
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();
}
}
46 changes: 46 additions & 0 deletions sdk/dotnet/Inputs/GetSecretEcr.cs
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();
}
}
50 changes: 50 additions & 0 deletions sdk/dotnet/Inputs/GetSecretEcrArgs.cs
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();
}
}
40 changes: 40 additions & 0 deletions sdk/dotnet/Inputs/GetSecretKeypair.cs
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();
}
}
48 changes: 48 additions & 0 deletions sdk/dotnet/Inputs/GetSecretKeypairArgs.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// *** 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 GetSecretKeypairInputArgs : global::Pulumi.ResourceArgs
{
[Input("passphrase")]
private Input<string>? _passphrase;
public Input<string>? Passphrase
{
get => _passphrase;
set
{
var emptySecret = Output.CreateSecret(0);
_passphrase = Output.Tuple<Input<string>?, int>(value, emptySecret).Apply(t => t.Item1);
}
}

[Input("publicKey")]
public Input<string>? PublicKey { 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 GetSecretKeypairInputArgs()
{
}
public static new GetSecretKeypairInputArgs Empty => new GetSecretKeypairInputArgs();
}
}
Loading

0 comments on commit 745a234

Please sign in to comment.