@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
141 lines • 6.41 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.V2FolderSccBigQueryExport = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A Cloud Security Command Center (Cloud SCC) Big Query Export Config.
* It represents exporting Security Command Center data, including assets, findings, and security marks
* using gcloud scc bqexports
* > **Note:** In order to use Cloud SCC resources, your organization must be enrolled
* in [SCC Standard/Premium](https://cloud.google.com/security-command-center/docs/quickstart-security-command-center).
* Without doing so, you may run into errors during resource creation.
*
* To get more information about FolderSccBigQueryExport, see:
*
* * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/folders.locations.bigQueryExports)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/security-command-center/docs/how-to-analyze-findings-in-big-query)
*
* ## Example Usage
*
* ### Scc V2 Folder Big Query Export Config Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const folder = new gcp.organizations.Folder("folder", {
* parent: "organizations/123456789",
* displayName: "folder-name",
* deletionProtection: false,
* });
* const _default = new gcp.bigquery.Dataset("default", {
* datasetId: "my_dataset_id",
* friendlyName: "test",
* description: "This is a test description",
* location: "US",
* defaultTableExpirationMs: 3600000,
* defaultPartitionExpirationMs: null,
* labels: {
* env: "default",
* },
* });
* const customBigQueryExportConfig = new gcp.securitycenter.V2FolderSccBigQueryExport("custom_big_query_export_config", {
* bigQueryExportId: "my-export",
* folder: folder.folderId,
* dataset: _default.id,
* location: "global",
* description: "Cloud Security Command Center Findings Big Query Export Config",
* filter: "state=\"ACTIVE\" AND NOT mute=\"MUTED\"",
* });
* ```
*
* ## Import
*
* FolderSccBigQueryExport can be imported using any of these accepted formats:
*
* * `folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}`
*
* * `{{folder}}/{{location}}/{{big_query_export_id}}`
*
* When using the `pulumi import` command, FolderSccBigQueryExport can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default folders/{{folder}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}
* ```
*
* ```sh
* $ pulumi import gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport default {{folder}}/{{location}}/{{big_query_export_id}}
* ```
*/
class V2FolderSccBigQueryExport extends pulumi.CustomResource {
/**
* Get an existing V2FolderSccBigQueryExport 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 V2FolderSccBigQueryExport(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of V2FolderSccBigQueryExport. 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'] === V2FolderSccBigQueryExport.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["bigQueryExportId"] = state?.bigQueryExportId;
resourceInputs["createTime"] = state?.createTime;
resourceInputs["dataset"] = state?.dataset;
resourceInputs["description"] = state?.description;
resourceInputs["filter"] = state?.filter;
resourceInputs["folder"] = state?.folder;
resourceInputs["location"] = state?.location;
resourceInputs["mostRecentEditor"] = state?.mostRecentEditor;
resourceInputs["name"] = state?.name;
resourceInputs["principal"] = state?.principal;
resourceInputs["updateTime"] = state?.updateTime;
}
else {
const args = argsOrState;
if (args?.bigQueryExportId === undefined && !opts.urn) {
throw new Error("Missing required property 'bigQueryExportId'");
}
if (args?.folder === undefined && !opts.urn) {
throw new Error("Missing required property 'folder'");
}
resourceInputs["bigQueryExportId"] = args?.bigQueryExportId;
resourceInputs["dataset"] = args?.dataset;
resourceInputs["description"] = args?.description;
resourceInputs["filter"] = args?.filter;
resourceInputs["folder"] = args?.folder;
resourceInputs["location"] = args?.location;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["mostRecentEditor"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["principal"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(V2FolderSccBigQueryExport.__pulumiType, name, resourceInputs, opts);
}
}
exports.V2FolderSccBigQueryExport = V2FolderSccBigQueryExport;
/** @internal */
V2FolderSccBigQueryExport.__pulumiType = 'gcp:securitycenter/v2FolderSccBigQueryExport:V2FolderSccBigQueryExport';
//# sourceMappingURL=v2folderSccBigQueryExport.js.map
;