1. Packages
  2. Cisco ISE Provider
  3. API Docs
  4. networkaccess
  5. Condition
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
ise logo
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi

    This resource can manage a Network Access Condition.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ise from "@pulumi/ise";
    
    const example = new ise.networkaccess.Condition("example", {
        name: "Cond1",
        description: "My description",
        conditionType: "LibraryConditionAttributes",
        isNegate: false,
        attributeName: "EapAuthentication",
        attributeValue: "EAP-TLS",
        dictionaryName: "Network Access",
        operator: "equals",
    });
    
    import pulumi
    import pulumi_ise as ise
    
    example = ise.networkaccess.Condition("example",
        name="Cond1",
        description="My description",
        condition_type="LibraryConditionAttributes",
        is_negate=False,
        attribute_name="EapAuthentication",
        attribute_value="EAP-TLS",
        dictionary_name="Network Access",
        operator="equals")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-ise/sdk/go/ise/networkaccess"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := networkaccess.NewCondition(ctx, "example", &networkaccess.ConditionArgs{
    			Name:           pulumi.String("Cond1"),
    			Description:    pulumi.String("My description"),
    			ConditionType:  pulumi.String("LibraryConditionAttributes"),
    			IsNegate:       pulumi.Bool(false),
    			AttributeName:  pulumi.String("EapAuthentication"),
    			AttributeValue: pulumi.String("EAP-TLS"),
    			DictionaryName: pulumi.String("Network Access"),
    			Operator:       pulumi.String("equals"),
    		})
    		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.NetworkAccess.Condition("example", new()
        {
            Name = "Cond1",
            Description = "My description",
            ConditionType = "LibraryConditionAttributes",
            IsNegate = false,
            AttributeName = "EapAuthentication",
            AttributeValue = "EAP-TLS",
            DictionaryName = "Network Access",
            Operator = "equals",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ise.networkaccess.Condition;
    import com.pulumi.ise.networkaccess.ConditionArgs;
    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 Condition("example", ConditionArgs.builder()
                .name("Cond1")
                .description("My description")
                .conditionType("LibraryConditionAttributes")
                .isNegate(false)
                .attributeName("EapAuthentication")
                .attributeValue("EAP-TLS")
                .dictionaryName("Network Access")
                .operator("equals")
                .build());
    
        }
    }
    
    resources:
      example:
        type: ise:networkaccess:Condition
        properties:
          name: Cond1
          description: My description
          conditionType: LibraryConditionAttributes
          isNegate: false
          attributeName: EapAuthentication
          attributeValue: EAP-TLS
          dictionaryName: Network Access
          operator: equals
    

    Create Condition Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Condition(name: string, args: ConditionArgs, opts?: CustomResourceOptions);
    @overload
    def Condition(resource_name: str,
                  args: ConditionArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Condition(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  condition_type: Optional[str] = None,
                  attribute_name: Optional[str] = None,
                  attribute_value: Optional[str] = None,
                  childrens: Optional[Sequence[ConditionChildrenArgs]] = None,
                  description: Optional[str] = None,
                  dictionary_name: Optional[str] = None,
                  dictionary_value: Optional[str] = None,
                  is_negate: Optional[bool] = None,
                  name: Optional[str] = None,
                  operator: Optional[str] = None)
    func NewCondition(ctx *Context, name string, args ConditionArgs, opts ...ResourceOption) (*Condition, error)
    public Condition(string name, ConditionArgs args, CustomResourceOptions? opts = null)
    public Condition(String name, ConditionArgs args)
    public Condition(String name, ConditionArgs args, CustomResourceOptions options)
    
    type: ise:networkaccess:Condition
    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 ConditionArgs
    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 ConditionArgs
    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 ConditionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConditionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConditionArgs
    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 iseConditionResource = new Ise.NetworkAccess.Condition("iseConditionResource", new()
    {
        ConditionType = "string",
        AttributeName = "string",
        AttributeValue = "string",
        Childrens = new[]
        {
            new Ise.NetworkAccess.Inputs.ConditionChildrenArgs
            {
                ConditionType = "string",
                AttributeName = "string",
                AttributeValue = "string",
                Childrens = new[]
                {
                    new Ise.NetworkAccess.Inputs.ConditionChildrenChildrenArgs
                    {
                        ConditionType = "string",
                        AttributeName = "string",
                        AttributeValue = "string",
                        Childrens = new[]
                        {
                            new Ise.NetworkAccess.Inputs.ConditionChildrenChildrenChildrenArgs
                            {
                                ConditionType = "string",
                                AttributeName = "string",
                                AttributeValue = "string",
                                Childrens = new[]
                                {
                                    new Ise.NetworkAccess.Inputs.ConditionChildrenChildrenChildrenChildrenArgs
                                    {
                                        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",
                            },
                        },
                        Description = "string",
                        DictionaryName = "string",
                        DictionaryValue = "string",
                        Id = "string",
                        IsNegate = false,
                        Name = "string",
                        Operator = "string",
                    },
                },
                Description = "string",
                DictionaryName = "string",
                DictionaryValue = "string",
                Id = "string",
                IsNegate = false,
                Name = "string",
                Operator = "string",
            },
        },
        Description = "string",
        DictionaryName = "string",
        DictionaryValue = "string",
        IsNegate = false,
        Name = "string",
        Operator = "string",
    });
    
    example, err := networkaccess.NewCondition(ctx, "iseConditionResource", &networkaccess.ConditionArgs{
    	ConditionType:  pulumi.String("string"),
    	AttributeName:  pulumi.String("string"),
    	AttributeValue: pulumi.String("string"),
    	Childrens: networkaccess.ConditionChildrenArray{
    		&networkaccess.ConditionChildrenArgs{
    			ConditionType:  pulumi.String("string"),
    			AttributeName:  pulumi.String("string"),
    			AttributeValue: pulumi.String("string"),
    			Childrens: networkaccess.ConditionChildrenChildrenArray{
    				&networkaccess.ConditionChildrenChildrenArgs{
    					ConditionType:  pulumi.String("string"),
    					AttributeName:  pulumi.String("string"),
    					AttributeValue: pulumi.String("string"),
    					Childrens: networkaccess.ConditionChildrenChildrenChildrenArray{
    						&networkaccess.ConditionChildrenChildrenChildrenArgs{
    							ConditionType:  pulumi.String("string"),
    							AttributeName:  pulumi.String("string"),
    							AttributeValue: pulumi.String("string"),
    							Childrens: networkaccess.ConditionChildrenChildrenChildrenChildrenArray{
    								&networkaccess.ConditionChildrenChildrenChildrenChildrenArgs{
    									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"),
    						},
    					},
    					Description:     pulumi.String("string"),
    					DictionaryName:  pulumi.String("string"),
    					DictionaryValue: pulumi.String("string"),
    					Id:              pulumi.String("string"),
    					IsNegate:        pulumi.Bool(false),
    					Name:            pulumi.String("string"),
    					Operator:        pulumi.String("string"),
    				},
    			},
    			Description:     pulumi.String("string"),
    			DictionaryName:  pulumi.String("string"),
    			DictionaryValue: pulumi.String("string"),
    			Id:              pulumi.String("string"),
    			IsNegate:        pulumi.Bool(false),
    			Name:            pulumi.String("string"),
    			Operator:        pulumi.String("string"),
    		},
    	},
    	Description:     pulumi.String("string"),
    	DictionaryName:  pulumi.String("string"),
    	DictionaryValue: pulumi.String("string"),
    	IsNegate:        pulumi.Bool(false),
    	Name:            pulumi.String("string"),
    	Operator:        pulumi.String("string"),
    })
    
    var iseConditionResource = new com.pulumi.ise.networkaccess.Condition("iseConditionResource", com.pulumi.ise.networkaccess.ConditionArgs.builder()
        .conditionType("string")
        .attributeName("string")
        .attributeValue("string")
        .childrens(ConditionChildrenArgs.builder()
            .conditionType("string")
            .attributeName("string")
            .attributeValue("string")
            .childrens(ConditionChildrenChildrenArgs.builder()
                .conditionType("string")
                .attributeName("string")
                .attributeValue("string")
                .childrens(ConditionChildrenChildrenChildrenArgs.builder()
                    .conditionType("string")
                    .attributeName("string")
                    .attributeValue("string")
                    .childrens(ConditionChildrenChildrenChildrenChildrenArgs.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())
                .description("string")
                .dictionaryName("string")
                .dictionaryValue("string")
                .id("string")
                .isNegate(false)
                .name("string")
                .operator("string")
                .build())
            .description("string")
            .dictionaryName("string")
            .dictionaryValue("string")
            .id("string")
            .isNegate(false)
            .name("string")
            .operator("string")
            .build())
        .description("string")
        .dictionaryName("string")
        .dictionaryValue("string")
        .isNegate(false)
        .name("string")
        .operator("string")
        .build());
    
    ise_condition_resource = ise.networkaccess.Condition("iseConditionResource",
        condition_type="string",
        attribute_name="string",
        attribute_value="string",
        childrens=[{
            "condition_type": "string",
            "attribute_name": "string",
            "attribute_value": "string",
            "childrens": [{
                "condition_type": "string",
                "attribute_name": "string",
                "attribute_value": "string",
                "childrens": [{
                    "condition_type": "string",
                    "attribute_name": "string",
                    "attribute_value": "string",
                    "childrens": [{
                        "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",
                }],
                "description": "string",
                "dictionary_name": "string",
                "dictionary_value": "string",
                "id": "string",
                "is_negate": False,
                "name": "string",
                "operator": "string",
            }],
            "description": "string",
            "dictionary_name": "string",
            "dictionary_value": "string",
            "id": "string",
            "is_negate": False,
            "name": "string",
            "operator": "string",
        }],
        description="string",
        dictionary_name="string",
        dictionary_value="string",
        is_negate=False,
        name="string",
        operator="string")
    
    const iseConditionResource = new ise.networkaccess.Condition("iseConditionResource", {
        conditionType: "string",
        attributeName: "string",
        attributeValue: "string",
        childrens: [{
            conditionType: "string",
            attributeName: "string",
            attributeValue: "string",
            childrens: [{
                conditionType: "string",
                attributeName: "string",
                attributeValue: "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",
                }],
                description: "string",
                dictionaryName: "string",
                dictionaryValue: "string",
                id: "string",
                isNegate: false,
                name: "string",
                operator: "string",
            }],
            description: "string",
            dictionaryName: "string",
            dictionaryValue: "string",
            id: "string",
            isNegate: false,
            name: "string",
            operator: "string",
        }],
        description: "string",
        dictionaryName: "string",
        dictionaryValue: "string",
        isNegate: false,
        name: "string",
        operator: "string",
    });
    
    type: ise:networkaccess:Condition
    properties:
        attributeName: string
        attributeValue: string
        childrens:
            - attributeName: string
              attributeValue: string
              childrens:
                - attributeName: string
                  attributeValue: string
                  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
                  conditionType: string
                  description: string
                  dictionaryName: string
                  dictionaryValue: string
                  id: string
                  isNegate: false
                  name: string
                  operator: string
              conditionType: string
              description: string
              dictionaryName: string
              dictionaryValue: string
              id: string
              isNegate: false
              name: string
              operator: string
        conditionType: string
        description: string
        dictionaryName: string
        dictionaryValue: string
        isNegate: false
        name: string
        operator: string
    

    Condition Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Condition resource accepts the following input properties:

    ConditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens List<ConditionChildren>
    List of child conditions.
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    ConditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens []ConditionChildrenArgs
    List of child conditions.
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<ConditionChildren>
    List of child conditions.
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    childrens ConditionChildren[]
    List of child conditions.
    description string
    Condition description
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    isNegate boolean
    Indicates whereas this condition is in negate mode
    name string
    Condition name
    operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition. Value type is specified in dictionary object.
    childrens Sequence[ConditionChildrenArgs]
    List of child conditions.
    description str
    Condition description
    dictionary_name str
    Dictionary name
    dictionary_value str
    Dictionary value
    is_negate bool
    Indicates whereas this condition is in negate mode
    name str
    Condition name
    operator str
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<Property Map>
    List of child conditions.
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Condition 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 Condition Resource

    Get an existing Condition 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?: ConditionState, opts?: CustomResourceOptions): Condition
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attribute_name: Optional[str] = None,
            attribute_value: Optional[str] = None,
            childrens: Optional[Sequence[ConditionChildrenArgs]] = None,
            condition_type: Optional[str] = None,
            description: Optional[str] = None,
            dictionary_name: Optional[str] = None,
            dictionary_value: Optional[str] = None,
            is_negate: Optional[bool] = None,
            name: Optional[str] = None,
            operator: Optional[str] = None) -> Condition
    func GetCondition(ctx *Context, name string, id IDInput, state *ConditionState, opts ...ResourceOption) (*Condition, error)
    public static Condition Get(string name, Input<string> id, ConditionState? state, CustomResourceOptions? opts = null)
    public static Condition get(String name, Output<String> id, ConditionState state, CustomResourceOptions options)
    resources:  _:    type: ise:networkaccess:Condition    get:      id: ${id}
    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.
    The following state arguments are supported:
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens List<ConditionChildren>
    List of child conditions.
    ConditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens []ConditionChildrenArgs
    List of child conditions.
    ConditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<ConditionChildren>
    List of child conditions.
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    childrens ConditionChildren[]
    List of child conditions.
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    description string
    Condition description
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    isNegate boolean
    Indicates whereas this condition is in negate mode
    name string
    Condition name
    operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition. Value type is specified in dictionary object.
    childrens Sequence[ConditionChildrenArgs]
    List of child conditions.
    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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    description str
    Condition description
    dictionary_name str
    Dictionary name
    dictionary_value str
    Dictionary value
    is_negate bool
    Indicates whereas this condition is in negate mode
    name str
    Condition name
    operator str
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<Property Map>
    List of child conditions.
    conditionType 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: LibraryConditionAndBlock, LibraryConditionAttributes, LibraryConditionOrBlock
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith

    Supporting Types

    ConditionChildren, ConditionChildrenArgs

    ConditionType 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
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens List<ConditionChildrenChildren>
    List of child conditions
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    ConditionType 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
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens []ConditionChildrenChildren
    List of child conditions
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<ConditionChildrenChildren>
    List of child conditions
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    childrens ConditionChildrenChildren[]
    List of child conditions
    description string
    Condition description
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    id string
    UUID for condition
    isNegate boolean
    Indicates whereas this condition is in negate mode
    name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    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
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition. Value type is specified in dictionary object.
    childrens Sequence[ConditionChildrenChildren]
    List of child conditions
    description str
    Condition description
    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
    name str
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator str
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith
    conditionType 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
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<Property Map>
    List of child conditions
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith, macContains, macEndsWith, macEquals, macIn, macNotContains, macNotEndsWith, macNotEquals, macNotIn, macNotStartsWith, macStartsWith

    ConditionChildrenChildren, ConditionChildrenChildrenArgs

    ConditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens List<ConditionChildrenChildrenChildren>
    List of child conditions
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith
    ConditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens []ConditionChildrenChildrenChildren
    List of child conditions
    Description string
    Condition description
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate bool
    Indicates whereas this condition is in negate mode
    Name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    Operator string
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith
    conditionType String
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<ConditionChildrenChildrenChildren>
    List of child conditions
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith
    conditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    childrens ConditionChildrenChildrenChildren[]
    List of child conditions
    description string
    Condition description
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    id string
    UUID for condition
    isNegate boolean
    Indicates whereas this condition is in negate mode
    name string
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    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 str
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition. Value type is specified in dictionary object.
    childrens Sequence[ConditionChildrenChildrenChildren]
    List of child conditions
    description str
    Condition description
    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
    name str
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator str
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith
    conditionType String
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<Property Map>
    List of child conditions
    description String
    Condition description
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate Boolean
    Indicates whereas this condition is in negate mode
    name String
    Condition name. Required if condition_type is ConditionReference, if condition_type is ConditionAttributes then this attribute is not used.
    operator String
    Equality operator

    • Choices: contains, endsWith, equals, greaterOrEquals, greaterThan, in, ipEquals, ipGreaterThan, ipLessThan, ipNotEquals, lessOrEquals, lessThan, matches, notContains, notEndsWith, notEquals, notIn, notStartsWith, startsWith

    ConditionChildrenChildrenChildren, ConditionChildrenChildrenChildrenArgs

    ConditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens List<ConditionChildrenChildrenChildrenChildren>
    List of child conditions
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate 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
    ConditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    Childrens []ConditionChildrenChildrenChildrenChildren
    List of child conditions
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate 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
    conditionType String
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<ConditionChildrenChildrenChildrenChildren>
    List of child conditions
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate 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
    conditionType string
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition. Value type is specified in dictionary object.
    childrens ConditionChildrenChildrenChildrenChildren[]
    List of child conditions
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    id string
    UUID for condition
    isNegate 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
    condition_type str
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition. Value type is specified in dictionary object.
    childrens Sequence[ConditionChildrenChildrenChildrenChildren]
    List of child conditions
    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
    conditionType String
    Condition type.

    • Choices: ConditionAndBlock, ConditionAttributes, ConditionOrBlock, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition. Value type is specified in dictionary object.
    childrens List<Property Map>
    List of child conditions
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate 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

    ConditionChildrenChildrenChildrenChildren, ConditionChildrenChildrenChildrenChildrenArgs

    ConditionType string
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate 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
    ConditionType string
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    AttributeName string
    Dictionary attribute name
    AttributeValue string
    Attribute value for condition
    DictionaryName string
    Dictionary name
    DictionaryValue string
    Dictionary value
    Id string
    UUID for condition
    IsNegate 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
    conditionType String
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate 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
    conditionType string
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    attributeName string
    Dictionary attribute name
    attributeValue string
    Attribute value for condition
    dictionaryName string
    Dictionary name
    dictionaryValue string
    Dictionary value
    id string
    UUID for condition
    isNegate 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
    condition_type str
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    attribute_name str
    Dictionary attribute name
    attribute_value str
    Attribute value for condition
    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
    conditionType String
    Condition type.

    • Choices: ConditionAttributes, ConditionReference
    attributeName String
    Dictionary attribute name
    attributeValue String
    Attribute value for condition
    dictionaryName String
    Dictionary name
    dictionaryValue String
    Dictionary value
    id String
    UUID for condition
    isNegate 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

    Import

    The pulumi import command can be used, for example:

    $ pulumi import ise:networkaccess/condition:Condition example "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.
    ise logo
    Viewing docs for Cisco ISE v0.3.0
    published on Saturday, Mar 7, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.