UNPKG

@pulumi/gcp

Version:

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

113 lines 4.15 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.Brand = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage * * ### Iap Brand * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const project = new gcp.organizations.Project("project", { * projectId: "my-project", * name: "my-project", * orgId: "123456789", * deletionPolicy: "DELETE", * }); * const projectService = new gcp.projects.Service("project_service", { * project: project.projectId, * service: "iap.googleapis.com", * }); * const projectBrand = new gcp.iap.Brand("project_brand", { * supportEmail: "support@example.com", * applicationTitle: "Cloud IAP protected Application", * project: projectService.project, * }); * ``` * * ## Import * * Brand can be imported using any of these accepted formats: * * * `projects/{{project_id}}/brands/{{brand_id}}` * * * `projects/{{project_number}}/brands/{{brand_id}}` * * * `{{project_number}}/{{brand_id}}` * * When using the `pulumi import` command, Brand can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:iap/brand:Brand default projects/{{project_id}}/brands/{{brand_id}} * ``` * * ```sh * $ pulumi import gcp:iap/brand:Brand default projects/{{project_number}}/brands/{{brand_id}} * ``` * * ```sh * $ pulumi import gcp:iap/brand:Brand default {{project_number}}/{{brand_id}} * ``` */ class Brand extends pulumi.CustomResource { /** * Get an existing Brand 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 Brand(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of Brand. 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'] === Brand.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["applicationTitle"] = state?.applicationTitle; resourceInputs["name"] = state?.name; resourceInputs["orgInternalOnly"] = state?.orgInternalOnly; resourceInputs["project"] = state?.project; resourceInputs["supportEmail"] = state?.supportEmail; } else { const args = argsOrState; if (args?.applicationTitle === undefined && !opts.urn) { throw new Error("Missing required property 'applicationTitle'"); } if (args?.supportEmail === undefined && !opts.urn) { throw new Error("Missing required property 'supportEmail'"); } resourceInputs["applicationTitle"] = args?.applicationTitle; resourceInputs["project"] = args?.project; resourceInputs["supportEmail"] = args?.supportEmail; resourceInputs["name"] = undefined /*out*/; resourceInputs["orgInternalOnly"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(Brand.__pulumiType, name, resourceInputs, opts); } } exports.Brand = Brand; /** @internal */ Brand.__pulumiType = 'gcp:iap/brand:Brand'; //# sourceMappingURL=brand.js.map