@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
345 lines • 24 kB
JavaScript
;
// *** 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.AllowedProtocols = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* This resource can manage an allowed protocols policy element.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = new ise.networkaccess.AllowedProtocols("example", {
* name: "Protocols1",
* description: "My allowed protocols",
* processHostLookup: true,
* allowPapAscii: true,
* allowChap: true,
* allowMsChapV1: true,
* allowMsChapV2: true,
* allowEapMd5: true,
* allowLeap: true,
* allowEapTls: true,
* allowEapTtls: true,
* allowEapFast: true,
* allowPeap: true,
* allowTeap: true,
* allowPreferredEapProtocol: true,
* preferredEapProtocol: "LEAP",
* eapTlsLBit: true,
* allowWeakCiphersForEap: true,
* requireMessageAuth: true,
* eapTlsAllowAuthOfExpiredCerts: true,
* eapTlsEnableStatelessSessionResume: true,
* eapTlsSessionTicketTtl: 5,
* eapTlsSessionTicketTtlUnit: "DAYS",
* eapTlsSessionTicketPercentage: 5,
* peapAllowPeapEapMsChapV2: true,
* peapAllowPeapEapMsChapV2PwdChange: true,
* peapAllowPeapEapMsChapV2PwdChangeRetries: 3,
* peapAllowPeapEapGtc: true,
* peapAllowPeapEapGtcPwdChange: true,
* peapAllowPeapEapGtcPwdChangeRetries: 3,
* peapAllowPeapEapTls: true,
* peapAllowPeapEapTlsAuthOfExpiredCerts: true,
* requireCryptobinding: true,
* peapPeapV0: true,
* eapTtlsPapAscii: true,
* eapTtlsChap: true,
* eapTtlsMsChapV1: true,
* eapTtlsMsChapV2: true,
* eapTtlsEapMd5: true,
* eapTtlsEapMsChapV2: true,
* eapTtlsEapMsChapV2PwdChange: true,
* eapTtlsEapMsChapV2PwdChangeRetries: 3,
* eapFastEapMsChapV2: true,
* eapFastEapMsChapV2PwdChange: true,
* eapFastEapMsChapV2PwdChangeRetries: 3,
* eapFastEapGtc: true,
* eapFastEapGtcPwdChange: true,
* eapFastEapGtcPwdChangeRetries: 3,
* eapFastEapTls: true,
* eapFastEapTlsAuthOfExpiredCerts: true,
* eapFastEnableEapChaining: true,
* eapFastUsePacs: true,
* eapFastPacsTunnelPacTtl: 5,
* eapFastPacsTunnelPacTtlUnit: "DAYS",
* eapFastPacsUseProactivePacUpdatePercentage: 5,
* eapFastPacsAllowAnonymousProvisioning: true,
* eapFastPacsAllowAuthenticatedProvisioning: true,
* eapFastPacsServerReturns: true,
* eapFastPacsAllowClientCert: true,
* eapFastPacsAllowMachineAuthentication: true,
* eapFastPacsMachinePacTtl: 5,
* eapFastPacsMachinePacTtlUnit: "DAYS",
* eapFastPacsStatelessSessionResume: true,
* eapFastPacsAuthorizationPacTtl: 5,
* eapFastPacsAuthorizationPacTtlUnit: "HOURS",
* teapEapMsChapV2: true,
* teapEapMsChapV2PwdChange: true,
* teapEapMsChapV2PwdChangeRetries: 3,
* teapEapTls: true,
* teapEapTlsAuthOfExpiredCerts: true,
* teapEapAcceptClientCertDuringTunnelEst: true,
* teapEapChaining: true,
* teapDowngradeMsk: true,
* teapRequestBasicPwdAuth: true,
* allow5g: true,
* });
* ```
*
* ## Import
*
* The `pulumi import` command can be used, for example:
*
* ```sh
* $ pulumi import ise:networkaccess/allowedProtocols:AllowedProtocols example "76d24097-41c4-4558-a4d0-a8c07ac08470"
* ```
*/
class AllowedProtocols extends pulumi.CustomResource {
/**
* Get an existing AllowedProtocols 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 AllowedProtocols(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of AllowedProtocols. 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'] === AllowedProtocols.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["allow5g"] = state ? state.allow5g : undefined;
resourceInputs["allowChap"] = state ? state.allowChap : undefined;
resourceInputs["allowEapFast"] = state ? state.allowEapFast : undefined;
resourceInputs["allowEapMd5"] = state ? state.allowEapMd5 : undefined;
resourceInputs["allowEapTls"] = state ? state.allowEapTls : undefined;
resourceInputs["allowEapTtls"] = state ? state.allowEapTtls : undefined;
resourceInputs["allowLeap"] = state ? state.allowLeap : undefined;
resourceInputs["allowMsChapV1"] = state ? state.allowMsChapV1 : undefined;
resourceInputs["allowMsChapV2"] = state ? state.allowMsChapV2 : undefined;
resourceInputs["allowPapAscii"] = state ? state.allowPapAscii : undefined;
resourceInputs["allowPeap"] = state ? state.allowPeap : undefined;
resourceInputs["allowPreferredEapProtocol"] = state ? state.allowPreferredEapProtocol : undefined;
resourceInputs["allowTeap"] = state ? state.allowTeap : undefined;
resourceInputs["allowWeakCiphersForEap"] = state ? state.allowWeakCiphersForEap : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["eapFastAcceptClientCert"] = state ? state.eapFastAcceptClientCert : undefined;
resourceInputs["eapFastAllowMachineAuthentication"] = state ? state.eapFastAllowMachineAuthentication : undefined;
resourceInputs["eapFastEapGtc"] = state ? state.eapFastEapGtc : undefined;
resourceInputs["eapFastEapGtcPwdChange"] = state ? state.eapFastEapGtcPwdChange : undefined;
resourceInputs["eapFastEapGtcPwdChangeRetries"] = state ? state.eapFastEapGtcPwdChangeRetries : undefined;
resourceInputs["eapFastEapMsChapV2"] = state ? state.eapFastEapMsChapV2 : undefined;
resourceInputs["eapFastEapMsChapV2PwdChange"] = state ? state.eapFastEapMsChapV2PwdChange : undefined;
resourceInputs["eapFastEapMsChapV2PwdChangeRetries"] = state ? state.eapFastEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["eapFastEapTls"] = state ? state.eapFastEapTls : undefined;
resourceInputs["eapFastEapTlsAuthOfExpiredCerts"] = state ? state.eapFastEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["eapFastEnableEapChaining"] = state ? state.eapFastEnableEapChaining : undefined;
resourceInputs["eapFastPacsAllowAnonymousProvisioning"] = state ? state.eapFastPacsAllowAnonymousProvisioning : undefined;
resourceInputs["eapFastPacsAllowAuthenticatedProvisioning"] = state ? state.eapFastPacsAllowAuthenticatedProvisioning : undefined;
resourceInputs["eapFastPacsAllowClientCert"] = state ? state.eapFastPacsAllowClientCert : undefined;
resourceInputs["eapFastPacsAllowMachineAuthentication"] = state ? state.eapFastPacsAllowMachineAuthentication : undefined;
resourceInputs["eapFastPacsAuthorizationPacTtl"] = state ? state.eapFastPacsAuthorizationPacTtl : undefined;
resourceInputs["eapFastPacsAuthorizationPacTtlUnit"] = state ? state.eapFastPacsAuthorizationPacTtlUnit : undefined;
resourceInputs["eapFastPacsMachinePacTtl"] = state ? state.eapFastPacsMachinePacTtl : undefined;
resourceInputs["eapFastPacsMachinePacTtlUnit"] = state ? state.eapFastPacsMachinePacTtlUnit : undefined;
resourceInputs["eapFastPacsServerReturns"] = state ? state.eapFastPacsServerReturns : undefined;
resourceInputs["eapFastPacsStatelessSessionResume"] = state ? state.eapFastPacsStatelessSessionResume : undefined;
resourceInputs["eapFastPacsTunnelPacTtl"] = state ? state.eapFastPacsTunnelPacTtl : undefined;
resourceInputs["eapFastPacsTunnelPacTtlUnit"] = state ? state.eapFastPacsTunnelPacTtlUnit : undefined;
resourceInputs["eapFastPacsUseProactivePacUpdatePercentage"] = state ? state.eapFastPacsUseProactivePacUpdatePercentage : undefined;
resourceInputs["eapFastUsePacs"] = state ? state.eapFastUsePacs : undefined;
resourceInputs["eapTlsAllowAuthOfExpiredCerts"] = state ? state.eapTlsAllowAuthOfExpiredCerts : undefined;
resourceInputs["eapTlsEnableStatelessSessionResume"] = state ? state.eapTlsEnableStatelessSessionResume : undefined;
resourceInputs["eapTlsLBit"] = state ? state.eapTlsLBit : undefined;
resourceInputs["eapTlsSessionTicketPercentage"] = state ? state.eapTlsSessionTicketPercentage : undefined;
resourceInputs["eapTlsSessionTicketTtl"] = state ? state.eapTlsSessionTicketTtl : undefined;
resourceInputs["eapTlsSessionTicketTtlUnit"] = state ? state.eapTlsSessionTicketTtlUnit : undefined;
resourceInputs["eapTtlsChap"] = state ? state.eapTtlsChap : undefined;
resourceInputs["eapTtlsEapMd5"] = state ? state.eapTtlsEapMd5 : undefined;
resourceInputs["eapTtlsEapMsChapV2"] = state ? state.eapTtlsEapMsChapV2 : undefined;
resourceInputs["eapTtlsEapMsChapV2PwdChange"] = state ? state.eapTtlsEapMsChapV2PwdChange : undefined;
resourceInputs["eapTtlsEapMsChapV2PwdChangeRetries"] = state ? state.eapTtlsEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["eapTtlsMsChapV1"] = state ? state.eapTtlsMsChapV1 : undefined;
resourceInputs["eapTtlsMsChapV2"] = state ? state.eapTtlsMsChapV2 : undefined;
resourceInputs["eapTtlsPapAscii"] = state ? state.eapTtlsPapAscii : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["peapAllowPeapEapGtc"] = state ? state.peapAllowPeapEapGtc : undefined;
resourceInputs["peapAllowPeapEapGtcPwdChange"] = state ? state.peapAllowPeapEapGtcPwdChange : undefined;
resourceInputs["peapAllowPeapEapGtcPwdChangeRetries"] = state ? state.peapAllowPeapEapGtcPwdChangeRetries : undefined;
resourceInputs["peapAllowPeapEapMsChapV2"] = state ? state.peapAllowPeapEapMsChapV2 : undefined;
resourceInputs["peapAllowPeapEapMsChapV2PwdChange"] = state ? state.peapAllowPeapEapMsChapV2PwdChange : undefined;
resourceInputs["peapAllowPeapEapMsChapV2PwdChangeRetries"] = state ? state.peapAllowPeapEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["peapAllowPeapEapTls"] = state ? state.peapAllowPeapEapTls : undefined;
resourceInputs["peapAllowPeapEapTlsAuthOfExpiredCerts"] = state ? state.peapAllowPeapEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["peapPeapV0"] = state ? state.peapPeapV0 : undefined;
resourceInputs["preferredEapProtocol"] = state ? state.preferredEapProtocol : undefined;
resourceInputs["processHostLookup"] = state ? state.processHostLookup : undefined;
resourceInputs["requireCryptobinding"] = state ? state.requireCryptobinding : undefined;
resourceInputs["requireMessageAuth"] = state ? state.requireMessageAuth : undefined;
resourceInputs["teapDowngradeMsk"] = state ? state.teapDowngradeMsk : undefined;
resourceInputs["teapEapAcceptClientCertDuringTunnelEst"] = state ? state.teapEapAcceptClientCertDuringTunnelEst : undefined;
resourceInputs["teapEapChaining"] = state ? state.teapEapChaining : undefined;
resourceInputs["teapEapMsChapV2"] = state ? state.teapEapMsChapV2 : undefined;
resourceInputs["teapEapMsChapV2PwdChange"] = state ? state.teapEapMsChapV2PwdChange : undefined;
resourceInputs["teapEapMsChapV2PwdChangeRetries"] = state ? state.teapEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["teapEapTls"] = state ? state.teapEapTls : undefined;
resourceInputs["teapEapTlsAuthOfExpiredCerts"] = state ? state.teapEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["teapRequestBasicPwdAuth"] = state ? state.teapRequestBasicPwdAuth : undefined;
}
else {
const args = argsOrState;
if ((!args || args.allowChap === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowChap'");
}
if ((!args || args.allowEapFast === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowEapFast'");
}
if ((!args || args.allowEapMd5 === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowEapMd5'");
}
if ((!args || args.allowEapTls === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowEapTls'");
}
if ((!args || args.allowEapTtls === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowEapTtls'");
}
if ((!args || args.allowLeap === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowLeap'");
}
if ((!args || args.allowMsChapV1 === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowMsChapV1'");
}
if ((!args || args.allowMsChapV2 === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowMsChapV2'");
}
if ((!args || args.allowPapAscii === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowPapAscii'");
}
if ((!args || args.allowPeap === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowPeap'");
}
if ((!args || args.allowPreferredEapProtocol === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowPreferredEapProtocol'");
}
if ((!args || args.allowTeap === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowTeap'");
}
if ((!args || args.allowWeakCiphersForEap === undefined) && !opts.urn) {
throw new Error("Missing required property 'allowWeakCiphersForEap'");
}
if ((!args || args.eapTlsLBit === undefined) && !opts.urn) {
throw new Error("Missing required property 'eapTlsLBit'");
}
if ((!args || args.processHostLookup === undefined) && !opts.urn) {
throw new Error("Missing required property 'processHostLookup'");
}
if ((!args || args.requireMessageAuth === undefined) && !opts.urn) {
throw new Error("Missing required property 'requireMessageAuth'");
}
resourceInputs["allow5g"] = args ? args.allow5g : undefined;
resourceInputs["allowChap"] = args ? args.allowChap : undefined;
resourceInputs["allowEapFast"] = args ? args.allowEapFast : undefined;
resourceInputs["allowEapMd5"] = args ? args.allowEapMd5 : undefined;
resourceInputs["allowEapTls"] = args ? args.allowEapTls : undefined;
resourceInputs["allowEapTtls"] = args ? args.allowEapTtls : undefined;
resourceInputs["allowLeap"] = args ? args.allowLeap : undefined;
resourceInputs["allowMsChapV1"] = args ? args.allowMsChapV1 : undefined;
resourceInputs["allowMsChapV2"] = args ? args.allowMsChapV2 : undefined;
resourceInputs["allowPapAscii"] = args ? args.allowPapAscii : undefined;
resourceInputs["allowPeap"] = args ? args.allowPeap : undefined;
resourceInputs["allowPreferredEapProtocol"] = args ? args.allowPreferredEapProtocol : undefined;
resourceInputs["allowTeap"] = args ? args.allowTeap : undefined;
resourceInputs["allowWeakCiphersForEap"] = args ? args.allowWeakCiphersForEap : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["eapFastAcceptClientCert"] = args ? args.eapFastAcceptClientCert : undefined;
resourceInputs["eapFastAllowMachineAuthentication"] = args ? args.eapFastAllowMachineAuthentication : undefined;
resourceInputs["eapFastEapGtc"] = args ? args.eapFastEapGtc : undefined;
resourceInputs["eapFastEapGtcPwdChange"] = args ? args.eapFastEapGtcPwdChange : undefined;
resourceInputs["eapFastEapGtcPwdChangeRetries"] = args ? args.eapFastEapGtcPwdChangeRetries : undefined;
resourceInputs["eapFastEapMsChapV2"] = args ? args.eapFastEapMsChapV2 : undefined;
resourceInputs["eapFastEapMsChapV2PwdChange"] = args ? args.eapFastEapMsChapV2PwdChange : undefined;
resourceInputs["eapFastEapMsChapV2PwdChangeRetries"] = args ? args.eapFastEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["eapFastEapTls"] = args ? args.eapFastEapTls : undefined;
resourceInputs["eapFastEapTlsAuthOfExpiredCerts"] = args ? args.eapFastEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["eapFastEnableEapChaining"] = args ? args.eapFastEnableEapChaining : undefined;
resourceInputs["eapFastPacsAllowAnonymousProvisioning"] = args ? args.eapFastPacsAllowAnonymousProvisioning : undefined;
resourceInputs["eapFastPacsAllowAuthenticatedProvisioning"] = args ? args.eapFastPacsAllowAuthenticatedProvisioning : undefined;
resourceInputs["eapFastPacsAllowClientCert"] = args ? args.eapFastPacsAllowClientCert : undefined;
resourceInputs["eapFastPacsAllowMachineAuthentication"] = args ? args.eapFastPacsAllowMachineAuthentication : undefined;
resourceInputs["eapFastPacsAuthorizationPacTtl"] = args ? args.eapFastPacsAuthorizationPacTtl : undefined;
resourceInputs["eapFastPacsAuthorizationPacTtlUnit"] = args ? args.eapFastPacsAuthorizationPacTtlUnit : undefined;
resourceInputs["eapFastPacsMachinePacTtl"] = args ? args.eapFastPacsMachinePacTtl : undefined;
resourceInputs["eapFastPacsMachinePacTtlUnit"] = args ? args.eapFastPacsMachinePacTtlUnit : undefined;
resourceInputs["eapFastPacsServerReturns"] = args ? args.eapFastPacsServerReturns : undefined;
resourceInputs["eapFastPacsStatelessSessionResume"] = args ? args.eapFastPacsStatelessSessionResume : undefined;
resourceInputs["eapFastPacsTunnelPacTtl"] = args ? args.eapFastPacsTunnelPacTtl : undefined;
resourceInputs["eapFastPacsTunnelPacTtlUnit"] = args ? args.eapFastPacsTunnelPacTtlUnit : undefined;
resourceInputs["eapFastPacsUseProactivePacUpdatePercentage"] = args ? args.eapFastPacsUseProactivePacUpdatePercentage : undefined;
resourceInputs["eapFastUsePacs"] = args ? args.eapFastUsePacs : undefined;
resourceInputs["eapTlsAllowAuthOfExpiredCerts"] = args ? args.eapTlsAllowAuthOfExpiredCerts : undefined;
resourceInputs["eapTlsEnableStatelessSessionResume"] = args ? args.eapTlsEnableStatelessSessionResume : undefined;
resourceInputs["eapTlsLBit"] = args ? args.eapTlsLBit : undefined;
resourceInputs["eapTlsSessionTicketPercentage"] = args ? args.eapTlsSessionTicketPercentage : undefined;
resourceInputs["eapTlsSessionTicketTtl"] = args ? args.eapTlsSessionTicketTtl : undefined;
resourceInputs["eapTlsSessionTicketTtlUnit"] = args ? args.eapTlsSessionTicketTtlUnit : undefined;
resourceInputs["eapTtlsChap"] = args ? args.eapTtlsChap : undefined;
resourceInputs["eapTtlsEapMd5"] = args ? args.eapTtlsEapMd5 : undefined;
resourceInputs["eapTtlsEapMsChapV2"] = args ? args.eapTtlsEapMsChapV2 : undefined;
resourceInputs["eapTtlsEapMsChapV2PwdChange"] = args ? args.eapTtlsEapMsChapV2PwdChange : undefined;
resourceInputs["eapTtlsEapMsChapV2PwdChangeRetries"] = args ? args.eapTtlsEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["eapTtlsMsChapV1"] = args ? args.eapTtlsMsChapV1 : undefined;
resourceInputs["eapTtlsMsChapV2"] = args ? args.eapTtlsMsChapV2 : undefined;
resourceInputs["eapTtlsPapAscii"] = args ? args.eapTtlsPapAscii : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["peapAllowPeapEapGtc"] = args ? args.peapAllowPeapEapGtc : undefined;
resourceInputs["peapAllowPeapEapGtcPwdChange"] = args ? args.peapAllowPeapEapGtcPwdChange : undefined;
resourceInputs["peapAllowPeapEapGtcPwdChangeRetries"] = args ? args.peapAllowPeapEapGtcPwdChangeRetries : undefined;
resourceInputs["peapAllowPeapEapMsChapV2"] = args ? args.peapAllowPeapEapMsChapV2 : undefined;
resourceInputs["peapAllowPeapEapMsChapV2PwdChange"] = args ? args.peapAllowPeapEapMsChapV2PwdChange : undefined;
resourceInputs["peapAllowPeapEapMsChapV2PwdChangeRetries"] = args ? args.peapAllowPeapEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["peapAllowPeapEapTls"] = args ? args.peapAllowPeapEapTls : undefined;
resourceInputs["peapAllowPeapEapTlsAuthOfExpiredCerts"] = args ? args.peapAllowPeapEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["peapPeapV0"] = args ? args.peapPeapV0 : undefined;
resourceInputs["preferredEapProtocol"] = args ? args.preferredEapProtocol : undefined;
resourceInputs["processHostLookup"] = args ? args.processHostLookup : undefined;
resourceInputs["requireCryptobinding"] = args ? args.requireCryptobinding : undefined;
resourceInputs["requireMessageAuth"] = args ? args.requireMessageAuth : undefined;
resourceInputs["teapDowngradeMsk"] = args ? args.teapDowngradeMsk : undefined;
resourceInputs["teapEapAcceptClientCertDuringTunnelEst"] = args ? args.teapEapAcceptClientCertDuringTunnelEst : undefined;
resourceInputs["teapEapChaining"] = args ? args.teapEapChaining : undefined;
resourceInputs["teapEapMsChapV2"] = args ? args.teapEapMsChapV2 : undefined;
resourceInputs["teapEapMsChapV2PwdChange"] = args ? args.teapEapMsChapV2PwdChange : undefined;
resourceInputs["teapEapMsChapV2PwdChangeRetries"] = args ? args.teapEapMsChapV2PwdChangeRetries : undefined;
resourceInputs["teapEapTls"] = args ? args.teapEapTls : undefined;
resourceInputs["teapEapTlsAuthOfExpiredCerts"] = args ? args.teapEapTlsAuthOfExpiredCerts : undefined;
resourceInputs["teapRequestBasicPwdAuth"] = args ? args.teapRequestBasicPwdAuth : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(AllowedProtocols.__pulumiType, name, resourceInputs, opts);
}
}
exports.AllowedProtocols = AllowedProtocols;
/** @internal */
AllowedProtocols.__pulumiType = 'ise:networkaccess/allowedProtocols:AllowedProtocols';
//# sourceMappingURL=allowedProtocols.js.map