@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
187 lines • 9.02 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! ***
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.MulticastGroupRange = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("../utilities"));
/**
* Create a multicast group range in the current project.
*
* To get more information about MulticastGroupRange, see:
*
* * [API documentation](https://docs.cloud.google.com/vpc/docs/multicast/reference/rest/v1/projects.locations.multicastGroupRanges)
* * How-to Guides
* * [Create Multicast Group Range](https://docs.cloud.google.com/vpc/docs/multicast/create-group-ranges#create_a_group_range)
*
* ## Example Usage
*
* ### Network Services Multicast Group Range Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const network = new gcp.compute.Network("network", {
* name: "test-mgr-network",
* autoCreateSubnetworks: false,
* });
* const multicastDomain = new gcp.networkservices.MulticastDomain("multicast_domain", {
* multicastDomainId: "test-mgr-domain",
* location: "global",
* adminNetwork: network.id,
* connectionConfig: {
* connectionType: "SAME_VPC",
* },
* }, {
* dependsOn: [network],
* });
* const internalRange = new gcp.networkconnectivity.InternalRange("internal_range", {
* name: "test-mgr-internal-range",
* network: network.selfLink,
* usage: "FOR_VPC",
* peering: "FOR_SELF",
* ipCidrRange: "224.2.0.2/32",
* });
* const mgrTest = new gcp.networkservices.MulticastGroupRange("mgr_test", {
* multicastGroupRangeId: "test-mgr-group-range",
* location: "global",
* reservedInternalRange: internalRange.id,
* multicastDomain: multicastDomain.id,
* distributionScope: "INTRA_ZONE",
* });
* ```
*
* ## Import
*
* MulticastGroupRange can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{location}}/multicastGroupRanges/{{multicast_group_range_id}}`
* * `{{project}}/{{location}}/{{multicast_group_range_id}}`
* * `{{location}}/{{multicast_group_range_id}}`
*
* When using the `pulumi import` command, MulticastGroupRange can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:networkservices/multicastGroupRange:MulticastGroupRange default projects/{{project}}/locations/{{location}}/multicastGroupRanges/{{multicast_group_range_id}}
* $ pulumi import gcp:networkservices/multicastGroupRange:MulticastGroupRange default {{project}}/{{location}}/{{multicast_group_range_id}}
* $ pulumi import gcp:networkservices/multicastGroupRange:MulticastGroupRange default {{location}}/{{multicast_group_range_id}}
* ```
*/
class MulticastGroupRange extends pulumi.CustomResource {
/**
* Get an existing MulticastGroupRange 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 MulticastGroupRange(name, state, { ...opts, id: id });
}
/** @internal */
static __pulumiType = 'gcp:networkservices/multicastGroupRange:MulticastGroupRange';
/**
* Returns true if the given object is an instance of MulticastGroupRange. 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'] === MulticastGroupRange.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["consumerAcceptLists"] = state?.consumerAcceptLists;
resourceInputs["createTime"] = state?.createTime;
resourceInputs["deletionPolicy"] = state?.deletionPolicy;
resourceInputs["description"] = state?.description;
resourceInputs["distributionScope"] = state?.distributionScope;
resourceInputs["effectiveLabels"] = state?.effectiveLabels;
resourceInputs["ipCidrRange"] = state?.ipCidrRange;
resourceInputs["labels"] = state?.labels;
resourceInputs["location"] = state?.location;
resourceInputs["logConfig"] = state?.logConfig;
resourceInputs["multicastDomain"] = state?.multicastDomain;
resourceInputs["multicastGroupRangeId"] = state?.multicastGroupRangeId;
resourceInputs["name"] = state?.name;
resourceInputs["project"] = state?.project;
resourceInputs["pulumiLabels"] = state?.pulumiLabels;
resourceInputs["requireExplicitAccept"] = state?.requireExplicitAccept;
resourceInputs["reservedInternalRange"] = state?.reservedInternalRange;
resourceInputs["states"] = state?.states;
resourceInputs["uniqueId"] = state?.uniqueId;
resourceInputs["updateTime"] = state?.updateTime;
}
else {
const args = argsOrState;
if (args?.location === undefined && !opts.urn) {
throw new Error("Missing required property 'location'");
}
if (args?.multicastDomain === undefined && !opts.urn) {
throw new Error("Missing required property 'multicastDomain'");
}
if (args?.multicastGroupRangeId === undefined && !opts.urn) {
throw new Error("Missing required property 'multicastGroupRangeId'");
}
if (args?.reservedInternalRange === undefined && !opts.urn) {
throw new Error("Missing required property 'reservedInternalRange'");
}
resourceInputs["consumerAcceptLists"] = args?.consumerAcceptLists;
resourceInputs["deletionPolicy"] = args?.deletionPolicy;
resourceInputs["description"] = args?.description;
resourceInputs["distributionScope"] = args?.distributionScope;
resourceInputs["labels"] = args?.labels;
resourceInputs["location"] = args?.location;
resourceInputs["logConfig"] = args?.logConfig;
resourceInputs["multicastDomain"] = args?.multicastDomain;
resourceInputs["multicastGroupRangeId"] = args?.multicastGroupRangeId;
resourceInputs["project"] = args?.project;
resourceInputs["requireExplicitAccept"] = args?.requireExplicitAccept;
resourceInputs["reservedInternalRange"] = args?.reservedInternalRange;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["ipCidrRange"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
resourceInputs["states"] = undefined /*out*/;
resourceInputs["uniqueId"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(MulticastGroupRange.__pulumiType, name, resourceInputs, opts);
}
}
exports.MulticastGroupRange = MulticastGroupRange;
//# sourceMappingURL=multicastGroupRange.js.map