UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

176 lines 6.77 kB
"use strict"; // *** 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.V2QueuedResource = void 0; const pulumi = __importStar(require("@pulumi/pulumi")); const utilities = __importStar(require("../utilities")); /** * A Cloud TPU Queued Resource. * * > **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 QueuedResource, see: * * * [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.queuedResources) * * How-to Guides * * [Official Documentation](https://cloud.google.com/tpu/docs/) * * ## Example Usage * * ### Tpu V2 Queued Resource Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const qr = new gcp.tpu.V2QueuedResource("qr", { * name: "test-qr", * zone: "us-central1-c", * project: "my-project-name", * tpu: { * nodeSpecs: [{ * parent: "projects/my-project-name/locations/us-central1-c", * nodeId: "test-tpu", * node: { * runtimeVersion: "tpu-vm-tf-2.13.0", * acceleratorType: "v2-8", * description: "Text description of the TPU.", * }, * }], * }, * }); * ``` * ### Tpu V2 Queued Resource Full * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * 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 qr = new gcp.tpu.V2QueuedResource("qr", { * name: "test-qr", * zone: "us-central1-c", * project: "my-project-name", * tpu: { * nodeSpecs: [{ * parent: "projects/my-project-name/locations/us-central1-c", * nodeId: "test-tpu", * node: { * runtimeVersion: "tpu-vm-tf-2.13.0", * acceleratorType: "v2-8", * description: "Text description of the TPU.", * networkConfig: { * canIpForward: true, * enableExternalIps: true, * network: network.id, * subnetwork: subnet.id, * queueCount: 32, * }, * }, * }], * }, * }); * ``` * * ## Import * * QueuedResource can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/{{zone}}/queuedResources/{{name}}` * * `{{project}}/{{zone}}/{{name}}` * * `{{zone}}/{{name}}` * * `{{name}}` * * When using the `pulumi import` command, QueuedResource can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:tpu/v2QueuedResource:V2QueuedResource default projects/{{project}}/locations/{{zone}}/queuedResources/{{name}} * $ pulumi import gcp:tpu/v2QueuedResource:V2QueuedResource default {{project}}/{{zone}}/{{name}} * $ pulumi import gcp:tpu/v2QueuedResource:V2QueuedResource default {{zone}}/{{name}} * $ pulumi import gcp:tpu/v2QueuedResource:V2QueuedResource default {{name}} * ``` */ class V2QueuedResource extends pulumi.CustomResource { /** * Get an existing V2QueuedResource 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 V2QueuedResource(name, state, { ...opts, id: id }); } /** @internal */ static __pulumiType = 'gcp:tpu/v2QueuedResource:V2QueuedResource'; /** * Returns true if the given object is an instance of V2QueuedResource. 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'] === V2QueuedResource.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["deletionPolicy"] = state?.deletionPolicy; resourceInputs["name"] = state?.name; resourceInputs["project"] = state?.project; resourceInputs["tpu"] = state?.tpu; resourceInputs["zone"] = state?.zone; } else { const args = argsOrState; resourceInputs["deletionPolicy"] = args?.deletionPolicy; resourceInputs["name"] = args?.name; resourceInputs["project"] = args?.project; resourceInputs["tpu"] = args?.tpu; resourceInputs["zone"] = args?.zone; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(V2QueuedResource.__pulumiType, name, resourceInputs, opts); } } exports.V2QueuedResource = V2QueuedResource; //# sourceMappingURL=v2queuedResource.js.map