UNPKG

@pulumi/gcp

Version:

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

132 lines 5.27 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.SaaS = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * A Saas resource is the top-level representation of a SaaS service managed by a producer. It contains a list of locations where the service is available, which is used by the Rollout system to generate a rollout plan. * * ## Example Usage * * ### Saas Runtime Saas Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const example = new gcp.saasruntime.SaaS("example", { * saasId: "test-saas", * location: "global", * locations: [ * { * name: "us-central1", * }, * { * name: "europe-west1", * }, * ], * }); * ``` * * ## Import * * Saas can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/{{location}}/saas/{{saas_id}}` * * * `{{project}}/{{location}}/{{saas_id}}` * * * `{{location}}/{{saas_id}}` * * When using the `pulumi import` command, Saas can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:saasruntime/saaS:SaaS default projects/{{project}}/locations/{{location}}/saas/{{saas_id}} * ``` * * ```sh * $ pulumi import gcp:saasruntime/saaS:SaaS default {{project}}/{{location}}/{{saas_id}} * ``` * * ```sh * $ pulumi import gcp:saasruntime/saaS:SaaS default {{location}}/{{saas_id}} * ``` */ class SaaS extends pulumi.CustomResource { /** * Get an existing SaaS 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 SaaS(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of SaaS. 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'] === SaaS.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["annotations"] = state?.annotations; resourceInputs["createTime"] = state?.createTime; resourceInputs["effectiveAnnotations"] = state?.effectiveAnnotations; resourceInputs["effectiveLabels"] = state?.effectiveLabels; resourceInputs["etag"] = state?.etag; resourceInputs["labels"] = state?.labels; resourceInputs["location"] = state?.location; resourceInputs["locations"] = state?.locations; resourceInputs["name"] = state?.name; resourceInputs["project"] = state?.project; resourceInputs["pulumiLabels"] = state?.pulumiLabels; resourceInputs["saasId"] = state?.saasId; resourceInputs["uid"] = state?.uid; resourceInputs["updateTime"] = state?.updateTime; } else { const args = argsOrState; if (args?.location === undefined && !opts.urn) { throw new Error("Missing required property 'location'"); } if (args?.saasId === undefined && !opts.urn) { throw new Error("Missing required property 'saasId'"); } resourceInputs["annotations"] = args?.annotations; resourceInputs["labels"] = args?.labels; resourceInputs["location"] = args?.location; resourceInputs["locations"] = args?.locations; resourceInputs["project"] = args?.project; resourceInputs["saasId"] = args?.saasId; resourceInputs["createTime"] = undefined /*out*/; resourceInputs["effectiveAnnotations"] = undefined /*out*/; resourceInputs["effectiveLabels"] = undefined /*out*/; resourceInputs["etag"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; resourceInputs["pulumiLabels"] = undefined /*out*/; resourceInputs["uid"] = undefined /*out*/; resourceInputs["updateTime"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(SaaS.__pulumiType, name, resourceInputs, opts); } } exports.SaaS = SaaS; /** @internal */ SaaS.__pulumiType = 'gcp:saasruntime/saaS:SaaS'; //# sourceMappingURL=saaS.js.map