@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
150 lines (149 loc) • 4.37 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* This data source can read the Device Admin Authentication Rule.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.deviceadmin.getAuthenticationRule({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
* });
* ```
*/
export declare function getAuthenticationRule(args: GetAuthenticationRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthenticationRuleResult>;
/**
* A collection of arguments for invoking getAuthenticationRule.
*/
export interface GetAuthenticationRuleArgs {
/**
* The id of the object
*/
id?: string;
/**
* Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
*/
name?: string;
/**
* Policy set ID
*/
policySetId: string;
}
/**
* A collection of values returned by getAuthenticationRule.
*/
export interface GetAuthenticationRuleResult {
/**
* List of child conditions. `conditionType` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
*/
readonly childrens: outputs.deviceadmin.GetAuthenticationRuleChildren[];
/**
* Dictionary attribute name
*/
readonly conditionAttributeName: string;
/**
* Attribute value for condition. Value type is specified in dictionary object.
*/
readonly conditionAttributeValue: string;
/**
* Dictionary name
*/
readonly conditionDictionaryName: string;
/**
* Dictionary value
*/
readonly conditionDictionaryValue: string;
/**
* UUID for condition
*/
readonly conditionId: string;
/**
* Indicates whereas this condition is in negate mode
*/
readonly conditionIsNegate: boolean;
/**
* Equality operator
*/
readonly conditionOperator: string;
/**
* Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
*/
readonly conditionType: string;
/**
* Indicates if this rule is the default one
*/
readonly default: boolean;
/**
* The id of the object
*/
readonly id: string;
/**
* Identity source name from the identity stores
*/
readonly identitySourceName: string;
/**
* Action to perform when authentication fails such as Bad credentials, disabled user and so on
*/
readonly ifAuthFail: string;
/**
* Action to perform when ISE is unable to access the identity database
*/
readonly ifProcessFail: string;
/**
* Action to perform when user is not found in any of identity stores
*/
readonly ifUserNotFound: string;
/**
* Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
*/
readonly name: string;
/**
* Policy set ID
*/
readonly policySetId: string;
/**
* The rank (priority) in relation to other rules. Lower rank is higher priority.
*/
readonly rank: number;
/**
* The state that the rule is in. A disabled rule cannot be matched.
*/
readonly state: string;
}
/**
* This data source can read the Device Admin Authentication Rule.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.deviceadmin.getAuthenticationRule({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
* });
* ```
*/
export declare function getAuthenticationRuleOutput(args: GetAuthenticationRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthenticationRuleResult>;
/**
* A collection of arguments for invoking getAuthenticationRule.
*/
export interface GetAuthenticationRuleOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
*/
name?: pulumi.Input<string>;
/**
* Policy set ID
*/
policySetId: pulumi.Input<string>;
}