UNPKG

@pulumi/ise

Version:

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1

127 lines 8.35 kB
"use strict"; // *** 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.ActiveDirectoryJoinPoint = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This resource can manage an Active Directory Join Point. * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:identitymanagement/activeDirectoryJoinPoint:ActiveDirectoryJoinPoint example "76d24097-41c4-4558-a4d0-a8c07ac08470" * ``` */ class ActiveDirectoryJoinPoint extends pulumi.CustomResource { /** * Get an existing ActiveDirectoryJoinPoint 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 ActiveDirectoryJoinPoint(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of ActiveDirectoryJoinPoint. 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'] === ActiveDirectoryJoinPoint.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["adScopesNames"] = state ? state.adScopesNames : undefined; resourceInputs["agingTime"] = state ? state.agingTime : undefined; resourceInputs["attributes"] = state ? state.attributes : undefined; resourceInputs["authProtectionType"] = state ? state.authProtectionType : undefined; resourceInputs["country"] = state ? state.country : undefined; resourceInputs["department"] = state ? state.department : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["domain"] = state ? state.domain : undefined; resourceInputs["email"] = state ? state.email : undefined; resourceInputs["enableCallbackForDialinClient"] = state ? state.enableCallbackForDialinClient : undefined; resourceInputs["enableDialinPermissionCheck"] = state ? state.enableDialinPermissionCheck : undefined; resourceInputs["enableDomainAllowedList"] = state ? state.enableDomainAllowedList : undefined; resourceInputs["enableFailedAuthProtection"] = state ? state.enableFailedAuthProtection : undefined; resourceInputs["enableMachineAccess"] = state ? state.enableMachineAccess : undefined; resourceInputs["enableMachineAuth"] = state ? state.enableMachineAuth : undefined; resourceInputs["enablePassChange"] = state ? state.enablePassChange : undefined; resourceInputs["enableRewrites"] = state ? state.enableRewrites : undefined; resourceInputs["failedAuthThreshold"] = state ? state.failedAuthThreshold : undefined; resourceInputs["firstName"] = state ? state.firstName : undefined; resourceInputs["groups"] = state ? state.groups : undefined; resourceInputs["identityNotInAdBehaviour"] = state ? state.identityNotInAdBehaviour : undefined; resourceInputs["jobTitle"] = state ? state.jobTitle : undefined; resourceInputs["lastName"] = state ? state.lastName : undefined; resourceInputs["locality"] = state ? state.locality : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["organizationalUnit"] = state ? state.organizationalUnit : undefined; resourceInputs["plaintextAuth"] = state ? state.plaintextAuth : undefined; resourceInputs["rewriteRules"] = state ? state.rewriteRules : undefined; resourceInputs["schema"] = state ? state.schema : undefined; resourceInputs["stateOrProvince"] = state ? state.stateOrProvince : undefined; resourceInputs["streetAddress"] = state ? state.streetAddress : undefined; resourceInputs["telephone"] = state ? state.telephone : undefined; resourceInputs["unreachableDomainsBehaviour"] = state ? state.unreachableDomainsBehaviour : undefined; } else { const args = argsOrState; if ((!args || args.domain === undefined) && !opts.urn) { throw new Error("Missing required property 'domain'"); } resourceInputs["adScopesNames"] = args ? args.adScopesNames : undefined; resourceInputs["agingTime"] = args ? args.agingTime : undefined; resourceInputs["attributes"] = args ? args.attributes : undefined; resourceInputs["authProtectionType"] = args ? args.authProtectionType : undefined; resourceInputs["country"] = args ? args.country : undefined; resourceInputs["department"] = args ? args.department : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["domain"] = args ? args.domain : undefined; resourceInputs["email"] = args ? args.email : undefined; resourceInputs["enableCallbackForDialinClient"] = args ? args.enableCallbackForDialinClient : undefined; resourceInputs["enableDialinPermissionCheck"] = args ? args.enableDialinPermissionCheck : undefined; resourceInputs["enableDomainAllowedList"] = args ? args.enableDomainAllowedList : undefined; resourceInputs["enableFailedAuthProtection"] = args ? args.enableFailedAuthProtection : undefined; resourceInputs["enableMachineAccess"] = args ? args.enableMachineAccess : undefined; resourceInputs["enableMachineAuth"] = args ? args.enableMachineAuth : undefined; resourceInputs["enablePassChange"] = args ? args.enablePassChange : undefined; resourceInputs["enableRewrites"] = args ? args.enableRewrites : undefined; resourceInputs["failedAuthThreshold"] = args ? args.failedAuthThreshold : undefined; resourceInputs["firstName"] = args ? args.firstName : undefined; resourceInputs["groups"] = args ? args.groups : undefined; resourceInputs["identityNotInAdBehaviour"] = args ? args.identityNotInAdBehaviour : undefined; resourceInputs["jobTitle"] = args ? args.jobTitle : undefined; resourceInputs["lastName"] = args ? args.lastName : undefined; resourceInputs["locality"] = args ? args.locality : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["organizationalUnit"] = args ? args.organizationalUnit : undefined; resourceInputs["plaintextAuth"] = args ? args.plaintextAuth : undefined; resourceInputs["rewriteRules"] = args ? args.rewriteRules : undefined; resourceInputs["schema"] = args ? args.schema : undefined; resourceInputs["stateOrProvince"] = args ? args.stateOrProvince : undefined; resourceInputs["streetAddress"] = args ? args.streetAddress : undefined; resourceInputs["telephone"] = args ? args.telephone : undefined; resourceInputs["unreachableDomainsBehaviour"] = args ? args.unreachableDomainsBehaviour : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(ActiveDirectoryJoinPoint.__pulumiType, name, resourceInputs, opts); } } exports.ActiveDirectoryJoinPoint = ActiveDirectoryJoinPoint; /** @internal */ ActiveDirectoryJoinPoint.__pulumiType = 'ise:identitymanagement/activeDirectoryJoinPoint:ActiveDirectoryJoinPoint'; //# sourceMappingURL=activeDirectoryJoinPoint.js.map