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

ise.networkaccess.PolicySetUpdateRank

Explore with Pulumi AI

This resource is used to update rank field in network access policy set. 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 network_access_policy_set 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.networkaccess.PolicySetUpdateRank("example", {
    policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
    rank: 0,
});
Copy
import pulumi
import pulumi_ise as ise

example = ise.networkaccess.PolicySetUpdateRank("example",
    policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9",
    rank=0)
Copy
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.NewPolicySetUpdateRank(ctx, "example", &networkaccess.PolicySetUpdateRankArgs{
			PolicySetId: pulumi.String("d82952cb-b901-4b09-b363-5ebf39bdbaf9"),
			Rank:        pulumi.Int(0),
		})
		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.NetworkAccess.PolicySetUpdateRank("example", new()
    {
        PolicySetId = "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
        Rank = 0,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.networkaccess.PolicySetUpdateRank;
import com.pulumi.ise.networkaccess.PolicySetUpdateRankArgs;
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 PolicySetUpdateRank("example", PolicySetUpdateRankArgs.builder()
            .policySetId("d82952cb-b901-4b09-b363-5ebf39bdbaf9")
            .rank(0)
            .build());

    }
}
Copy
resources:
  example:
    type: ise:networkaccess:PolicySetUpdateRank
    properties:
      policySetId: d82952cb-b901-4b09-b363-5ebf39bdbaf9
      rank: 0
Copy

Create PolicySetUpdateRank Resource

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

Constructor syntax

new PolicySetUpdateRank(name: string, args: PolicySetUpdateRankArgs, opts?: CustomResourceOptions);
@overload
def PolicySetUpdateRank(resource_name: str,
                        args: PolicySetUpdateRankArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def PolicySetUpdateRank(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        policy_set_id: Optional[str] = None,
                        rank: Optional[int] = None)
func NewPolicySetUpdateRank(ctx *Context, name string, args PolicySetUpdateRankArgs, opts ...ResourceOption) (*PolicySetUpdateRank, error)
public PolicySetUpdateRank(string name, PolicySetUpdateRankArgs args, CustomResourceOptions? opts = null)
public PolicySetUpdateRank(String name, PolicySetUpdateRankArgs args)
public PolicySetUpdateRank(String name, PolicySetUpdateRankArgs args, CustomResourceOptions options)
type: ise:networkaccess:PolicySetUpdateRank
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. PolicySetUpdateRankArgs
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. PolicySetUpdateRankArgs
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. PolicySetUpdateRankArgs
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. PolicySetUpdateRankArgs
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. PolicySetUpdateRankArgs
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 isePolicySetUpdateRankResource = new Ise.NetworkAccess.PolicySetUpdateRank("isePolicySetUpdateRankResource", new()
{
    PolicySetId = "string",
    Rank = 0,
});
Copy
example, err := networkaccess.NewPolicySetUpdateRank(ctx, "isePolicySetUpdateRankResource", &networkaccess.PolicySetUpdateRankArgs{
	PolicySetId: pulumi.String("string"),
	Rank:        pulumi.Int(0),
})
Copy
var isePolicySetUpdateRankResource = new PolicySetUpdateRank("isePolicySetUpdateRankResource", PolicySetUpdateRankArgs.builder()
    .policySetId("string")
    .rank(0)
    .build());
Copy
ise_policy_set_update_rank_resource = ise.networkaccess.PolicySetUpdateRank("isePolicySetUpdateRankResource",
    policy_set_id="string",
    rank=0)
Copy
const isePolicySetUpdateRankResource = new ise.networkaccess.PolicySetUpdateRank("isePolicySetUpdateRankResource", {
    policySetId: "string",
    rank: 0,
});
Copy
type: ise:networkaccess:PolicySetUpdateRank
properties:
    policySetId: string
    rank: 0
Copy

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

PolicySetId This property is required. string
Policy set ID
Rank This property is required. int
The rank (priority) in relation to other rules. Lower rank is higher priority.
PolicySetId This property is required. string
Policy set ID
Rank This property is required. int
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId This property is required. String
Policy set ID
rank This property is required. Integer
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId This property is required. string
Policy set ID
rank This property is required. number
The rank (priority) in relation to other rules. Lower rank is higher priority.
policy_set_id This property is required. str
Policy set ID
rank This property is required. int
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId This property is required. String
Policy set ID
rank This property is required. Number
The rank (priority) in relation to other rules. Lower rank is higher priority.

Outputs

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

Get an existing PolicySetUpdateRank 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?: PolicySetUpdateRankState, opts?: CustomResourceOptions): PolicySetUpdateRank
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        policy_set_id: Optional[str] = None,
        rank: Optional[int] = None) -> PolicySetUpdateRank
func GetPolicySetUpdateRank(ctx *Context, name string, id IDInput, state *PolicySetUpdateRankState, opts ...ResourceOption) (*PolicySetUpdateRank, error)
public static PolicySetUpdateRank Get(string name, Input<string> id, PolicySetUpdateRankState? state, CustomResourceOptions? opts = null)
public static PolicySetUpdateRank get(String name, Output<String> id, PolicySetUpdateRankState state, CustomResourceOptions options)
resources:  _:    type: ise:networkaccess:PolicySetUpdateRank    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:
PolicySetId string
Policy set ID
Rank int
The rank (priority) in relation to other rules. Lower rank is higher priority.
PolicySetId string
Policy set ID
Rank int
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId String
Policy set ID
rank Integer
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId string
Policy set ID
rank number
The rank (priority) in relation to other rules. Lower rank is higher priority.
policy_set_id str
Policy set ID
rank int
The rank (priority) in relation to other rules. Lower rank is higher priority.
policySetId String
Policy set 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.