UNPKG

@pulumi/sumologic

Version:

A Pulumi package for creating and managing sumologic cloud resources.

108 lines 4.64 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.CseAutomation = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Provides a Sumologic CSE Automation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sumologic from "@pulumi/sumologic"; * * const insightAutomation = new sumologic.CseAutomation("insight_automation", { * playbookId: "638079aedb99cafada1e80a0", * cseResourceType: "INSIGHT", * executionTypes: [ * "NEW_INSIGHT", * "INSIGHT_CLOSED", * ], * }); * const entityAutomation = new sumologic.CseAutomation("entity_automation", { * playbookId: "638079aedb99cafada1e80a0", * cseResourceType: "ENTITY", * cseResourceSubTypes: ["_ip"], * executionTypes: ["ON_DEMAND"], * }); * ``` * * ## Import * * Automation can be imported using the field id, e.g.: * * hcl * * ```sh * $ pulumi import sumologic:index/cseAutomation:CseAutomation automation id * ``` */ class CseAutomation extends pulumi.CustomResource { /** * Get an existing CseAutomation 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 CseAutomation(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of CseAutomation. 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'] === CseAutomation.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["cseResourceSubTypes"] = state ? state.cseResourceSubTypes : undefined; resourceInputs["cseResourceType"] = state ? state.cseResourceType : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["enabled"] = state ? state.enabled : undefined; resourceInputs["executionTypes"] = state ? state.executionTypes : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["playbookId"] = state ? state.playbookId : undefined; } else { const args = argsOrState; if ((!args || args.cseResourceType === undefined) && !opts.urn) { throw new Error("Missing required property 'cseResourceType'"); } if ((!args || args.enabled === undefined) && !opts.urn) { throw new Error("Missing required property 'enabled'"); } if ((!args || args.executionTypes === undefined) && !opts.urn) { throw new Error("Missing required property 'executionTypes'"); } if ((!args || args.playbookId === undefined) && !opts.urn) { throw new Error("Missing required property 'playbookId'"); } resourceInputs["cseResourceSubTypes"] = args ? args.cseResourceSubTypes : undefined; resourceInputs["cseResourceType"] = args ? args.cseResourceType : undefined; resourceInputs["enabled"] = args ? args.enabled : undefined; resourceInputs["executionTypes"] = args ? args.executionTypes : undefined; resourceInputs["playbookId"] = args ? args.playbookId : undefined; resourceInputs["description"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(CseAutomation.__pulumiType, name, resourceInputs, opts); } } exports.CseAutomation = CseAutomation; /** @internal */ CseAutomation.__pulumiType = 'sumologic:index/cseAutomation:CseAutomation'; //# sourceMappingURL=cseAutomation.js.map