UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

82 lines 3.55 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.SecurityConfig = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage iam security config * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.iam.SecurityConfig("foo", { * safeAuthExemptDuration: 11, * safeAuthType: "email", * userName: "jonny", * }); * ``` * * ## Import * * Iam SecurityConfig key don't support import */ class SecurityConfig extends pulumi.CustomResource { /** * Get an existing SecurityConfig 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 SecurityConfig(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of SecurityConfig. 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'] === SecurityConfig.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["safeAuthClose"] = state ? state.safeAuthClose : undefined; resourceInputs["safeAuthExemptDuration"] = state ? state.safeAuthExemptDuration : undefined; resourceInputs["safeAuthType"] = state ? state.safeAuthType : undefined; resourceInputs["userId"] = state ? state.userId : undefined; resourceInputs["userName"] = state ? state.userName : undefined; } else { const args = argsOrState; if ((!args || args.safeAuthType === undefined) && !opts.urn) { throw new Error("Missing required property 'safeAuthType'"); } if ((!args || args.userName === undefined) && !opts.urn) { throw new Error("Missing required property 'userName'"); } resourceInputs["safeAuthExemptDuration"] = args ? args.safeAuthExemptDuration : undefined; resourceInputs["safeAuthType"] = args ? args.safeAuthType : undefined; resourceInputs["userName"] = args ? args.userName : undefined; resourceInputs["safeAuthClose"] = undefined /*out*/; resourceInputs["userId"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(SecurityConfig.__pulumiType, name, resourceInputs, opts); } } exports.SecurityConfig = SecurityConfig; /** @internal */ SecurityConfig.__pulumiType = 'volcengine:iam/securityConfig:SecurityConfig'; //# sourceMappingURL=securityConfig.js.map