import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Other TrustSec Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getOtherTrustsecFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getOtherTrustsecFeature(args: GetOtherTrustsecFeatureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOtherTrustsecFeature. */ export interface GetOtherTrustsecFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id?: string; /** * The name of the Feature */ name?: string; } /** * A collection of values returned by getOtherTrustsecFeature. */ export interface GetOtherTrustsecFeatureResult { /** * The description of the Feature */ readonly description: string; /** * Specify the TrustSec Network Access Device ID, should be same as mentioned in the Identity Services Engine (upto 32 char) */ readonly deviceId: string; /** * Variable name */ readonly deviceIdVariable: string; /** * Set the password for the device */ readonly devicePassword: string; /** * Variable name */ readonly devicePasswordVariable: string; /** * Configure Local device security group \n\n */ readonly deviceSgt: number; /** * Variable name */ readonly deviceSgtVariable: string; /** * Enable Role-based Access Control enforcement */ readonly enableEnforcement: boolean; /** * Variable name */ readonly enableEnforcementVariable: string; /** * Enable CTS SXP support */ readonly enableSxp: boolean; /** * Feature Profile ID */ readonly featureProfileId: string; /** * The id of the Feature */ readonly id: string; /** * Configure Maximum allowed hold-time for listener in seconds \n\n */ readonly listenerHoldTimeMax: number; /** * Variable name */ readonly listenerHoldTimeMaxVariable: string; /** * Configure Minimum allowed hold-time for listener in seconds \n\n */ readonly listenerHoldTimeMin: number; /** * Variable name */ readonly listenerHoldTimeMinVariable: string; /** * The name of the Feature */ readonly name: string; /** * Configure Speaker hold-time in seconds \n\n */ readonly speakerHoldTime: number; /** * Variable name */ readonly speakerHoldTimeVariable: string; /** * Configure SXP Connections */ readonly sxpConnections: outputs.GetOtherTrustsecFeatureSxpConnection[]; /** * Configure SXP default password */ readonly sxpDefaultPassword: string; /** * Variable name */ readonly sxpDefaultPasswordVariable: string; /** * Configure SXP key-chain */ readonly sxpKeyChain: string; /** * Variable name */ readonly sxpKeyChainVariable: string; /** * Enables logging for IP-to-SGT binding changes */ readonly sxpLogBindingChanges: boolean; /** * Variable name */ readonly sxpLogBindingChangesVariable: string; /** * Configure the SXP reconciliation period in seconds \n\n */ readonly sxpReconciliationPeriod: number; /** * Variable name */ readonly sxpReconciliationPeriodVariable: string; /** * Configure Retry period for SXP connection in seconds \n\n */ readonly sxpRetryPeriod: number; /** * Variable name */ readonly sxpRetryPeriodVariable: string; /** * SXP Source IP */ readonly sxpSourceIp: string; /** * Variable name */ readonly sxpSourceIpVariable: string; /** * The version of the Feature */ readonly version: number; } /** * This data source can read the Other TrustSec Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getOtherTrustsecFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getOtherTrustsecFeatureOutput(args: GetOtherTrustsecFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOtherTrustsecFeature. */ export interface GetOtherTrustsecFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * The id of the Feature */ id?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; } //# sourceMappingURL=getOtherTrustsecFeature.d.ts.map