@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
93 lines • 3.8 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! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.SharedVPCHostProject = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Enables the Google Compute Engine
* [Shared VPC](https://cloud.google.com/compute/docs/shared-vpc)
* feature for a project, assigning it as a Shared VPC host project.
*
* For more information, see,
* [the Project API documentation](https://cloud.google.com/compute/docs/reference/latest/projects),
* where the Shared VPC feature is referred to by its former name "XPN".
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* // A host project provides network resources to associated service projects.
* const host = new gcp.compute.SharedVPCHostProject("host", {project: "host-project-id"});
* // A service project gains access to network resources provided by its
* // associated host project.
* const service1 = new gcp.compute.SharedVPCServiceProject("service1", {
* hostProject: host.project,
* serviceProject: "service-project-id-1",
* });
* const service2 = new gcp.compute.SharedVPCServiceProject("service2", {
* hostProject: host.project,
* serviceProject: "service-project-id-2",
* });
* ```
*
* ## Import
*
* Google Compute Engine Shared VPC host project feature can be imported using `project`, e.g.
*
* * `{{project_id}}`
*
* When using the `pulumi import` command, Google Compute Engine Shared VPC host projects can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:compute/sharedVPCHostProject:SharedVPCHostProject default {{project_id}}
* ```
*/
class SharedVPCHostProject extends pulumi.CustomResource {
/**
* Get an existing SharedVPCHostProject 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 SharedVPCHostProject(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of SharedVPCHostProject. 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'] === SharedVPCHostProject.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["project"] = state?.project;
}
else {
const args = argsOrState;
if (args?.project === undefined && !opts.urn) {
throw new Error("Missing required property 'project'");
}
resourceInputs["project"] = args?.project;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(SharedVPCHostProject.__pulumiType, name, resourceInputs, opts);
}
}
exports.SharedVPCHostProject = SharedVPCHostProject;
/** @internal */
SharedVPCHostProject.__pulumiType = 'gcp:compute/sharedVPCHostProject:SharedVPCHostProject';
//# sourceMappingURL=sharedVPCHostProject.js.map
;