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

124 lines 8.31 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.AuthorizationProfile = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This resource can manage an authorization profiles policy element. * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:networkaccess/authorizationProfile:AuthorizationProfile example "76d24097-41c4-4558-a4d0-a8c07ac08470" * ``` */ class AuthorizationProfile extends pulumi.CustomResource { /** * Get an existing AuthorizationProfile 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 AuthorizationProfile(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of AuthorizationProfile. 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'] === AuthorizationProfile.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["accessType"] = state ? state.accessType : undefined; resourceInputs["acl"] = state ? state.acl : undefined; resourceInputs["advancedAttributes"] = state ? state.advancedAttributes : undefined; resourceInputs["agentlessPosture"] = state ? state.agentlessPosture : undefined; resourceInputs["airespaceAcl"] = state ? state.airespaceAcl : undefined; resourceInputs["airespaceIpv6Acl"] = state ? state.airespaceIpv6Acl : undefined; resourceInputs["asaVpn"] = state ? state.asaVpn : undefined; resourceInputs["autoSmartPort"] = state ? state.autoSmartPort : undefined; resourceInputs["avcProfile"] = state ? state.avcProfile : undefined; resourceInputs["daclName"] = state ? state.daclName : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["easywiredSessionCandidate"] = state ? state.easywiredSessionCandidate : undefined; resourceInputs["interfaceTemplate"] = state ? state.interfaceTemplate : undefined; resourceInputs["ipv6AclFilter"] = state ? state.ipv6AclFilter : undefined; resourceInputs["ipv6DaclName"] = state ? state.ipv6DaclName : undefined; resourceInputs["macSecPolicy"] = state ? state.macSecPolicy : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["neat"] = state ? state.neat : undefined; resourceInputs["profileName"] = state ? state.profileName : undefined; resourceInputs["reauthenticationConnectivity"] = state ? state.reauthenticationConnectivity : undefined; resourceInputs["reauthenticationTimer"] = state ? state.reauthenticationTimer : undefined; resourceInputs["serviceTemplate"] = state ? state.serviceTemplate : undefined; resourceInputs["trackMovement"] = state ? state.trackMovement : undefined; resourceInputs["uniqueIdentifier"] = state ? state.uniqueIdentifier : undefined; resourceInputs["vlanNameId"] = state ? state.vlanNameId : undefined; resourceInputs["vlanTagId"] = state ? state.vlanTagId : undefined; resourceInputs["voiceDomainPermission"] = state ? state.voiceDomainPermission : undefined; resourceInputs["webAuth"] = state ? state.webAuth : undefined; resourceInputs["webRedirectionAcl"] = state ? state.webRedirectionAcl : undefined; resourceInputs["webRedirectionDisplayCertificatesRenewalMessages"] = state ? state.webRedirectionDisplayCertificatesRenewalMessages : undefined; resourceInputs["webRedirectionPortalName"] = state ? state.webRedirectionPortalName : undefined; resourceInputs["webRedirectionStaticIpHostNameFqdn"] = state ? state.webRedirectionStaticIpHostNameFqdn : undefined; resourceInputs["webRedirectionType"] = state ? state.webRedirectionType : undefined; } else { const args = argsOrState; resourceInputs["accessType"] = args ? args.accessType : undefined; resourceInputs["acl"] = args ? args.acl : undefined; resourceInputs["advancedAttributes"] = args ? args.advancedAttributes : undefined; resourceInputs["agentlessPosture"] = args ? args.agentlessPosture : undefined; resourceInputs["airespaceAcl"] = args ? args.airespaceAcl : undefined; resourceInputs["airespaceIpv6Acl"] = args ? args.airespaceIpv6Acl : undefined; resourceInputs["asaVpn"] = args ? args.asaVpn : undefined; resourceInputs["autoSmartPort"] = args ? args.autoSmartPort : undefined; resourceInputs["avcProfile"] = args ? args.avcProfile : undefined; resourceInputs["daclName"] = args ? args.daclName : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["easywiredSessionCandidate"] = args ? args.easywiredSessionCandidate : undefined; resourceInputs["interfaceTemplate"] = args ? args.interfaceTemplate : undefined; resourceInputs["ipv6AclFilter"] = args ? args.ipv6AclFilter : undefined; resourceInputs["ipv6DaclName"] = args ? args.ipv6DaclName : undefined; resourceInputs["macSecPolicy"] = args ? args.macSecPolicy : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["neat"] = args ? args.neat : undefined; resourceInputs["profileName"] = args ? args.profileName : undefined; resourceInputs["reauthenticationConnectivity"] = args ? args.reauthenticationConnectivity : undefined; resourceInputs["reauthenticationTimer"] = args ? args.reauthenticationTimer : undefined; resourceInputs["serviceTemplate"] = args ? args.serviceTemplate : undefined; resourceInputs["trackMovement"] = args ? args.trackMovement : undefined; resourceInputs["uniqueIdentifier"] = args ? args.uniqueIdentifier : undefined; resourceInputs["vlanNameId"] = args ? args.vlanNameId : undefined; resourceInputs["vlanTagId"] = args ? args.vlanTagId : undefined; resourceInputs["voiceDomainPermission"] = args ? args.voiceDomainPermission : undefined; resourceInputs["webAuth"] = args ? args.webAuth : undefined; resourceInputs["webRedirectionAcl"] = args ? args.webRedirectionAcl : undefined; resourceInputs["webRedirectionDisplayCertificatesRenewalMessages"] = args ? args.webRedirectionDisplayCertificatesRenewalMessages : undefined; resourceInputs["webRedirectionPortalName"] = args ? args.webRedirectionPortalName : undefined; resourceInputs["webRedirectionStaticIpHostNameFqdn"] = args ? args.webRedirectionStaticIpHostNameFqdn : undefined; resourceInputs["webRedirectionType"] = args ? args.webRedirectionType : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(AuthorizationProfile.__pulumiType, name, resourceInputs, opts); } } exports.AuthorizationProfile = AuthorizationProfile; /** @internal */ AuthorizationProfile.__pulumiType = 'ise:networkaccess/authorizationProfile:AuthorizationProfile'; //# sourceMappingURL=authorizationProfile.js.map