Skip to content

Commit

Permalink
make build_sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger committed Sep 18, 2023
1 parent 35b8cb0 commit 0cbc571
Show file tree
Hide file tree
Showing 82 changed files with 5,976 additions and 55 deletions.
34 changes: 34 additions & 0 deletions sdk/dotnet/GetEnvironments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,40 @@ public static class GetEnvironments
/// </summary>
public static Task<GetEnvironmentsResult> InvokeAsync(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetEnvironmentsResult>("confluentcloud:index/getEnvironments:getEnvironments", InvokeArgs.Empty, options.WithDefaults());

/// <summary>
/// [![Preview](https://img.shields.io/badge/Lifecycle%20Stage-Preview-%2300afba)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
///
/// &gt; **Note:** `confluentcloud.getEnvironments` data source is available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.
/// **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
///
/// `confluentcloud.getEnvironments` describes a data source for Environments.
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using ConfluentCloud = Pulumi.ConfluentCloud;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var main = ConfluentCloud.GetEnvironments.Invoke();
///
/// return new Dictionary&lt;string, object?&gt;
/// {
/// ["environments"] = main.Apply(getEnvironmentsResult =&gt; getEnvironmentsResult.Ids),
/// };
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// </summary>
public static Output<GetEnvironmentsResult> Invoke(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetEnvironmentsResult>("confluentcloud:index/getEnvironments:getEnvironments", InvokeArgs.Empty, options.WithDefaults());
}


Expand Down
31 changes: 31 additions & 0 deletions sdk/dotnet/GetOrganization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,37 @@ public static class GetOrganization
/// </summary>
public static Task<GetOrganizationResult> InvokeAsync(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetOrganizationResult>("confluentcloud:index/getOrganization:getOrganization", InvokeArgs.Empty, options.WithDefaults());

/// <summary>
/// [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
///
/// `confluentcloud.getOrganization` describes an Organization data source.
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using ConfluentCloud = Pulumi.ConfluentCloud;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var exampleOrganization = ConfluentCloud.GetOrganization.Invoke();
///
/// return new Dictionary&lt;string, object?&gt;
/// {
/// ["example"] = exampleOrganization,
/// };
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// </summary>
public static Output<GetOrganizationResult> Invoke(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetOrganizationResult>("confluentcloud:index/getOrganization:getOrganization", InvokeArgs.Empty, options.WithDefaults());
}


Expand Down
30 changes: 30 additions & 0 deletions sdk/dotnet/GetSchemaRegistryClusters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,36 @@ public static class GetSchemaRegistryClusters
/// </summary>
public static Task<GetSchemaRegistryClustersResult> InvokeAsync(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetSchemaRegistryClustersResult>("confluentcloud:index/getSchemaRegistryClusters:getSchemaRegistryClusters", InvokeArgs.Empty, options.WithDefaults());

/// <summary>
/// [![Preview](https://img.shields.io/badge/Lifecycle%20Stage-Preview-%2300afba)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
///
/// &gt; **Note:** `confluentcloud.getSchemaRegistryClusters` data source is available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.
/// **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
///
/// `confluentcloud.getSchemaRegistryClusters` describes a data source for Schema Registry Clusters.
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using ConfluentCloud = Pulumi.ConfluentCloud;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var main = ConfluentCloud.GetSchemaRegistryClusters.Invoke();
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// </summary>
public static Output<GetSchemaRegistryClustersResult> Invoke(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetSchemaRegistryClustersResult>("confluentcloud:index/getSchemaRegistryClusters:getSchemaRegistryClusters", InvokeArgs.Empty, options.WithDefaults());
}


Expand Down
34 changes: 34 additions & 0 deletions sdk/dotnet/GetUsers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,40 @@ public static class GetUsers
/// </summary>
public static Task<GetUsersResult> InvokeAsync(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetUsersResult>("confluentcloud:index/getUsers:getUsers", InvokeArgs.Empty, options.WithDefaults());

/// <summary>
/// [![Preview](https://img.shields.io/badge/Lifecycle%20Stage-Preview-%2300afba)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
///
/// &gt; **Note:** `confluentcloud.getUsers` data source is available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.
/// **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
///
/// `confluentcloud.getUsers` describes a data source for Users.
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using ConfluentCloud = Pulumi.ConfluentCloud;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var main = ConfluentCloud.GetUsers.Invoke();
///
/// return new Dictionary&lt;string, object?&gt;
/// {
/// ["users"] = main.Apply(getUsersResult =&gt; getUsersResult.Ids),
/// };
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// </summary>
public static Output<GetUsersResult> Invoke(InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetUsersResult>("confluentcloud:index/getUsers:getUsers", InvokeArgs.Empty, options.WithDefaults());
}


Expand Down
37 changes: 37 additions & 0 deletions sdk/go/confluentcloud/apiKey.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions sdk/go/confluentcloud/businessMetadata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0cbc571

Please sign in to comment.