1. Packages
  2. Cisco ISE Provider
  3. API Docs
  4. deviceadmin
  5. Condition
Cisco ISE v0.2.1 published on Saturday, Mar 15, 2025 by Pulumi

ise.deviceadmin.Condition

Explore with Pulumi AI

This resource can manage a Device Admin Condition.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";

const example = new ise.deviceadmin.Condition("example", {
    name: "Cond1",
    description: "My description",
    conditionType: "LibraryConditionAttributes",
    isNegate: false,
    attributeName: "User",
    attributeValue: "User1",
    dictionaryName: "TACACS",
    operator: "equals",
});
Copy
import pulumi
import pulumi_ise as ise

example = ise.deviceadmin.Condition("example",
    name="Cond1",
    description="My description",
    condition_type="LibraryConditionAttributes",
    is_negate=False,
    attribute_name="User",
    attribute_value="User1",
    dictionary_name="TACACS",
    operator="equals")
Copy
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.NewCondition(ctx, "example", &deviceadmin.ConditionArgs{
			Name:           pulumi.String("Cond1"),
			Description:    pulumi.String("My description"),
			ConditionType:  pulumi.String("LibraryConditionAttributes"),
			IsNegate:       pulumi.Bool(false),
			AttributeName:  pulumi.String("User"),
			AttributeValue: pulumi.String("User1"),
			DictionaryName: pulumi.String("TACACS"),
			Operator:       pulumi.String("equals"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;

return await Deployment.RunAsync(() => 
{
    var example = new Ise.DeviceAdmin.Condition("example", new()
    {
        Name = "Cond1",
        Description = "My description",
        ConditionType = "LibraryConditionAttributes",
        IsNegate = false,
        AttributeName = "User",
        AttributeValue = "User1",
        DictionaryName = "TACACS",
        Operator = "equals",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.deviceadmin.Condition;
import com.pulumi.ise.deviceadmin.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("User")
            .attributeValue("User1")
            .dictionaryName("TACACS")
            .operator("equals")
            .build());

    }
}
Copy
resources:
  example:
    type: ise:deviceadmin:Condition
    properties:
      name: Cond1
      description: My description
      conditionType: LibraryConditionAttributes
      isNegate: false
      attributeName: User
      attributeValue: User1
      dictionaryName: TACACS
      operator: equals
Copy

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:deviceadmin:Condition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ConditionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ConditionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ConditionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 conditionResource = new Ise.DeviceAdmin.Condition("conditionResource", new()
{
    ConditionType = "string",
    AttributeName = "string",
    AttributeValue = "string",
    Childrens = new[]
    {
        new Ise.DeviceAdmin.Inputs.ConditionChildrenArgs
        {
            ConditionType = "string",
            AttributeName = "string",
            AttributeValue = "string",
            Childrens = new[]
            {
                new Ise.DeviceAdmin.Inputs.ConditionChildrenChildrenArgs
                {
                    ConditionType = "string",
                    AttributeName = "string",
                    AttributeValue = "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",
});
Copy
example, err := deviceadmin.NewCondition(ctx, "conditionResource", &deviceadmin.ConditionArgs{
	ConditionType:  pulumi.String("string"),
	AttributeName:  pulumi.String("string"),
	AttributeValue: pulumi.String("string"),
	Childrens: deviceadmin.ConditionChildrenArray{
		&deviceadmin.ConditionChildrenArgs{
			ConditionType:  pulumi.String("string"),
			AttributeName:  pulumi.String("string"),
			AttributeValue: pulumi.String("string"),
			Childrens: deviceadmin.ConditionChildrenChildrenArray{
				&deviceadmin.ConditionChildrenChildrenArgs{
					ConditionType:   pulumi.String("string"),
					AttributeName:   pulumi.String("string"),
					AttributeValue:  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"),
})
Copy
var conditionResource = new Condition("conditionResource", 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")
            .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());
Copy
condition_resource = ise.deviceadmin.Condition("conditionResource",
    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",
            "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")
Copy
const conditionResource = new ise.deviceadmin.Condition("conditionResource", {
    conditionType: "string",
    attributeName: "string",
    attributeValue: "string",
    childrens: [{
        conditionType: "string",
        attributeName: "string",
        attributeValue: "string",
        childrens: [{
            conditionType: "string",
            attributeName: "string",
            attributeValue: "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",
});
Copy
type: ise:deviceadmin:Condition
properties:
    attributeName: string
    attributeValue: string
    childrens:
        - attributeName: string
          attributeValue: string
          childrens:
            - attributeName: string
              attributeValue: 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
Copy

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 This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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
ConditionType This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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
conditionType This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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
conditionType This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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
condition_type This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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
conditionType This property is required. 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. condition_type must be one of LibraryConditionAndBlock or 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

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:deviceadmin:Condition    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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. condition_type must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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
AttributeName string
Dictionary attribute name
AttributeValue string
Attribute value for condition. Value type is specified in dictionary object.
Childrens []ConditionChildrenArgs
List of child conditions. condition_type must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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
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. condition_type must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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
attributeName string
Dictionary attribute name
attributeValue string
Attribute value for condition. Value type is specified in dictionary object.
childrens ConditionChildren[]
List of child conditions. condition_type must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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
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 must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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
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. condition_type must be one of LibraryConditionAndBlock or LibraryConditionOrBlock.
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

Supporting Types

ConditionChildren
, ConditionChildrenArgs

ConditionType This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
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 This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
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 This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
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 This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
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 This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
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 This property is required. 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. condition_type must be one of ConditionAndBlock or ConditionOrBlock.
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
operator String
Equality operator

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

ConditionChildrenChildren
, ConditionChildrenChildrenArgs

ConditionType This property is required. string
Condition type.

  • Choices: ConditionAttributes, ConditionReference
AttributeName string
Dictionary attribute name
AttributeValue string
Attribute value for condition. Value type is specified in dictionary object.
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
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 This property is required. string
Condition type.

  • Choices: ConditionAttributes, ConditionReference
AttributeName string
Dictionary attribute name
AttributeValue string
Attribute value for condition. Value type is specified in dictionary object.
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
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 This property is required. String
Condition type.

  • Choices: ConditionAttributes, ConditionReference
attributeName String
Dictionary attribute name
attributeValue String
Attribute value for condition. Value type is specified in dictionary object.
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
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 This property is required. string
Condition type.

  • Choices: ConditionAttributes, ConditionReference
attributeName string
Dictionary attribute name
attributeValue string
Attribute value for condition. Value type is specified in dictionary object.
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
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 This property is required. str
Condition type.

  • Choices: ConditionAttributes, ConditionReference
attribute_name str
Dictionary attribute name
attribute_value str
Attribute value for condition. Value type is specified in dictionary object.
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
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 This property is required. String
Condition type.

  • Choices: ConditionAttributes, ConditionReference
attributeName String
Dictionary attribute name
attributeValue String
Attribute value for condition. Value type is specified in dictionary object.
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
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

$ pulumi import ise:deviceadmin/condition:Condition example "76d24097-41c4-4558-a4d0-a8c07ac08470"
Copy

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.