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

142 lines (141 loc) 4.29 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source can read the Device Admin Authorization Exception Rule. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getAuthorizationExceptionRule({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9", * }); * ``` */ export declare function getAuthorizationExceptionRule(args: GetAuthorizationExceptionRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthorizationExceptionRuleResult>; /** * A collection of arguments for invoking getAuthorizationExceptionRule. */ export interface GetAuthorizationExceptionRuleArgs { /** * 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 getAuthorizationExceptionRule. */ export interface GetAuthorizationExceptionRuleResult { /** * List of child conditions. `conditionType` must be one of `ConditionAndBlock` or `ConditionOrBlock`. */ readonly childrens: outputs.deviceadmin.GetAuthorizationExceptionRuleChildren[]; /** * Command sets enforce the specified list of commands that can be executed by a device administrator */ readonly commandSets: string[]; /** * 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; /** * Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses] */ readonly name: string; /** * Policy set ID */ readonly policySetId: string; /** * Device admin profiles control the initial login session of the device administrator */ readonly profile: 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 Authorization Exception Rule. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getAuthorizationExceptionRule({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9", * }); * ``` */ export declare function getAuthorizationExceptionRuleOutput(args: GetAuthorizationExceptionRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthorizationExceptionRuleResult>; /** * A collection of arguments for invoking getAuthorizationExceptionRule. */ export interface GetAuthorizationExceptionRuleOutputArgs { /** * 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>; }