ise.deviceadmin.AuthenticationRule
Explore with Pulumi AI
This resource can manage a Device Admin Authentication Rule.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = new ise.deviceadmin.AuthenticationRule("example", {
policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
name: "Rule1",
"default": false,
rank: 0,
state: "enabled",
conditionType: "ConditionAttributes",
conditionIsNegate: false,
conditionAttributeName: "Location",
conditionAttributeValue: "All Locations",
conditionDictionaryName: "DEVICE",
conditionOperator: "equals",
identitySourceName: "Internal Endpoints",
ifAuthFail: "REJECT",
ifProcessFail: "DROP",
ifUserNotFound: "REJECT",
});
import pulumi
import pulumi_ise as ise
example = ise.deviceadmin.AuthenticationRule("example",
policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9",
name="Rule1",
default=False,
rank=0,
state="enabled",
condition_type="ConditionAttributes",
condition_is_negate=False,
condition_attribute_name="Location",
condition_attribute_value="All Locations",
condition_dictionary_name="DEVICE",
condition_operator="equals",
identity_source_name="Internal Endpoints",
if_auth_fail="REJECT",
if_process_fail="DROP",
if_user_not_found="REJECT")
package main
import (
"github.com/pulumi/pulumi-ise/sdk/go/ise/deviceadmin"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := deviceadmin.NewAuthenticationRule(ctx, "example", &deviceadmin.AuthenticationRuleArgs{
PolicySetId: pulumi.String("d82952cb-b901-4b09-b363-5ebf39bdbaf9"),
Name: pulumi.String("Rule1"),
Default: pulumi.Bool(false),
Rank: pulumi.Int(0),
State: pulumi.String("enabled"),
ConditionType: pulumi.String("ConditionAttributes"),
ConditionIsNegate: pulumi.Bool(false),
ConditionAttributeName: pulumi.String("Location"),
ConditionAttributeValue: pulumi.String("All Locations"),
ConditionDictionaryName: pulumi.String("DEVICE"),
ConditionOperator: pulumi.String("equals"),
IdentitySourceName: pulumi.String("Internal Endpoints"),
IfAuthFail: pulumi.String("REJECT"),
IfProcessFail: pulumi.String("DROP"),
IfUserNotFound: pulumi.String("REJECT"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;
return await Deployment.RunAsync(() =>
{
var example = new Ise.DeviceAdmin.AuthenticationRule("example", new()
{
PolicySetId = "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
Name = "Rule1",
Default = false,
Rank = 0,
State = "enabled",
ConditionType = "ConditionAttributes",
ConditionIsNegate = false,
ConditionAttributeName = "Location",
ConditionAttributeValue = "All Locations",
ConditionDictionaryName = "DEVICE",
ConditionOperator = "equals",
IdentitySourceName = "Internal Endpoints",
IfAuthFail = "REJECT",
IfProcessFail = "DROP",
IfUserNotFound = "REJECT",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.deviceadmin.AuthenticationRule;
import com.pulumi.ise.deviceadmin.AuthenticationRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AuthenticationRule("example", AuthenticationRuleArgs.builder()
.policySetId("d82952cb-b901-4b09-b363-5ebf39bdbaf9")
.name("Rule1")
.default_(false)
.rank(0)
.state("enabled")
.conditionType("ConditionAttributes")
.conditionIsNegate(false)
.conditionAttributeName("Location")
.conditionAttributeValue("All Locations")
.conditionDictionaryName("DEVICE")
.conditionOperator("equals")
.identitySourceName("Internal Endpoints")
.ifAuthFail("REJECT")
.ifProcessFail("DROP")
.ifUserNotFound("REJECT")
.build());
}
}
resources:
example:
type: ise:deviceadmin:AuthenticationRule
properties:
policySetId: d82952cb-b901-4b09-b363-5ebf39bdbaf9
name: Rule1
default: false
rank: 0
state: enabled
conditionType: ConditionAttributes
conditionIsNegate: false
conditionAttributeName: Location
conditionAttributeValue: All Locations
conditionDictionaryName: DEVICE
conditionOperator: equals
identitySourceName: Internal Endpoints
ifAuthFail: REJECT
ifProcessFail: DROP
ifUserNotFound: REJECT
Create AuthenticationRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticationRule(name: string, args: AuthenticationRuleArgs, opts?: CustomResourceOptions);
@overload
def AuthenticationRule(resource_name: str,
args: AuthenticationRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticationRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
if_auth_fail: Optional[str] = None,
policy_set_id: Optional[str] = None,
if_user_not_found: Optional[str] = None,
if_process_fail: Optional[str] = None,
condition_dictionary_value: Optional[str] = None,
childrens: Optional[Sequence[AuthenticationRuleChildrenArgs]] = None,
condition_is_negate: Optional[bool] = None,
condition_operator: Optional[str] = None,
condition_type: Optional[str] = None,
default: Optional[bool] = None,
identity_source_name: Optional[str] = None,
condition_id: Optional[str] = None,
condition_dictionary_name: Optional[str] = None,
condition_attribute_value: Optional[str] = None,
name: Optional[str] = None,
condition_attribute_name: Optional[str] = None,
rank: Optional[int] = None,
state: Optional[str] = None)
func NewAuthenticationRule(ctx *Context, name string, args AuthenticationRuleArgs, opts ...ResourceOption) (*AuthenticationRule, error)
public AuthenticationRule(string name, AuthenticationRuleArgs args, CustomResourceOptions? opts = null)
public AuthenticationRule(String name, AuthenticationRuleArgs args)
public AuthenticationRule(String name, AuthenticationRuleArgs args, CustomResourceOptions options)
type: ise:deviceadmin:AuthenticationRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticationRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var authenticationRuleResource = new Ise.DeviceAdmin.AuthenticationRule("authenticationRuleResource", new()
{
IfAuthFail = "string",
PolicySetId = "string",
IfUserNotFound = "string",
IfProcessFail = "string",
ConditionDictionaryValue = "string",
Childrens = new[]
{
new Ise.DeviceAdmin.Inputs.AuthenticationRuleChildrenArgs
{
ConditionType = "string",
AttributeName = "string",
AttributeValue = "string",
Childrens = new[]
{
new Ise.DeviceAdmin.Inputs.AuthenticationRuleChildrenChildrenArgs
{
ConditionType = "string",
AttributeName = "string",
AttributeValue = "string",
DictionaryName = "string",
DictionaryValue = "string",
Id = "string",
IsNegate = false,
Operator = "string",
},
},
DictionaryName = "string",
DictionaryValue = "string",
Id = "string",
IsNegate = false,
Operator = "string",
},
},
ConditionIsNegate = false,
ConditionOperator = "string",
ConditionType = "string",
Default = false,
IdentitySourceName = "string",
ConditionId = "string",
ConditionDictionaryName = "string",
ConditionAttributeValue = "string",
Name = "string",
ConditionAttributeName = "string",
Rank = 0,
State = "string",
});
example, err := deviceadmin.NewAuthenticationRule(ctx, "authenticationRuleResource", &deviceadmin.AuthenticationRuleArgs{
IfAuthFail: pulumi.String("string"),
PolicySetId: pulumi.String("string"),
IfUserNotFound: pulumi.String("string"),
IfProcessFail: pulumi.String("string"),
ConditionDictionaryValue: pulumi.String("string"),
Childrens: deviceadmin.AuthenticationRuleChildrenArray{
&deviceadmin.AuthenticationRuleChildrenArgs{
ConditionType: pulumi.String("string"),
AttributeName: pulumi.String("string"),
AttributeValue: pulumi.String("string"),
Childrens: deviceadmin.AuthenticationRuleChildrenChildrenArray{
&deviceadmin.AuthenticationRuleChildrenChildrenArgs{
ConditionType: pulumi.String("string"),
AttributeName: pulumi.String("string"),
AttributeValue: pulumi.String("string"),
DictionaryName: pulumi.String("string"),
DictionaryValue: pulumi.String("string"),
Id: pulumi.String("string"),
IsNegate: pulumi.Bool(false),
Operator: pulumi.String("string"),
},
},
DictionaryName: pulumi.String("string"),
DictionaryValue: pulumi.String("string"),
Id: pulumi.String("string"),
IsNegate: pulumi.Bool(false),
Operator: pulumi.String("string"),
},
},
ConditionIsNegate: pulumi.Bool(false),
ConditionOperator: pulumi.String("string"),
ConditionType: pulumi.String("string"),
Default: pulumi.Bool(false),
IdentitySourceName: pulumi.String("string"),
ConditionId: pulumi.String("string"),
ConditionDictionaryName: pulumi.String("string"),
ConditionAttributeValue: pulumi.String("string"),
Name: pulumi.String("string"),
ConditionAttributeName: pulumi.String("string"),
Rank: pulumi.Int(0),
State: pulumi.String("string"),
})
var authenticationRuleResource = new AuthenticationRule("authenticationRuleResource", AuthenticationRuleArgs.builder()
.ifAuthFail("string")
.policySetId("string")
.ifUserNotFound("string")
.ifProcessFail("string")
.conditionDictionaryValue("string")
.childrens(AuthenticationRuleChildrenArgs.builder()
.conditionType("string")
.attributeName("string")
.attributeValue("string")
.childrens(AuthenticationRuleChildrenChildrenArgs.builder()
.conditionType("string")
.attributeName("string")
.attributeValue("string")
.dictionaryName("string")
.dictionaryValue("string")
.id("string")
.isNegate(false)
.operator("string")
.build())
.dictionaryName("string")
.dictionaryValue("string")
.id("string")
.isNegate(false)
.operator("string")
.build())
.conditionIsNegate(false)
.conditionOperator("string")
.conditionType("string")
.default_(false)
.identitySourceName("string")
.conditionId("string")
.conditionDictionaryName("string")
.conditionAttributeValue("string")
.name("string")
.conditionAttributeName("string")
.rank(0)
.state("string")
.build());
authentication_rule_resource = ise.deviceadmin.AuthenticationRule("authenticationRuleResource",
if_auth_fail="string",
policy_set_id="string",
if_user_not_found="string",
if_process_fail="string",
condition_dictionary_value="string",
childrens=[ise.deviceadmin.AuthenticationRuleChildrenArgs(
condition_type="string",
attribute_name="string",
attribute_value="string",
childrens=[ise.deviceadmin.AuthenticationRuleChildrenChildrenArgs(
condition_type="string",
attribute_name="string",
attribute_value="string",
dictionary_name="string",
dictionary_value="string",
id="string",
is_negate=False,
operator="string",
)],
dictionary_name="string",
dictionary_value="string",
id="string",
is_negate=False,
operator="string",
)],
condition_is_negate=False,
condition_operator="string",
condition_type="string",
default=False,
identity_source_name="string",
condition_id="string",
condition_dictionary_name="string",
condition_attribute_value="string",
name="string",
condition_attribute_name="string",
rank=0,
state="string")
const authenticationRuleResource = new ise.deviceadmin.AuthenticationRule("authenticationRuleResource", {
ifAuthFail: "string",
policySetId: "string",
ifUserNotFound: "string",
ifProcessFail: "string",
conditionDictionaryValue: "string",
childrens: [{
conditionType: "string",
attributeName: "string",
attributeValue: "string",
childrens: [{
conditionType: "string",
attributeName: "string",
attributeValue: "string",
dictionaryName: "string",
dictionaryValue: "string",
id: "string",
isNegate: false,
operator: "string",
}],
dictionaryName: "string",
dictionaryValue: "string",
id: "string",
isNegate: false,
operator: "string",
}],
conditionIsNegate: false,
conditionOperator: "string",
conditionType: "string",
"default": false,
identitySourceName: "string",
conditionId: "string",
conditionDictionaryName: "string",
conditionAttributeValue: "string",
name: "string",
conditionAttributeName: "string",
rank: 0,
state: "string",
});
type: ise:deviceadmin:AuthenticationRule
properties:
childrens:
- attributeName: string
attributeValue: string
childrens:
- attributeName: string
attributeValue: string
conditionType: string
dictionaryName: string
dictionaryValue: string
id: string
isNegate: false
operator: string
conditionType: string
dictionaryName: string
dictionaryValue: string
id: string
isNegate: false
operator: string
conditionAttributeName: string
conditionAttributeValue: string
conditionDictionaryName: string
conditionDictionaryValue: string
conditionId: string
conditionIsNegate: false
conditionOperator: string
conditionType: string
default: false
identitySourceName: string
ifAuthFail: string
ifProcessFail: string
ifUserNotFound: string
name: string
policySetId: string
rank: 0
state: string
AuthenticationRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AuthenticationRule resource accepts the following input properties:
- If
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- If
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- If
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- Policy
Set stringId - Policy set ID
- Childrens
List<Authentication
Rule Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Condition
Attribute stringName - Dictionary attribute name
- Condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- Condition
Dictionary stringName - Dictionary name
- Condition
Dictionary stringValue - Dictionary value
- Condition
Id string - UUID for condition
- Condition
Is boolNegate - Indicates whereas this condition is in negate mode
- Condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Default bool
- Indicates if this rule is the default one
- Identity
Source stringName - Identity source name from the identity stores
- Name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- Rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- State string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- If
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- If
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- If
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- Policy
Set stringId - Policy set ID
- Childrens
[]Authentication
Rule Children Args - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Condition
Attribute stringName - Dictionary attribute name
- Condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- Condition
Dictionary stringName - Dictionary name
- Condition
Dictionary stringValue - Dictionary value
- Condition
Id string - UUID for condition
- Condition
Is boolNegate - Indicates whereas this condition is in negate mode
- Condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Default bool
- Indicates if this rule is the default one
- Identity
Source stringName - Identity source name from the identity stores
- Name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- Rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- State string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- if
Auth StringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process StringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User StringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- policy
Set StringId - Policy set ID
- childrens
List<Authentication
Rule Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute StringName - Dictionary attribute name
- condition
Attribute StringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary StringName - Dictionary name
- condition
Dictionary StringValue - Dictionary value
- condition
Id String - UUID for condition
- condition
Is BooleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator String - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default_ Boolean
- Indicates if this rule is the default one
- identity
Source StringName - Identity source name from the identity stores
- name String
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- rank Integer
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state String
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- if
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- policy
Set stringId - Policy set ID
- childrens
Authentication
Rule Children[] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute stringName - Dictionary attribute name
- condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary stringName - Dictionary name
- condition
Dictionary stringValue - Dictionary value
- condition
Id string - UUID for condition
- condition
Is booleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default boolean
- Indicates if this rule is the default one
- identity
Source stringName - Identity source name from the identity stores
- name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- rank number
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- if_
auth_ strfail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if_
process_ strfail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if_
user_ strnot_ found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- policy_
set_ strid - Policy set ID
- childrens
Sequence[Authentication
Rule Children Args] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition_
attribute_ strname - Dictionary attribute name
- condition_
attribute_ strvalue - Attribute value for condition. Value type is specified in dictionary object.
- condition_
dictionary_ strname - Dictionary name
- condition_
dictionary_ strvalue - Dictionary value
- condition_
id str - UUID for condition
- condition_
is_ boolnegate - Indicates whereas this condition is in negate mode
- condition_
operator str - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition_
type str - Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that
additional conditions are present under the children attribute. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default bool
- Indicates if this rule is the default one
- identity_
source_ strname - Identity source name from the identity stores
- name str
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state str
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- if
Auth StringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process StringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User StringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- policy
Set StringId - Policy set ID
- childrens List<Property Map>
- List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute StringName - Dictionary attribute name
- condition
Attribute StringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary StringName - Dictionary name
- condition
Dictionary StringValue - Dictionary value
- condition
Id String - UUID for condition
- condition
Is BooleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator String - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default Boolean
- Indicates if this rule is the default one
- identity
Source StringName - Identity source name from the identity stores
- name String
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- rank Number
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state String
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticationRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AuthenticationRule Resource
Get an existing AuthenticationRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AuthenticationRuleState, opts?: CustomResourceOptions): AuthenticationRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
childrens: Optional[Sequence[AuthenticationRuleChildrenArgs]] = None,
condition_attribute_name: Optional[str] = None,
condition_attribute_value: Optional[str] = None,
condition_dictionary_name: Optional[str] = None,
condition_dictionary_value: Optional[str] = None,
condition_id: Optional[str] = None,
condition_is_negate: Optional[bool] = None,
condition_operator: Optional[str] = None,
condition_type: Optional[str] = None,
default: Optional[bool] = None,
identity_source_name: Optional[str] = None,
if_auth_fail: Optional[str] = None,
if_process_fail: Optional[str] = None,
if_user_not_found: Optional[str] = None,
name: Optional[str] = None,
policy_set_id: Optional[str] = None,
rank: Optional[int] = None,
state: Optional[str] = None) -> AuthenticationRule
func GetAuthenticationRule(ctx *Context, name string, id IDInput, state *AuthenticationRuleState, opts ...ResourceOption) (*AuthenticationRule, error)
public static AuthenticationRule Get(string name, Input<string> id, AuthenticationRuleState? state, CustomResourceOptions? opts = null)
public static AuthenticationRule get(String name, Output<String> id, AuthenticationRuleState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Childrens
List<Authentication
Rule Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Condition
Attribute stringName - Dictionary attribute name
- Condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- Condition
Dictionary stringName - Dictionary name
- Condition
Dictionary stringValue - Dictionary value
- Condition
Id string - UUID for condition
- Condition
Is boolNegate - Indicates whereas this condition is in negate mode
- Condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Default bool
- Indicates if this rule is the default one
- Identity
Source stringName - Identity source name from the identity stores
- If
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- If
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- If
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- Name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- Policy
Set stringId - Policy set ID
- Rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- State string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- Childrens
[]Authentication
Rule Children Args - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Condition
Attribute stringName - Dictionary attribute name
- Condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- Condition
Dictionary stringName - Dictionary name
- Condition
Dictionary stringValue - Dictionary value
- Condition
Id string - UUID for condition
- Condition
Is boolNegate - Indicates whereas this condition is in negate mode
- Condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Default bool
- Indicates if this rule is the default one
- Identity
Source stringName - Identity source name from the identity stores
- If
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- If
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- If
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- Name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- Policy
Set stringId - Policy set ID
- Rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- State string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- childrens
List<Authentication
Rule Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute StringName - Dictionary attribute name
- condition
Attribute StringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary StringName - Dictionary name
- condition
Dictionary StringValue - Dictionary value
- condition
Id String - UUID for condition
- condition
Is BooleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator String - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default_ Boolean
- Indicates if this rule is the default one
- identity
Source StringName - Identity source name from the identity stores
- if
Auth StringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process StringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User StringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- name String
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- policy
Set StringId - Policy set ID
- rank Integer
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state String
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- childrens
Authentication
Rule Children[] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute stringName - Dictionary attribute name
- condition
Attribute stringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary stringName - Dictionary name
- condition
Dictionary stringValue - Dictionary value
- condition
Id string - UUID for condition
- condition
Is booleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator string - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default boolean
- Indicates if this rule is the default one
- identity
Source stringName - Identity source name from the identity stores
- if
Auth stringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process stringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User stringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- name string
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- policy
Set stringId - Policy set ID
- rank number
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state string
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- childrens
Sequence[Authentication
Rule Children Args] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition_
attribute_ strname - Dictionary attribute name
- condition_
attribute_ strvalue - Attribute value for condition. Value type is specified in dictionary object.
- condition_
dictionary_ strname - Dictionary name
- condition_
dictionary_ strvalue - Dictionary value
- condition_
id str - UUID for condition
- condition_
is_ boolnegate - Indicates whereas this condition is in negate mode
- condition_
operator str - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition_
type str - Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that
additional conditions are present under the children attribute. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default bool
- Indicates if this rule is the default one
- identity_
source_ strname - Identity source name from the identity stores
- if_
auth_ strfail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if_
process_ strfail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if_
user_ strnot_ found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- name str
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- policy_
set_ strid - Policy set ID
- rank int
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state str
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
- childrens List<Property Map>
- List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - condition
Attribute StringName - Dictionary attribute name
- condition
Attribute StringValue - Attribute value for condition. Value type is specified in dictionary object.
- condition
Dictionary StringName - Dictionary name
- condition
Dictionary StringValue - Dictionary value
- condition
Id String - UUID for condition
- condition
Is BooleanNegate - Indicates whereas this condition is in negate mode
- condition
Operator String - Equality operator - Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- condition
Type 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. - Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- default Boolean
- Indicates if this rule is the default one
- identity
Source StringName - Identity source name from the identity stores
- if
Auth StringFail - Action to perform when authentication fails such as Bad credentials, disabled user and so on - Choices:
REJECT
,DROP
,CONTINUE
- if
Process StringFail - Action to perform when ISE is unable to access the identity database - Choices:
REJECT
,DROP
,CONTINUE
- if
User StringNot Found - Action to perform when user is not found in any of identity stores - Choices:
REJECT
,DROP
,CONTINUE
- name String
- Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
- policy
Set StringId - Policy set ID
- rank Number
- The rank (priority) in relation to other rules. Lower rank is higher priority.
- state String
- The state that the rule is in. A disabled rule cannot be matched. - Choices:
disabled
,enabled
,monitor
Supporting Types
AuthenticationRuleChildren, AuthenticationRuleChildrenArgs
- Condition
Type 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.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- Attribute
Name string - Dictionary attribute name
- Attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- Childrens
List<Authentication
Rule Children Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Dictionary
Name string - Dictionary name
- Dictionary
Value string - Dictionary value
- Id string
- UUID for condition
- Is
Negate bool - Indicates whereas this condition is in negate mode
- Operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- Condition
Type 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.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- Attribute
Name string - Dictionary attribute name
- Attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- Childrens
[]Authentication
Rule Children Children - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - Dictionary
Name string - Dictionary name
- Dictionary
Value string - Dictionary value
- Id string
- UUID for condition
- Is
Negate bool - Indicates whereas this condition is in negate mode
- Operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type 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.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- attribute
Name String - Dictionary attribute name
- attribute
Value String - Attribute value for condition. Value type is specified in dictionary object.
- childrens
List<Authentication
Rule Children Children> - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - dictionary
Name String - Dictionary name
- dictionary
Value String - Dictionary value
- id String
- UUID for condition
- is
Negate Boolean - Indicates whereas this condition is in negate mode
- operator String
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type 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.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- attribute
Name string - Dictionary attribute name
- attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- childrens
Authentication
Rule Children Children[] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - dictionary
Name string - Dictionary name
- dictionary
Value string - Dictionary value
- id string
- UUID for condition
- is
Negate boolean - Indicates whereas this condition is in negate mode
- operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition_
type str - Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- attribute_
name str - Dictionary attribute name
- attribute_
value str - Attribute value for condition. Value type is specified in dictionary object.
- childrens
Sequence[Authentication
Rule Children Children] - List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - dictionary_
name str - Dictionary name
- dictionary_
value str - Dictionary value
- id str
- UUID for condition
- is_
negate bool - Indicates whereas this condition is in negate mode
- operator str
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type 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.
- Choices:
ConditionAndBlock
,ConditionAttributes
,ConditionOrBlock
,ConditionReference
- Choices:
- attribute
Name String - Dictionary attribute name
- attribute
Value String - Attribute value for condition. Value type is specified in dictionary object.
- childrens List<Property Map>
- List of child conditions.
condition_type
must be one ofConditionAndBlock
orConditionOrBlock
. - dictionary
Name String - Dictionary name
- dictionary
Value String - Dictionary value
- id String
- UUID for condition
- is
Negate Boolean - Indicates whereas this condition is in negate mode
- operator String
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
AuthenticationRuleChildrenChildren, AuthenticationRuleChildrenChildrenArgs
- Condition
Type string - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- Attribute
Name string - Dictionary attribute name
- Attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- Dictionary
Name string - Dictionary name
- Dictionary
Value string - Dictionary value
- Id string
- UUID for condition
- Is
Negate bool - Indicates whereas this condition is in negate mode
- Operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- Condition
Type string - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- Attribute
Name string - Dictionary attribute name
- Attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- Dictionary
Name string - Dictionary name
- Dictionary
Value string - Dictionary value
- Id string
- UUID for condition
- Is
Negate bool - Indicates whereas this condition is in negate mode
- Operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type String - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- attribute
Name String - Dictionary attribute name
- attribute
Value String - Attribute value for condition. Value type is specified in dictionary object.
- dictionary
Name String - Dictionary name
- dictionary
Value String - Dictionary value
- id String
- UUID for condition
- is
Negate Boolean - Indicates whereas this condition is in negate mode
- operator String
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type string - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- attribute
Name string - Dictionary attribute name
- attribute
Value string - Attribute value for condition. Value type is specified in dictionary object.
- dictionary
Name string - Dictionary name
- dictionary
Value string - Dictionary value
- id string
- UUID for condition
- is
Negate boolean - Indicates whereas this condition is in negate mode
- operator string
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition_
type str - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- attribute_
name str - Dictionary attribute name
- attribute_
value str - Attribute value for condition. Value type is specified in dictionary object.
- dictionary_
name str - Dictionary name
- dictionary_
value str - Dictionary value
- id str
- UUID for condition
- is_
negate bool - Indicates whereas this condition is in negate mode
- operator str
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
- condition
Type String - Condition type.
- Choices:
ConditionAttributes
,ConditionReference
- Choices:
- attribute
Name String - Dictionary attribute name
- attribute
Value String - Attribute value for condition. Value type is specified in dictionary object.
- dictionary
Name String - Dictionary name
- dictionary
Value String - Dictionary value
- id String
- UUID for condition
- is
Negate Boolean - Indicates whereas this condition is in negate mode
- operator String
- Equality operator
- Choices:
contains
,endsWith
,equals
,greaterOrEquals
,greaterThan
,in
,ipEquals
,ipGreaterThan
,ipLessThan
,ipNotEquals
,lessOrEquals
,lessThan
,matches
,notContains
,notEndsWith
,notEquals
,notIn
,notStartsWith
,startsWith
- Choices:
Import
$ pulumi import ise:deviceadmin/authenticationRule:AuthenticationRule example "76d24097-41c4-4558-a4d0-a8c07ac08470,76d24097-41c4-4558-a4d0-a8c07ac08470"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ise
Terraform Provider.