getPrivateCloud

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.vmwareengine.VmwareengineFunctions;
import com.pulumi.gcp.vmwareengine.inputs.GetPrivateCloudArgs;
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 myPc = VmwareengineFunctions.getPrivateCloud(GetPrivateCloudArgs.builder()
.name("my-pc")
.location("us-central1-a")
.build());
}
}

Return

A collection of values returned by getPrivateCloud.

Parameters

argument

A collection of arguments for invoking getPrivateCloud.


suspend fun getPrivateCloud(location: String, name: String, project: String? = null): GetPrivateCloudResult

Return

A collection of values returned by getPrivateCloud.

Parameters

location

Location of the resource.

name

Name of the resource.

project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

See also


Return

A collection of values returned by getPrivateCloud.

Parameters

argument

Builder for com.pulumi.gcp.vmwareengine.kotlin.inputs.GetPrivateCloudPlainArgs.

See also