UNPKG

@pulumi/sumologic

Version:

A Pulumi package for creating and managing sumologic cloud resources.

66 lines 3.3 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.RoleV2 = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Provider to manage Sumologic Role v2 */ class RoleV2 extends pulumi.CustomResource { /** * Get an existing RoleV2 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 RoleV2(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of RoleV2. 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'] === RoleV2.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["auditDataFilter"] = state ? state.auditDataFilter : undefined; resourceInputs["capabilities"] = state ? state.capabilities : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["logAnalyticsFilter"] = state ? state.logAnalyticsFilter : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["securityDataFilter"] = state ? state.securityDataFilter : undefined; resourceInputs["selectedViews"] = state ? state.selectedViews : undefined; resourceInputs["selectionType"] = state ? state.selectionType : undefined; } else { const args = argsOrState; resourceInputs["auditDataFilter"] = args ? args.auditDataFilter : undefined; resourceInputs["capabilities"] = args ? args.capabilities : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["logAnalyticsFilter"] = args ? args.logAnalyticsFilter : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["securityDataFilter"] = args ? args.securityDataFilter : undefined; resourceInputs["selectedViews"] = args ? args.selectedViews : undefined; resourceInputs["selectionType"] = args ? args.selectionType : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(RoleV2.__pulumiType, name, resourceInputs, opts); } } exports.RoleV2 = RoleV2; /** @internal */ RoleV2.__pulumiType = 'sumologic:index/roleV2:RoleV2'; //# sourceMappingURL=roleV2.js.map