@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
254 lines • 10.4 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.V2Vm = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("../utilities"));
/**
* A Cloud TPU VM instance.
*
* > **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
* See Provider Versions for more details on beta resources.
*
* To get more information about Vm, see:
*
* * [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.nodes)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/tpu/docs/)
*
* ## Example Usage
*
* ### Tpu V2 Vm Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const available = gcp.tpu.getV2RuntimeVersions({});
* const tpu = new gcp.tpu.V2Vm("tpu", {
* name: "test-tpu",
* zone: "us-central1-c",
* runtimeVersion: "tpu-vm-tf-2.13.0",
* });
* ```
* ### Tpu V2 Vm Full
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as time from "@pulumiverse/time";
*
* const available = gcp.tpu.getV2RuntimeVersions({});
* const availableGetV2AcceleratorTypes = gcp.tpu.getV2AcceleratorTypes({});
* const network = new gcp.compute.Network("network", {
* name: "tpu-net",
* autoCreateSubnetworks: false,
* });
* const subnet = new gcp.compute.Subnetwork("subnet", {
* name: "tpu-subnet",
* ipCidrRange: "10.0.0.0/16",
* region: "us-central1",
* network: network.id,
* });
* const sa = new gcp.serviceaccount.Account("sa", {
* accountId: "tpu-sa",
* displayName: "Test TPU VM",
* });
* const disk = new gcp.compute.Disk("disk", {
* name: "tpu-disk",
* image: "debian-cloud/debian-11",
* size: 10,
* type: "pd-ssd",
* zone: "us-central1-c",
* });
* // Wait after service account creation to limit eventual consistency errors.
* const wait60Seconds = new time.Sleep("wait_60_seconds", {createDuration: "60s"}, {
* dependsOn: [sa],
* });
* const tpu = new gcp.tpu.V2Vm("tpu", {
* name: "test-tpu",
* zone: "us-central1-c",
* description: "Text description of the TPU.",
* runtimeVersion: "tpu-vm-tf-2.13.0",
* acceleratorConfig: {
* type: "V2",
* topology: "2x2",
* },
* cidrBlock: "10.0.0.0/29",
* networkConfig: {
* canIpForward: true,
* enableExternalIps: true,
* network: network.id,
* subnetwork: subnet.id,
* queueCount: 32,
* },
* schedulingConfig: {
* preemptible: true,
* spot: true,
* },
* shieldedInstanceConfig: {
* enableSecureBoot: true,
* },
* serviceAccount: {
* email: sa.email,
* scopes: ["https://www.googleapis.com/auth/cloud-platform"],
* },
* dataDisks: [{
* sourceDisk: disk.id,
* mode: "READ_ONLY",
* }],
* labels: {
* foo: "bar",
* },
* metadata: {
* foo: "bar",
* },
* tags: ["foo"],
* }, {
* dependsOn: [wait60Seconds],
* });
* ```
*
* ## Import
*
* Vm can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{zone}}/nodes/{{name}}`
* * `{{project}}/{{zone}}/{{name}}`
* * `{{zone}}/{{name}}`
* * `{{name}}`
*
* When using the `pulumi import` command, Vm can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:tpu/v2Vm:V2Vm default projects/{{project}}/locations/{{zone}}/nodes/{{name}}
* $ pulumi import gcp:tpu/v2Vm:V2Vm default {{project}}/{{zone}}/{{name}}
* $ pulumi import gcp:tpu/v2Vm:V2Vm default {{zone}}/{{name}}
* $ pulumi import gcp:tpu/v2Vm:V2Vm default {{name}}
* ```
*/
class V2Vm extends pulumi.CustomResource {
/**
* Get an existing V2Vm resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new V2Vm(name, state, { ...opts, id: id });
}
/** @internal */
static __pulumiType = 'gcp:tpu/v2Vm:V2Vm';
/**
* Returns true if the given object is an instance of V2Vm. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === V2Vm.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["acceleratorConfig"] = state?.acceleratorConfig;
resourceInputs["acceleratorType"] = state?.acceleratorType;
resourceInputs["apiVersion"] = state?.apiVersion;
resourceInputs["cidrBlock"] = state?.cidrBlock;
resourceInputs["dataDisks"] = state?.dataDisks;
resourceInputs["deletionPolicy"] = state?.deletionPolicy;
resourceInputs["description"] = state?.description;
resourceInputs["effectiveLabels"] = state?.effectiveLabels;
resourceInputs["health"] = state?.health;
resourceInputs["healthDescription"] = state?.healthDescription;
resourceInputs["labels"] = state?.labels;
resourceInputs["metadata"] = state?.metadata;
resourceInputs["multisliceNode"] = state?.multisliceNode;
resourceInputs["name"] = state?.name;
resourceInputs["networkConfig"] = state?.networkConfig;
resourceInputs["networkConfigs"] = state?.networkConfigs;
resourceInputs["networkEndpoints"] = state?.networkEndpoints;
resourceInputs["project"] = state?.project;
resourceInputs["pulumiLabels"] = state?.pulumiLabels;
resourceInputs["queuedResource"] = state?.queuedResource;
resourceInputs["runtimeVersion"] = state?.runtimeVersion;
resourceInputs["schedulingConfig"] = state?.schedulingConfig;
resourceInputs["serviceAccount"] = state?.serviceAccount;
resourceInputs["shieldedInstanceConfig"] = state?.shieldedInstanceConfig;
resourceInputs["state"] = state?.state;
resourceInputs["symptoms"] = state?.symptoms;
resourceInputs["tags"] = state?.tags;
resourceInputs["zone"] = state?.zone;
}
else {
const args = argsOrState;
if (args?.runtimeVersion === undefined && !opts.urn) {
throw new Error("Missing required property 'runtimeVersion'");
}
resourceInputs["acceleratorConfig"] = args?.acceleratorConfig;
resourceInputs["acceleratorType"] = args?.acceleratorType;
resourceInputs["cidrBlock"] = args?.cidrBlock;
resourceInputs["dataDisks"] = args?.dataDisks;
resourceInputs["deletionPolicy"] = args?.deletionPolicy;
resourceInputs["description"] = args?.description;
resourceInputs["labels"] = args?.labels;
resourceInputs["metadata"] = args?.metadata;
resourceInputs["name"] = args?.name;
resourceInputs["networkConfig"] = args?.networkConfig;
resourceInputs["networkConfigs"] = args?.networkConfigs;
resourceInputs["project"] = args?.project;
resourceInputs["runtimeVersion"] = args?.runtimeVersion;
resourceInputs["schedulingConfig"] = args?.schedulingConfig;
resourceInputs["serviceAccount"] = args?.serviceAccount;
resourceInputs["shieldedInstanceConfig"] = args?.shieldedInstanceConfig;
resourceInputs["tags"] = args?.tags;
resourceInputs["zone"] = args?.zone;
resourceInputs["apiVersion"] = undefined /*out*/;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["health"] = undefined /*out*/;
resourceInputs["healthDescription"] = undefined /*out*/;
resourceInputs["multisliceNode"] = undefined /*out*/;
resourceInputs["networkEndpoints"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
resourceInputs["queuedResource"] = undefined /*out*/;
resourceInputs["state"] = undefined /*out*/;
resourceInputs["symptoms"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(V2Vm.__pulumiType, name, resourceInputs, opts);
}
}
exports.V2Vm = V2Vm;
//# sourceMappingURL=v2vm.js.map