1. Packages
  2. Cisco ISE Provider
  3. API Docs
  4. deviceadmin
  5. AuthorizationGlobalExceptionRuleUpdateRanks
Cisco ISE v0.2.2 published on Friday, Apr 25, 2025 by Pulumi

ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks

Explore with Pulumi AI

ise logo
Cisco ISE v0.2.2 published on Friday, Apr 25, 2025 by Pulumi

    This resource is used to bulk update rank field in device admin authorization global exception rule. It serves as a workaround for the ISE API/Backend limitation which restricts rank assignments to a strictly incremental sequence. By utilizing this resource and device_admin_authorization_global_exception_rule resource, you can bypass the APIs limitation. Creation of this resource is performing PUT operation (Update) and it only tracks rank field. When this resource is destroyed, no action is performed on ISE and resource is just removed from state.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ise from "@pulumi/ise";
    
    const example = new ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks("example", {rules: [{
        id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
        rank: 0,
    }]});
    
    import pulumi
    import pulumi_ise as ise
    
    example = ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks("example", rules=[{
        "id": "3741aca3-db08-4899-af73-2e3f65ec31e1",
        "rank": 0,
    }])
    
    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.NewAuthorizationGlobalExceptionRuleUpdateRanks(ctx, "example", &deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksArgs{
    			Rules: deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksRuleArray{
    				&deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs{
    					Id:   pulumi.String("3741aca3-db08-4899-af73-2e3f65ec31e1"),
    					Rank: pulumi.Int(0),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ise = Pulumi.Ise;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ise.DeviceAdmin.AuthorizationGlobalExceptionRuleUpdateRanks("example", new()
        {
            Rules = new[]
            {
                new Ise.DeviceAdmin.Inputs.AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs
                {
                    Id = "3741aca3-db08-4899-af73-2e3f65ec31e1",
                    Rank = 0,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks;
    import com.pulumi.ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksArgs;
    import com.pulumi.ise.deviceadmin.inputs.AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs;
    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 AuthorizationGlobalExceptionRuleUpdateRanks("example", AuthorizationGlobalExceptionRuleUpdateRanksArgs.builder()
                .rules(AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs.builder()
                    .id("3741aca3-db08-4899-af73-2e3f65ec31e1")
                    .rank(0)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: ise:deviceadmin:AuthorizationGlobalExceptionRuleUpdateRanks
        properties:
          rules:
            - id: 3741aca3-db08-4899-af73-2e3f65ec31e1
              rank: 0
    

    Create AuthorizationGlobalExceptionRuleUpdateRanks Resource

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

    Constructor syntax

    new AuthorizationGlobalExceptionRuleUpdateRanks(name: string, args?: AuthorizationGlobalExceptionRuleUpdateRanksArgs, opts?: CustomResourceOptions);
    @overload
    def AuthorizationGlobalExceptionRuleUpdateRanks(resource_name: str,
                                                    args: Optional[AuthorizationGlobalExceptionRuleUpdateRanksArgs] = None,
                                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthorizationGlobalExceptionRuleUpdateRanks(resource_name: str,
                                                    opts: Optional[ResourceOptions] = None,
                                                    rules: Optional[Sequence[AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs]] = None)
    func NewAuthorizationGlobalExceptionRuleUpdateRanks(ctx *Context, name string, args *AuthorizationGlobalExceptionRuleUpdateRanksArgs, opts ...ResourceOption) (*AuthorizationGlobalExceptionRuleUpdateRanks, error)
    public AuthorizationGlobalExceptionRuleUpdateRanks(string name, AuthorizationGlobalExceptionRuleUpdateRanksArgs? args = null, CustomResourceOptions? opts = null)
    public AuthorizationGlobalExceptionRuleUpdateRanks(String name, AuthorizationGlobalExceptionRuleUpdateRanksArgs args)
    public AuthorizationGlobalExceptionRuleUpdateRanks(String name, AuthorizationGlobalExceptionRuleUpdateRanksArgs args, CustomResourceOptions options)
    
    type: ise:deviceadmin:AuthorizationGlobalExceptionRuleUpdateRanks
    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 AuthorizationGlobalExceptionRuleUpdateRanksArgs
    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 AuthorizationGlobalExceptionRuleUpdateRanksArgs
    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 AuthorizationGlobalExceptionRuleUpdateRanksArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthorizationGlobalExceptionRuleUpdateRanksArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthorizationGlobalExceptionRuleUpdateRanksArgs
    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 authorizationGlobalExceptionRuleUpdateRanksResource = new Ise.DeviceAdmin.AuthorizationGlobalExceptionRuleUpdateRanks("authorizationGlobalExceptionRuleUpdateRanksResource", new()
    {
        Rules = new[]
        {
            new Ise.DeviceAdmin.Inputs.AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs
            {
                Id = "string",
                Rank = 0,
            },
        },
    });
    
    example, err := deviceadmin.NewAuthorizationGlobalExceptionRuleUpdateRanks(ctx, "authorizationGlobalExceptionRuleUpdateRanksResource", &deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksArgs{
    	Rules: deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksRuleArray{
    		&deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs{
    			Id:   pulumi.String("string"),
    			Rank: pulumi.Int(0),
    		},
    	},
    })
    
    var authorizationGlobalExceptionRuleUpdateRanksResource = new com.pulumi.ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks("authorizationGlobalExceptionRuleUpdateRanksResource", com.pulumi.ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanksArgs.builder()
        .rules(AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs.builder()
            .id("string")
            .rank(0)
            .build())
        .build());
    
    authorization_global_exception_rule_update_ranks_resource = ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks("authorizationGlobalExceptionRuleUpdateRanksResource", rules=[{
        "id": "string",
        "rank": 0,
    }])
    
    const authorizationGlobalExceptionRuleUpdateRanksResource = new ise.deviceadmin.AuthorizationGlobalExceptionRuleUpdateRanks("authorizationGlobalExceptionRuleUpdateRanksResource", {rules: [{
        id: "string",
        rank: 0,
    }]});
    
    type: ise:deviceadmin:AuthorizationGlobalExceptionRuleUpdateRanks
    properties:
        rules:
            - id: string
              rank: 0
    

    AuthorizationGlobalExceptionRuleUpdateRanks 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 AuthorizationGlobalExceptionRuleUpdateRanks resource accepts the following input properties:

    Outputs

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

    Get an existing AuthorizationGlobalExceptionRuleUpdateRanks 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?: AuthorizationGlobalExceptionRuleUpdateRanksState, opts?: CustomResourceOptions): AuthorizationGlobalExceptionRuleUpdateRanks
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            rules: Optional[Sequence[AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs]] = None) -> AuthorizationGlobalExceptionRuleUpdateRanks
    func GetAuthorizationGlobalExceptionRuleUpdateRanks(ctx *Context, name string, id IDInput, state *AuthorizationGlobalExceptionRuleUpdateRanksState, opts ...ResourceOption) (*AuthorizationGlobalExceptionRuleUpdateRanks, error)
    public static AuthorizationGlobalExceptionRuleUpdateRanks Get(string name, Input<string> id, AuthorizationGlobalExceptionRuleUpdateRanksState? state, CustomResourceOptions? opts = null)
    public static AuthorizationGlobalExceptionRuleUpdateRanks get(String name, Output<String> id, AuthorizationGlobalExceptionRuleUpdateRanksState state, CustomResourceOptions options)
    resources:  _:    type: ise:deviceadmin:AuthorizationGlobalExceptionRuleUpdateRanks    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.

    Supporting Types

    AuthorizationGlobalExceptionRuleUpdateRanksRule, AuthorizationGlobalExceptionRuleUpdateRanksRuleArgs

    Id string
    Authorization rule ID
    Rank int
    The rank (priority) in relation to other rules. Lower rank is higher priority.
    Id string
    Authorization rule ID
    Rank int
    The rank (priority) in relation to other rules. Lower rank is higher priority.
    id String
    Authorization rule ID
    rank Integer
    The rank (priority) in relation to other rules. Lower rank is higher priority.
    id string
    Authorization rule ID
    rank number
    The rank (priority) in relation to other rules. Lower rank is higher priority.
    id str
    Authorization rule ID
    rank int
    The rank (priority) in relation to other rules. Lower rank is higher priority.
    id String
    Authorization rule ID
    rank Number
    The rank (priority) in relation to other rules. Lower rank is higher priority.

    Package Details

    Repository
    ise pulumi/pulumi-ise
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ise Terraform Provider.
    ise logo
    Cisco ISE v0.2.2 published on Friday, Apr 25, 2025 by Pulumi