com.pulumi.aws.cloudhsmv2.kotlin.Cloudhsmv2Functions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.cloudhsmv2.kotlin
import com.pulumi.aws.cloudhsmv2.Cloudhsmv2Functions.getClusterPlain
import com.pulumi.aws.cloudhsmv2.kotlin.inputs.GetClusterPlainArgs
import com.pulumi.aws.cloudhsmv2.kotlin.inputs.GetClusterPlainArgsBuilder
import com.pulumi.aws.cloudhsmv2.kotlin.outputs.GetClusterResult
import com.pulumi.aws.cloudhsmv2.kotlin.outputs.GetClusterResult.Companion.toKotlin
import kotlinx.coroutines.future.await
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
public object Cloudhsmv2Functions {
/**
* Use this data source to get information about a CloudHSM v2 cluster
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const cluster = aws.cloudhsmv2.getCluster({
* clusterId: "cluster-testclusterid",
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* cluster = aws.cloudhsmv2.get_cluster(cluster_id="cluster-testclusterid")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var cluster = Aws.CloudHsmV2.GetCluster.Invoke(new()
* {
* ClusterId = "cluster-testclusterid",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloudhsmv2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := cloudhsmv2.LookupCluster(ctx, &cloudhsmv2.LookupClusterArgs{
* ClusterId: "cluster-testclusterid",
* }, nil)
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.cloudhsmv2.Cloudhsmv2Functions;
* import com.pulumi.aws.cloudhsmv2.inputs.GetClusterArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* final var cluster = Cloudhsmv2Functions.getCluster(GetClusterArgs.builder()
* .clusterId("cluster-testclusterid")
* .build());
* }
* }
* ```
* ```yaml
* variables:
* cluster:
* fn::invoke:
* Function: aws:cloudhsmv2:getCluster
* Arguments:
* clusterId: cluster-testclusterid
* ```
*
* @param argument A collection of arguments for invoking getCluster.
* @return A collection of values returned by getCluster.
*/
public suspend fun getCluster(argument: GetClusterPlainArgs): GetClusterResult =
toKotlin(getClusterPlain(argument.toJava()).await())
/**
* @see [getCluster].
* @param clusterId ID of Cloud HSM v2 cluster.
* @param clusterState State of the cluster to be found.
* @return A collection of values returned by getCluster.
*/
public suspend fun getCluster(clusterId: String, clusterState: String? = null): GetClusterResult {
val argument = GetClusterPlainArgs(
clusterId = clusterId,
clusterState = clusterState,
)
return toKotlin(getClusterPlain(argument.toJava()).await())
}
/**
* @see [getCluster].
* @param argument Builder for [com.pulumi.aws.cloudhsmv2.kotlin.inputs.GetClusterPlainArgs].
* @return A collection of values returned by getCluster.
*/
public suspend fun getCluster(argument: suspend GetClusterPlainArgsBuilder.() -> Unit): GetClusterResult {
val builder = GetClusterPlainArgsBuilder()
builder.argument()
val builtArgument = builder.build()
return toKotlin(getClusterPlain(builtArgument.toJava()).await())
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy