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

91 lines (90 loc) 2.26 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the SXP Domain Filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getSxpDomainFilter({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getSxpDomainFilter(args?: GetSxpDomainFilterArgs, opts?: pulumi.InvokeOptions): Promise<GetSxpDomainFilterResult>; /** * A collection of arguments for invoking getSxpDomainFilter. */ export interface GetSxpDomainFilterArgs { /** * The id of the object */ id?: string; /** * Resource name */ name?: string; } /** * A collection of values returned by getSxpDomainFilter. */ export interface GetSxpDomainFilterResult { /** * Description */ readonly description: string; /** * List of SXP Domains, separated with comma */ readonly domains: string; /** * The id of the object */ readonly id: string; /** * Resource name */ readonly name: string; /** * SGT name or ID. At least one of subnet or sgt or vn should be defined */ readonly sgt: string; /** * Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined */ readonly subnet: string; /** * Virtual Network. At least one of subnet or sgt or vn should be defined */ readonly vn: string; } /** * This data source can read the SXP Domain Filter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getSxpDomainFilter({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getSxpDomainFilterOutput(args?: GetSxpDomainFilterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSxpDomainFilterResult>; /** * A collection of arguments for invoking getSxpDomainFilter. */ export interface GetSxpDomainFilterOutputArgs { /** * The id of the object */ id?: pulumi.Input<string>; /** * Resource name */ name?: pulumi.Input<string>; }