@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
201 lines • 9.31 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.UllMirroringCollectorRule = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("../utilities"));
/**
* UllMirroringCollectorRule is a resource that defines what traffic should be mirrored.
*
* > **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
* See Provider Versions for more details on beta resources.
*
* ## Example Usage
*
* ### Network Security Ull Mirroring Collector Rule Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const network = new gcp.compute.Network("network", {
* name: "example-network",
* autoCreateSubnetworks: false,
* });
* const subnetwork = new gcp.compute.Subnetwork("subnetwork", {
* name: "example-subnet",
* region: "us-south1",
* ipCidrRange: "10.1.0.0/16",
* network: network.name,
* });
* const healthCheck = new gcp.compute.RegionHealthCheck("health_check", {
* name: "example-hc",
* region: "us-south1",
* httpHealthCheck: {
* port: 80,
* },
* });
* const backendService = new gcp.compute.RegionBackendService("backend_service", {
* name: "example-bs",
* region: "us-south1",
* healthChecks: healthCheck.id,
* protocol: "UDP",
* loadBalancingScheme: "INTERNAL",
* });
* const forwardingRule = new gcp.compute.ForwardingRule("forwarding_rule", {
* name: "example-fwr",
* region: "us-south1",
* network: network.name,
* subnetwork: subnetwork.name,
* backendService: backendService.id,
* loadBalancingScheme: "INTERNAL",
* ports: ["6081"],
* ipProtocol: "UDP",
* isMirroringCollector: true,
* });
* const ullMirroringEngine = new gcp.networksecurity.UllMirroringEngine("ull_mirroring_engine", {
* ullMirroringEngineId: "example-ull-eng",
* location: "us-south1-d",
* });
* const collector = new gcp.networksecurity.UllMirroringCollector("collector", {
* ullMirroringCollectorId: "example-ull-col",
* location: "us-south1-d",
* forwardingRule: forwardingRule.id,
* engine: ullMirroringEngine.id,
* labels: {
* foo: "bar",
* },
* });
* const _default = new gcp.networksecurity.UllMirroringCollectorRule("default", {
* ullMirroringCollectorRuleId: "example-ull-rule",
* location: "us-south1-d",
* ullMirroringCollector: collector.ullMirroringCollectorId,
* match: {
* direction: "INGRESS",
* ipProtocols: ["tcp"],
* srcIpRanges: ["10.0.0.0/8"],
* dstIpRanges: ["192.168.0.0/16"],
* },
* });
* ```
*
* ## Import
*
* UllMirroringCollectorRule can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{location}}/ullMirroringCollectors/{{ull_mirroring_collector}}/rules/{{ull_mirroring_collector_rule_id}}`
* * `{{project}}/{{location}}/{{ull_mirroring_collector}}/{{ull_mirroring_collector_rule_id}}`
* * `{{location}}/{{ull_mirroring_collector}}/{{ull_mirroring_collector_rule_id}}`
*
* When using the `pulumi import` command, UllMirroringCollectorRule can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:networksecurity/ullMirroringCollectorRule:UllMirroringCollectorRule default projects/{{project}}/locations/{{location}}/ullMirroringCollectors/{{ull_mirroring_collector}}/rules/{{ull_mirroring_collector_rule_id}}
* $ pulumi import gcp:networksecurity/ullMirroringCollectorRule:UllMirroringCollectorRule default {{project}}/{{location}}/{{ull_mirroring_collector}}/{{ull_mirroring_collector_rule_id}}
* $ pulumi import gcp:networksecurity/ullMirroringCollectorRule:UllMirroringCollectorRule default {{location}}/{{ull_mirroring_collector}}/{{ull_mirroring_collector_rule_id}}
* ```
*/
class UllMirroringCollectorRule extends pulumi.CustomResource {
/**
* Get an existing UllMirroringCollectorRule 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 UllMirroringCollectorRule(name, state, { ...opts, id: id });
}
/** @internal */
static __pulumiType = 'gcp:networksecurity/ullMirroringCollectorRule:UllMirroringCollectorRule';
/**
* Returns true if the given object is an instance of UllMirroringCollectorRule. 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'] === UllMirroringCollectorRule.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["createTime"] = state?.createTime;
resourceInputs["deletionPolicy"] = state?.deletionPolicy;
resourceInputs["effectiveLabels"] = state?.effectiveLabels;
resourceInputs["labels"] = state?.labels;
resourceInputs["location"] = state?.location;
resourceInputs["match"] = state?.match;
resourceInputs["name"] = state?.name;
resourceInputs["project"] = state?.project;
resourceInputs["pulumiLabels"] = state?.pulumiLabels;
resourceInputs["reconciling"] = state?.reconciling;
resourceInputs["ullMirroringCollector"] = state?.ullMirroringCollector;
resourceInputs["ullMirroringCollectorRuleId"] = state?.ullMirroringCollectorRuleId;
resourceInputs["updateTime"] = state?.updateTime;
}
else {
const args = argsOrState;
if (args?.location === undefined && !opts.urn) {
throw new Error("Missing required property 'location'");
}
if (args?.match === undefined && !opts.urn) {
throw new Error("Missing required property 'match'");
}
if (args?.ullMirroringCollector === undefined && !opts.urn) {
throw new Error("Missing required property 'ullMirroringCollector'");
}
if (args?.ullMirroringCollectorRuleId === undefined && !opts.urn) {
throw new Error("Missing required property 'ullMirroringCollectorRuleId'");
}
resourceInputs["deletionPolicy"] = args?.deletionPolicy;
resourceInputs["labels"] = args?.labels;
resourceInputs["location"] = args?.location;
resourceInputs["match"] = args?.match;
resourceInputs["project"] = args?.project;
resourceInputs["ullMirroringCollector"] = args?.ullMirroringCollector;
resourceInputs["ullMirroringCollectorRuleId"] = args?.ullMirroringCollectorRuleId;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
resourceInputs["reconciling"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(UllMirroringCollectorRule.__pulumiType, name, resourceInputs, opts);
}
}
exports.UllMirroringCollectorRule = UllMirroringCollectorRule;
//# sourceMappingURL=ullMirroringCollectorRule.js.map