@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
133 lines (132 loc) • 4.27 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource can manage a SXP Domain Filter.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = new ise.trustsec.SxpDomainFilter("example", {
* subnet: "1.0.0.0/24",
* vn: "VN1",
* domains: "default",
* });
* ```
*
* ## Import
*
* The `pulumi import` command can be used, for example:
*
* ```sh
* $ pulumi import ise:trustsec/sxpDomainFilter:SxpDomainFilter example "76d24097-41c4-4558-a4d0-a8c07ac08470"
* ```
*/
export declare class SxpDomainFilter extends pulumi.CustomResource {
/**
* Get an existing SxpDomainFilter 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: string, id: pulumi.Input<pulumi.ID>, state?: SxpDomainFilterState, opts?: pulumi.CustomResourceOptions): SxpDomainFilter;
/**
* Returns true if the given object is an instance of SxpDomainFilter. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is SxpDomainFilter;
/**
* Description
*/
readonly description: pulumi.Output<string | undefined>;
/**
* List of SXP Domains, separated with comma
*/
readonly domains: pulumi.Output<string>;
/**
* Resource name
*/
readonly name: pulumi.Output<string>;
/**
* SGT name or ID. At least one of subnet or sgt or vn should be defined
*/
readonly sgt: pulumi.Output<string | undefined>;
/**
* Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
*/
readonly subnet: pulumi.Output<string | undefined>;
/**
* Virtual Network. At least one of subnet or sgt or vn should be defined
*/
readonly vn: pulumi.Output<string | undefined>;
/**
* Create a SxpDomainFilter resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: SxpDomainFilterArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering SxpDomainFilter resources.
*/
export interface SxpDomainFilterState {
/**
* Description
*/
description?: pulumi.Input<string>;
/**
* List of SXP Domains, separated with comma
*/
domains?: pulumi.Input<string>;
/**
* Resource name
*/
name?: pulumi.Input<string>;
/**
* SGT name or ID. At least one of subnet or sgt or vn should be defined
*/
sgt?: pulumi.Input<string>;
/**
* Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
*/
subnet?: pulumi.Input<string>;
/**
* Virtual Network. At least one of subnet or sgt or vn should be defined
*/
vn?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a SxpDomainFilter resource.
*/
export interface SxpDomainFilterArgs {
/**
* Description
*/
description?: pulumi.Input<string>;
/**
* List of SXP Domains, separated with comma
*/
domains: pulumi.Input<string>;
/**
* Resource name
*/
name?: pulumi.Input<string>;
/**
* SGT name or ID. At least one of subnet or sgt or vn should be defined
*/
sgt?: pulumi.Input<string>;
/**
* Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
*/
subnet?: pulumi.Input<string>;
/**
* Virtual Network. At least one of subnet or sgt or vn should be defined
*/
vn?: pulumi.Input<string>;
}