generated from pulumi/pulumi-tf-provider-boilerplate
-
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.
Upgrade terraform-provider-confluent to v1.50.0 (#169)
* make tfgen * make build_sdks
- Loading branch information
Showing
57 changed files
with
3,538 additions
and
265 deletions.
There are no files selected for viewing
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
142 changes: 123 additions & 19 deletions
142
provider/cmd/pulumi-resource-confluentcloud/schema.json
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
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
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; | ||
|
||
namespace Pulumi.ConfluentCloud.Inputs | ||
{ | ||
|
||
public sealed class ClusterLinkLocalKafkaClusterArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The bootstrap endpoint of the remote Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`). | ||
/// </summary> | ||
[Input("bootstrapEndpoint")] | ||
public Input<string>? BootstrapEndpoint { get; set; } | ||
|
||
[Input("credentials")] | ||
private Input<Inputs.ClusterLinkLocalKafkaClusterCredentialsArgs>? _credentials; | ||
public Input<Inputs.ClusterLinkLocalKafkaClusterCredentialsArgs>? Credentials | ||
{ | ||
get => _credentials; | ||
set | ||
{ | ||
var emptySecret = Output.CreateSecret(0); | ||
_credentials = Output.Tuple<Input<Inputs.ClusterLinkLocalKafkaClusterCredentialsArgs>?, int>(value, emptySecret).Apply(t => t.Item1); | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// The ID of the remote Kafka cluster, for example, `lkc-abc123`. | ||
/// </summary> | ||
[Input("id", required: true)] | ||
public Input<string> Id { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The REST endpoint of the remote Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`). | ||
/// </summary> | ||
[Input("restEndpoint")] | ||
public Input<string>? RestEndpoint { get; set; } | ||
|
||
public ClusterLinkLocalKafkaClusterArgs() | ||
{ | ||
} | ||
public static new ClusterLinkLocalKafkaClusterArgs Empty => new ClusterLinkLocalKafkaClusterArgs(); | ||
} | ||
} |
Oops, something went wrong.