UNPKG

@pulumi/gcp

Version:

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

168 lines 6.29 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! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.Snapshot = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * A Google Cloud Filestore snapshot. * * To get more information about Snapshot, see: * * * [API documentation](https://cloud.google.com/filestore/docs/reference/rest/v1/projects.locations.instances.snapshots) * * How-to Guides * * [Creating Snapshots](https://cloud.google.com/filestore/docs/create-snapshots) * * [Official Documentation](https://cloud.google.com/filestore/docs/snapshots) * * ## Example Usage * * ### Filestore Snapshot Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const instance = new gcp.filestore.Instance("instance", { * name: "test-instance-for-snapshot", * location: "us-east1", * tier: "ENTERPRISE", * fileShares: { * capacityGb: 1024, * name: "share1", * }, * networks: [{ * network: "default", * modes: ["MODE_IPV4"], * }], * }); * const snapshot = new gcp.filestore.Snapshot("snapshot", { * name: "test-snapshot", * instance: instance.name, * location: "us-east1", * }); * ``` * ### Filestore Snapshot Full * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const instance = new gcp.filestore.Instance("instance", { * name: "test-instance-for-snapshot", * location: "us-west1", * tier: "ENTERPRISE", * fileShares: { * capacityGb: 1024, * name: "share1", * }, * networks: [{ * network: "default", * modes: ["MODE_IPV4"], * }], * }); * const snapshot = new gcp.filestore.Snapshot("snapshot", { * name: "test-snapshot", * instance: instance.name, * location: "us-west1", * description: "Snapshot of test-instance-for-snapshot", * labels: { * my_label: "value", * }, * }); * ``` * * ## Import * * Snapshot can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/{{location}}/instances/{{instance}}/snapshots/{{name}}` * * * `{{project}}/{{location}}/{{instance}}/{{name}}` * * * `{{location}}/{{instance}}/{{name}}` * * When using the `pulumi import` command, Snapshot can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:filestore/snapshot:Snapshot default projects/{{project}}/locations/{{location}}/instances/{{instance}}/snapshots/{{name}} * ``` * * ```sh * $ pulumi import gcp:filestore/snapshot:Snapshot default {{project}}/{{location}}/{{instance}}/{{name}} * ``` * * ```sh * $ pulumi import gcp:filestore/snapshot:Snapshot default {{location}}/{{instance}}/{{name}} * ``` */ class Snapshot extends pulumi.CustomResource { /** * Get an existing Snapshot 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 Snapshot(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of Snapshot. 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'] === Snapshot.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["createTime"] = state?.createTime; resourceInputs["description"] = state?.description; resourceInputs["effectiveLabels"] = state?.effectiveLabels; resourceInputs["filesystemUsedBytes"] = state?.filesystemUsedBytes; resourceInputs["instance"] = state?.instance; resourceInputs["labels"] = state?.labels; resourceInputs["location"] = state?.location; resourceInputs["name"] = state?.name; resourceInputs["project"] = state?.project; resourceInputs["pulumiLabels"] = state?.pulumiLabels; resourceInputs["state"] = state?.state; } else { const args = argsOrState; if (args?.instance === undefined && !opts.urn) { throw new Error("Missing required property 'instance'"); } if (args?.location === undefined && !opts.urn) { throw new Error("Missing required property 'location'"); } resourceInputs["description"] = args?.description; resourceInputs["instance"] = args?.instance; resourceInputs["labels"] = args?.labels; resourceInputs["location"] = args?.location; resourceInputs["name"] = args?.name; resourceInputs["project"] = args?.project; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["effectiveLabels"] = undefined /*out*/; resourceInputs["filesystemUsedBytes"] = undefined /*out*/; resourceInputs["pulumiLabels"] = undefined /*out*/; resourceInputs["state"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(Snapshot.__pulumiType, name, resourceInputs, opts); } } exports.Snapshot = Snapshot; /** @internal */ Snapshot.__pulumiType = 'gcp:filestore/snapshot:Snapshot'; //# sourceMappingURL=snapshot.js.map