@pulumi/ise 0.3.0-alpha.1745301448 → 0.3.0-alpha.1745554688
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deviceadmin/authenticationRuleUpdateRanks.d.ts +71 -0
- package/deviceadmin/authenticationRuleUpdateRanks.js +72 -0
- package/deviceadmin/authenticationRuleUpdateRanks.js.map +1 -0
- package/deviceadmin/authorizationExceptionRuleUpdateRanks.d.ts +71 -0
- package/deviceadmin/authorizationExceptionRuleUpdateRanks.js +72 -0
- package/deviceadmin/authorizationExceptionRuleUpdateRanks.js.map +1 -0
- package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.d.ts +56 -0
- package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.js +64 -0
- package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.js.map +1 -0
- package/deviceadmin/authorizationRuleUpdateRanks.d.ts +71 -0
- package/deviceadmin/authorizationRuleUpdateRanks.js +72 -0
- package/deviceadmin/authorizationRuleUpdateRanks.js.map +1 -0
- package/deviceadmin/index.d.ts +15 -0
- package/deviceadmin/index.js +26 -1
- package/deviceadmin/index.js.map +1 -1
- package/deviceadmin/policySetUpdateRanks.d.ts +56 -0
- package/deviceadmin/policySetUpdateRanks.js +64 -0
- package/deviceadmin/policySetUpdateRanks.js.map +1 -0
- package/network/device.d.ts +4 -4
- package/network/device.js +3 -3
- package/network/device.js.map +1 -1
- package/network/getDevice.d.ts +1 -1
- package/networkaccess/authenticationRuleUpdateRanks.d.ts +71 -0
- package/networkaccess/authenticationRuleUpdateRanks.js +72 -0
- package/networkaccess/authenticationRuleUpdateRanks.js.map +1 -0
- package/networkaccess/authorizationExceptionRuleUpdateRanks.d.ts +71 -0
- package/networkaccess/authorizationExceptionRuleUpdateRanks.js +72 -0
- package/networkaccess/authorizationExceptionRuleUpdateRanks.js.map +1 -0
- package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.d.ts +56 -0
- package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.js +64 -0
- package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.js.map +1 -0
- package/networkaccess/authorizationRuleUpdateRanks.d.ts +71 -0
- package/networkaccess/authorizationRuleUpdateRanks.js +72 -0
- package/networkaccess/authorizationRuleUpdateRanks.js.map +1 -0
- package/networkaccess/index.d.ts +15 -0
- package/networkaccess/index.js +26 -1
- package/networkaccess/index.js.map +1 -1
- package/networkaccess/policySetUpdateRanks.d.ts +56 -0
- package/networkaccess/policySetUpdateRanks.js +64 -0
- package/networkaccess/policySetUpdateRanks.js.map +1 -0
- package/package.json +2 -2
- package/types/input.d.ts +102 -2
- package/types/output.d.ts +104 -4
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.AuthorizationExceptionRuleUpdateRanks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource is used to bulk update rank field in network access authorization 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 networkAccessAuthorizationExceptionRule 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.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as ise from "@pulumi/ise";
|
|
16
|
+
*
|
|
17
|
+
* const example = new ise.networkaccess.AuthorizationExceptionRuleUpdateRanks("example", {
|
|
18
|
+
* policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
|
19
|
+
* rules: [{
|
|
20
|
+
* id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
|
|
21
|
+
* rank: 0,
|
|
22
|
+
* }],
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
class AuthorizationExceptionRuleUpdateRanks extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing AuthorizationExceptionRuleUpdateRanks resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name, id, state, opts) {
|
|
37
|
+
return new AuthorizationExceptionRuleUpdateRanks(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Returns true if the given object is an instance of AuthorizationExceptionRuleUpdateRanks. This is designed to work even
|
|
41
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
|
+
*/
|
|
43
|
+
static isInstance(obj) {
|
|
44
|
+
if (obj === undefined || obj === null) {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
return obj['__pulumiType'] === AuthorizationExceptionRuleUpdateRanks.__pulumiType;
|
|
48
|
+
}
|
|
49
|
+
constructor(name, argsOrState, opts) {
|
|
50
|
+
let resourceInputs = {};
|
|
51
|
+
opts = opts || {};
|
|
52
|
+
if (opts.id) {
|
|
53
|
+
const state = argsOrState;
|
|
54
|
+
resourceInputs["policySetId"] = state ? state.policySetId : undefined;
|
|
55
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
const args = argsOrState;
|
|
59
|
+
if ((!args || args.policySetId === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'policySetId'");
|
|
61
|
+
}
|
|
62
|
+
resourceInputs["policySetId"] = args ? args.policySetId : undefined;
|
|
63
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
super(AuthorizationExceptionRuleUpdateRanks.__pulumiType, name, resourceInputs, opts);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.AuthorizationExceptionRuleUpdateRanks = AuthorizationExceptionRuleUpdateRanks;
|
|
70
|
+
/** @internal */
|
|
71
|
+
AuthorizationExceptionRuleUpdateRanks.__pulumiType = 'ise:networkaccess/authorizationExceptionRuleUpdateRanks:AuthorizationExceptionRuleUpdateRanks';
|
|
72
|
+
//# sourceMappingURL=authorizationExceptionRuleUpdateRanks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorizationExceptionRuleUpdateRanks.js","sourceRoot":"","sources":["../../networkaccess/authorizationExceptionRuleUpdateRanks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,qCAAsC,SAAQ,MAAM,CAAC,cAAc;IAC5E;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkD,EAAE,IAAmC;QAChJ,OAAO,IAAI,qCAAqC,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5F,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,qCAAqC,CAAC,YAAY,CAAC;IACtF,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAoG,EAAE,IAAmC;QAC/J,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqE,CAAC;YACpF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAoE,CAAC;YAClF,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,qCAAqC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1F,CAAC;;AA3DL,sFA4DC;AA9CG,gBAAgB;AACO,kDAAY,GAAG,+FAA+F,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource is used to bulk update rank field in 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 networkAccessAuthorizationGlobalExceptionRule 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.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as ise from "@pulumi/ise";
|
|
12
|
+
*
|
|
13
|
+
* const example = new ise.networkaccess.AuthorizationGlobalExceptionRuleUpdateRanks("example", {rules: [{
|
|
14
|
+
* id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
|
|
15
|
+
* rank: 0,
|
|
16
|
+
* }]});
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare class AuthorizationGlobalExceptionRuleUpdateRanks extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing AuthorizationGlobalExceptionRuleUpdateRanks resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AuthorizationGlobalExceptionRuleUpdateRanksState, opts?: pulumi.CustomResourceOptions): AuthorizationGlobalExceptionRuleUpdateRanks;
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of AuthorizationGlobalExceptionRuleUpdateRanks. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj: any): obj is AuthorizationGlobalExceptionRuleUpdateRanks;
|
|
35
|
+
readonly rules: pulumi.Output<outputs.networkaccess.AuthorizationGlobalExceptionRuleUpdateRanksRule[] | undefined>;
|
|
36
|
+
/**
|
|
37
|
+
* Create a AuthorizationGlobalExceptionRuleUpdateRanks resource with the given unique name, arguments, and options.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resource.
|
|
40
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
41
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
42
|
+
*/
|
|
43
|
+
constructor(name: string, args?: AuthorizationGlobalExceptionRuleUpdateRanksArgs, opts?: pulumi.CustomResourceOptions);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Input properties used for looking up and filtering AuthorizationGlobalExceptionRuleUpdateRanks resources.
|
|
47
|
+
*/
|
|
48
|
+
export interface AuthorizationGlobalExceptionRuleUpdateRanksState {
|
|
49
|
+
rules?: pulumi.Input<pulumi.Input<inputs.networkaccess.AuthorizationGlobalExceptionRuleUpdateRanksRule>[]>;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a AuthorizationGlobalExceptionRuleUpdateRanks resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface AuthorizationGlobalExceptionRuleUpdateRanksArgs {
|
|
55
|
+
rules?: pulumi.Input<pulumi.Input<inputs.networkaccess.AuthorizationGlobalExceptionRuleUpdateRanksRule>[]>;
|
|
56
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.AuthorizationGlobalExceptionRuleUpdateRanks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource is used to bulk update rank field in 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 networkAccessAuthorizationGlobalExceptionRule 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.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as ise from "@pulumi/ise";
|
|
16
|
+
*
|
|
17
|
+
* const example = new ise.networkaccess.AuthorizationGlobalExceptionRuleUpdateRanks("example", {rules: [{
|
|
18
|
+
* id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
|
|
19
|
+
* rank: 0,
|
|
20
|
+
* }]});
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
class AuthorizationGlobalExceptionRuleUpdateRanks extends pulumi.CustomResource {
|
|
24
|
+
/**
|
|
25
|
+
* Get an existing AuthorizationGlobalExceptionRuleUpdateRanks resource's state with the given name, ID, and optional extra
|
|
26
|
+
* properties used to qualify the lookup.
|
|
27
|
+
*
|
|
28
|
+
* @param name The _unique_ name of the resulting resource.
|
|
29
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
30
|
+
* @param state Any extra arguments used during the lookup.
|
|
31
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
32
|
+
*/
|
|
33
|
+
static get(name, id, state, opts) {
|
|
34
|
+
return new AuthorizationGlobalExceptionRuleUpdateRanks(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Returns true if the given object is an instance of AuthorizationGlobalExceptionRuleUpdateRanks. This is designed to work even
|
|
38
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
39
|
+
*/
|
|
40
|
+
static isInstance(obj) {
|
|
41
|
+
if (obj === undefined || obj === null) {
|
|
42
|
+
return false;
|
|
43
|
+
}
|
|
44
|
+
return obj['__pulumiType'] === AuthorizationGlobalExceptionRuleUpdateRanks.__pulumiType;
|
|
45
|
+
}
|
|
46
|
+
constructor(name, argsOrState, opts) {
|
|
47
|
+
let resourceInputs = {};
|
|
48
|
+
opts = opts || {};
|
|
49
|
+
if (opts.id) {
|
|
50
|
+
const state = argsOrState;
|
|
51
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
const args = argsOrState;
|
|
55
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
56
|
+
}
|
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
58
|
+
super(AuthorizationGlobalExceptionRuleUpdateRanks.__pulumiType, name, resourceInputs, opts);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.AuthorizationGlobalExceptionRuleUpdateRanks = AuthorizationGlobalExceptionRuleUpdateRanks;
|
|
62
|
+
/** @internal */
|
|
63
|
+
AuthorizationGlobalExceptionRuleUpdateRanks.__pulumiType = 'ise:networkaccess/authorizationGlobalExceptionRuleUpdateRanks:AuthorizationGlobalExceptionRuleUpdateRanks';
|
|
64
|
+
//# sourceMappingURL=authorizationGlobalExceptionRuleUpdateRanks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorizationGlobalExceptionRuleUpdateRanks.js","sourceRoot":"","sources":["../../networkaccess/authorizationGlobalExceptionRuleUpdateRanks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,MAAa,2CAA4C,SAAQ,MAAM,CAAC,cAAc;IAClF;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwD,EAAE,IAAmC;QACtJ,OAAO,IAAI,2CAA2C,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClG,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,2CAA2C,CAAC,YAAY,CAAC;IAC5F,CAAC;IAYD,YAAY,IAAY,EAAE,WAAgH,EAAE,IAAmC;QAC3K,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2E,CAAC;YAC1F,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0E,CAAC;YACxF,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2CAA2C,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChG,CAAC;;AAlDL,kGAmDC;AArCG,gBAAgB;AACO,wDAAY,GAAG,2GAA2G,CAAC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource is used to bulk update rank field in network access authorization rules. 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 networkAccessPolicySet 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.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as ise from "@pulumi/ise";
|
|
12
|
+
*
|
|
13
|
+
* const example = new ise.networkaccess.AuthorizationRuleUpdateRanks("example", {
|
|
14
|
+
* policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
|
15
|
+
* rules: [{
|
|
16
|
+
* id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
|
|
17
|
+
* rank: 0,
|
|
18
|
+
* }],
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare class AuthorizationRuleUpdateRanks extends pulumi.CustomResource {
|
|
23
|
+
/**
|
|
24
|
+
* Get an existing AuthorizationRuleUpdateRanks resource's state with the given name, ID, and optional extra
|
|
25
|
+
* properties used to qualify the lookup.
|
|
26
|
+
*
|
|
27
|
+
* @param name The _unique_ name of the resulting resource.
|
|
28
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
29
|
+
* @param state Any extra arguments used during the lookup.
|
|
30
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
31
|
+
*/
|
|
32
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AuthorizationRuleUpdateRanksState, opts?: pulumi.CustomResourceOptions): AuthorizationRuleUpdateRanks;
|
|
33
|
+
/**
|
|
34
|
+
* Returns true if the given object is an instance of AuthorizationRuleUpdateRanks. This is designed to work even
|
|
35
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
36
|
+
*/
|
|
37
|
+
static isInstance(obj: any): obj is AuthorizationRuleUpdateRanks;
|
|
38
|
+
/**
|
|
39
|
+
* Policy set ID
|
|
40
|
+
*/
|
|
41
|
+
readonly policySetId: pulumi.Output<string>;
|
|
42
|
+
readonly rules: pulumi.Output<outputs.networkaccess.AuthorizationRuleUpdateRanksRule[] | undefined>;
|
|
43
|
+
/**
|
|
44
|
+
* Create a AuthorizationRuleUpdateRanks resource with the given unique name, arguments, and options.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resource.
|
|
47
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
48
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
49
|
+
*/
|
|
50
|
+
constructor(name: string, args: AuthorizationRuleUpdateRanksArgs, opts?: pulumi.CustomResourceOptions);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Input properties used for looking up and filtering AuthorizationRuleUpdateRanks resources.
|
|
54
|
+
*/
|
|
55
|
+
export interface AuthorizationRuleUpdateRanksState {
|
|
56
|
+
/**
|
|
57
|
+
* Policy set ID
|
|
58
|
+
*/
|
|
59
|
+
policySetId?: pulumi.Input<string>;
|
|
60
|
+
rules?: pulumi.Input<pulumi.Input<inputs.networkaccess.AuthorizationRuleUpdateRanksRule>[]>;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* The set of arguments for constructing a AuthorizationRuleUpdateRanks resource.
|
|
64
|
+
*/
|
|
65
|
+
export interface AuthorizationRuleUpdateRanksArgs {
|
|
66
|
+
/**
|
|
67
|
+
* Policy set ID
|
|
68
|
+
*/
|
|
69
|
+
policySetId: pulumi.Input<string>;
|
|
70
|
+
rules?: pulumi.Input<pulumi.Input<inputs.networkaccess.AuthorizationRuleUpdateRanksRule>[]>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.AuthorizationRuleUpdateRanks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource is used to bulk update rank field in network access authorization rules. 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 networkAccessPolicySet 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.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as ise from "@pulumi/ise";
|
|
16
|
+
*
|
|
17
|
+
* const example = new ise.networkaccess.AuthorizationRuleUpdateRanks("example", {
|
|
18
|
+
* policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
|
19
|
+
* rules: [{
|
|
20
|
+
* id: "3741aca3-db08-4899-af73-2e3f65ec31e1",
|
|
21
|
+
* rank: 0,
|
|
22
|
+
* }],
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
class AuthorizationRuleUpdateRanks extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing AuthorizationRuleUpdateRanks resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name, id, state, opts) {
|
|
37
|
+
return new AuthorizationRuleUpdateRanks(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Returns true if the given object is an instance of AuthorizationRuleUpdateRanks. This is designed to work even
|
|
41
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
|
+
*/
|
|
43
|
+
static isInstance(obj) {
|
|
44
|
+
if (obj === undefined || obj === null) {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
return obj['__pulumiType'] === AuthorizationRuleUpdateRanks.__pulumiType;
|
|
48
|
+
}
|
|
49
|
+
constructor(name, argsOrState, opts) {
|
|
50
|
+
let resourceInputs = {};
|
|
51
|
+
opts = opts || {};
|
|
52
|
+
if (opts.id) {
|
|
53
|
+
const state = argsOrState;
|
|
54
|
+
resourceInputs["policySetId"] = state ? state.policySetId : undefined;
|
|
55
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
const args = argsOrState;
|
|
59
|
+
if ((!args || args.policySetId === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'policySetId'");
|
|
61
|
+
}
|
|
62
|
+
resourceInputs["policySetId"] = args ? args.policySetId : undefined;
|
|
63
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
64
|
+
}
|
|
65
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
66
|
+
super(AuthorizationRuleUpdateRanks.__pulumiType, name, resourceInputs, opts);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.AuthorizationRuleUpdateRanks = AuthorizationRuleUpdateRanks;
|
|
70
|
+
/** @internal */
|
|
71
|
+
AuthorizationRuleUpdateRanks.__pulumiType = 'ise:networkaccess/authorizationRuleUpdateRanks:AuthorizationRuleUpdateRanks';
|
|
72
|
+
//# sourceMappingURL=authorizationRuleUpdateRanks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorizationRuleUpdateRanks.js","sourceRoot":"","sources":["../../networkaccess/authorizationRuleUpdateRanks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AA3DL,oEA4DC;AA9CG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}
|
package/networkaccess/index.d.ts
CHANGED
|
@@ -7,18 +7,27 @@ export declare const AuthenticationRule: typeof import("./authenticationRule").A
|
|
|
7
7
|
export { AuthenticationRuleUpdateRankArgs, AuthenticationRuleUpdateRankState } from "./authenticationRuleUpdateRank";
|
|
8
8
|
export type AuthenticationRuleUpdateRank = import("./authenticationRuleUpdateRank").AuthenticationRuleUpdateRank;
|
|
9
9
|
export declare const AuthenticationRuleUpdateRank: typeof import("./authenticationRuleUpdateRank").AuthenticationRuleUpdateRank;
|
|
10
|
+
export { AuthenticationRuleUpdateRanksArgs, AuthenticationRuleUpdateRanksState } from "./authenticationRuleUpdateRanks";
|
|
11
|
+
export type AuthenticationRuleUpdateRanks = import("./authenticationRuleUpdateRanks").AuthenticationRuleUpdateRanks;
|
|
12
|
+
export declare const AuthenticationRuleUpdateRanks: typeof import("./authenticationRuleUpdateRanks").AuthenticationRuleUpdateRanks;
|
|
10
13
|
export { AuthorizationExceptionRuleArgs, AuthorizationExceptionRuleState } from "./authorizationExceptionRule";
|
|
11
14
|
export type AuthorizationExceptionRule = import("./authorizationExceptionRule").AuthorizationExceptionRule;
|
|
12
15
|
export declare const AuthorizationExceptionRule: typeof import("./authorizationExceptionRule").AuthorizationExceptionRule;
|
|
13
16
|
export { AuthorizationExceptionRuleUpdateRankArgs, AuthorizationExceptionRuleUpdateRankState } from "./authorizationExceptionRuleUpdateRank";
|
|
14
17
|
export type AuthorizationExceptionRuleUpdateRank = import("./authorizationExceptionRuleUpdateRank").AuthorizationExceptionRuleUpdateRank;
|
|
15
18
|
export declare const AuthorizationExceptionRuleUpdateRank: typeof import("./authorizationExceptionRuleUpdateRank").AuthorizationExceptionRuleUpdateRank;
|
|
19
|
+
export { AuthorizationExceptionRuleUpdateRanksArgs, AuthorizationExceptionRuleUpdateRanksState } from "./authorizationExceptionRuleUpdateRanks";
|
|
20
|
+
export type AuthorizationExceptionRuleUpdateRanks = import("./authorizationExceptionRuleUpdateRanks").AuthorizationExceptionRuleUpdateRanks;
|
|
21
|
+
export declare const AuthorizationExceptionRuleUpdateRanks: typeof import("./authorizationExceptionRuleUpdateRanks").AuthorizationExceptionRuleUpdateRanks;
|
|
16
22
|
export { AuthorizationGlobalExceptionRuleArgs, AuthorizationGlobalExceptionRuleState } from "./authorizationGlobalExceptionRule";
|
|
17
23
|
export type AuthorizationGlobalExceptionRule = import("./authorizationGlobalExceptionRule").AuthorizationGlobalExceptionRule;
|
|
18
24
|
export declare const AuthorizationGlobalExceptionRule: typeof import("./authorizationGlobalExceptionRule").AuthorizationGlobalExceptionRule;
|
|
19
25
|
export { AuthorizationGlobalExceptionRuleUpdateRankArgs, AuthorizationGlobalExceptionRuleUpdateRankState } from "./authorizationGlobalExceptionRuleUpdateRank";
|
|
20
26
|
export type AuthorizationGlobalExceptionRuleUpdateRank = import("./authorizationGlobalExceptionRuleUpdateRank").AuthorizationGlobalExceptionRuleUpdateRank;
|
|
21
27
|
export declare const AuthorizationGlobalExceptionRuleUpdateRank: typeof import("./authorizationGlobalExceptionRuleUpdateRank").AuthorizationGlobalExceptionRuleUpdateRank;
|
|
28
|
+
export { AuthorizationGlobalExceptionRuleUpdateRanksArgs, AuthorizationGlobalExceptionRuleUpdateRanksState } from "./authorizationGlobalExceptionRuleUpdateRanks";
|
|
29
|
+
export type AuthorizationGlobalExceptionRuleUpdateRanks = import("./authorizationGlobalExceptionRuleUpdateRanks").AuthorizationGlobalExceptionRuleUpdateRanks;
|
|
30
|
+
export declare const AuthorizationGlobalExceptionRuleUpdateRanks: typeof import("./authorizationGlobalExceptionRuleUpdateRanks").AuthorizationGlobalExceptionRuleUpdateRanks;
|
|
22
31
|
export { AuthorizationProfileArgs, AuthorizationProfileState } from "./authorizationProfile";
|
|
23
32
|
export type AuthorizationProfile = import("./authorizationProfile").AuthorizationProfile;
|
|
24
33
|
export declare const AuthorizationProfile: typeof import("./authorizationProfile").AuthorizationProfile;
|
|
@@ -28,6 +37,9 @@ export declare const AuthorizationRule: typeof import("./authorizationRule").Aut
|
|
|
28
37
|
export { AuthorizationRuleUpdateRankArgs, AuthorizationRuleUpdateRankState } from "./authorizationRuleUpdateRank";
|
|
29
38
|
export type AuthorizationRuleUpdateRank = import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
|
|
30
39
|
export declare const AuthorizationRuleUpdateRank: typeof import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
|
|
40
|
+
export { AuthorizationRuleUpdateRanksArgs, AuthorizationRuleUpdateRanksState } from "./authorizationRuleUpdateRanks";
|
|
41
|
+
export type AuthorizationRuleUpdateRanks = import("./authorizationRuleUpdateRanks").AuthorizationRuleUpdateRanks;
|
|
42
|
+
export declare const AuthorizationRuleUpdateRanks: typeof import("./authorizationRuleUpdateRanks").AuthorizationRuleUpdateRanks;
|
|
31
43
|
export { ConditionArgs, ConditionState } from "./condition";
|
|
32
44
|
export type Condition = import("./condition").Condition;
|
|
33
45
|
export declare const Condition: typeof import("./condition").Condition;
|
|
@@ -76,6 +88,9 @@ export declare const PolicySet: typeof import("./policySet").PolicySet;
|
|
|
76
88
|
export { PolicySetUpdateRankArgs, PolicySetUpdateRankState } from "./policySetUpdateRank";
|
|
77
89
|
export type PolicySetUpdateRank = import("./policySetUpdateRank").PolicySetUpdateRank;
|
|
78
90
|
export declare const PolicySetUpdateRank: typeof import("./policySetUpdateRank").PolicySetUpdateRank;
|
|
91
|
+
export { PolicySetUpdateRanksArgs, PolicySetUpdateRanksState } from "./policySetUpdateRanks";
|
|
92
|
+
export type PolicySetUpdateRanks = import("./policySetUpdateRanks").PolicySetUpdateRanks;
|
|
93
|
+
export declare const PolicySetUpdateRanks: typeof import("./policySetUpdateRanks").PolicySetUpdateRanks;
|
|
79
94
|
export { TimeAndDateConditionArgs, TimeAndDateConditionState } from "./timeAndDateCondition";
|
|
80
95
|
export type TimeAndDateCondition = import("./timeAndDateCondition").TimeAndDateCondition;
|
|
81
96
|
export declare const TimeAndDateCondition: typeof import("./timeAndDateCondition").TimeAndDateCondition;
|
package/networkaccess/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.TimeAndDateCondition = exports.PolicySetUpdateRank = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getPolicySetOutput = exports.getPolicySet = exports.getDownloadableAclOutput = exports.getDownloadableAcl = exports.getDictionaryOutput = exports.getDictionary = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationProfileOutput = exports.getAuthorizationProfile = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsOutput = exports.getAllowedProtocols = exports.DownloadableAcl = exports.Dictionary = exports.Condition = exports.AuthorizationRuleUpdateRank = exports.AuthorizationRule = exports.AuthorizationProfile = exports.AuthorizationGlobalExceptionRuleUpdateRank = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRuleUpdateRank = exports.AuthorizationExceptionRule = exports.AuthenticationRuleUpdateRank = exports.AuthenticationRule = exports.AllowedProtocols = void 0;
|
|
5
|
+
exports.TimeAndDateCondition = exports.PolicySetUpdateRanks = exports.PolicySetUpdateRank = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getPolicySetOutput = exports.getPolicySet = exports.getDownloadableAclOutput = exports.getDownloadableAcl = exports.getDictionaryOutput = exports.getDictionary = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationProfileOutput = exports.getAuthorizationProfile = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsOutput = exports.getAllowedProtocols = exports.DownloadableAcl = exports.Dictionary = exports.Condition = exports.AuthorizationRuleUpdateRanks = exports.AuthorizationRuleUpdateRank = exports.AuthorizationRule = exports.AuthorizationProfile = exports.AuthorizationGlobalExceptionRuleUpdateRanks = exports.AuthorizationGlobalExceptionRuleUpdateRank = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRuleUpdateRanks = exports.AuthorizationExceptionRuleUpdateRank = exports.AuthorizationExceptionRule = exports.AuthenticationRuleUpdateRanks = exports.AuthenticationRuleUpdateRank = exports.AuthenticationRule = exports.AllowedProtocols = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AllowedProtocols = null;
|
|
@@ -11,20 +11,28 @@ exports.AuthenticationRule = null;
|
|
|
11
11
|
utilities.lazyLoad(exports, ["AuthenticationRule"], () => require("./authenticationRule"));
|
|
12
12
|
exports.AuthenticationRuleUpdateRank = null;
|
|
13
13
|
utilities.lazyLoad(exports, ["AuthenticationRuleUpdateRank"], () => require("./authenticationRuleUpdateRank"));
|
|
14
|
+
exports.AuthenticationRuleUpdateRanks = null;
|
|
15
|
+
utilities.lazyLoad(exports, ["AuthenticationRuleUpdateRanks"], () => require("./authenticationRuleUpdateRanks"));
|
|
14
16
|
exports.AuthorizationExceptionRule = null;
|
|
15
17
|
utilities.lazyLoad(exports, ["AuthorizationExceptionRule"], () => require("./authorizationExceptionRule"));
|
|
16
18
|
exports.AuthorizationExceptionRuleUpdateRank = null;
|
|
17
19
|
utilities.lazyLoad(exports, ["AuthorizationExceptionRuleUpdateRank"], () => require("./authorizationExceptionRuleUpdateRank"));
|
|
20
|
+
exports.AuthorizationExceptionRuleUpdateRanks = null;
|
|
21
|
+
utilities.lazyLoad(exports, ["AuthorizationExceptionRuleUpdateRanks"], () => require("./authorizationExceptionRuleUpdateRanks"));
|
|
18
22
|
exports.AuthorizationGlobalExceptionRule = null;
|
|
19
23
|
utilities.lazyLoad(exports, ["AuthorizationGlobalExceptionRule"], () => require("./authorizationGlobalExceptionRule"));
|
|
20
24
|
exports.AuthorizationGlobalExceptionRuleUpdateRank = null;
|
|
21
25
|
utilities.lazyLoad(exports, ["AuthorizationGlobalExceptionRuleUpdateRank"], () => require("./authorizationGlobalExceptionRuleUpdateRank"));
|
|
26
|
+
exports.AuthorizationGlobalExceptionRuleUpdateRanks = null;
|
|
27
|
+
utilities.lazyLoad(exports, ["AuthorizationGlobalExceptionRuleUpdateRanks"], () => require("./authorizationGlobalExceptionRuleUpdateRanks"));
|
|
22
28
|
exports.AuthorizationProfile = null;
|
|
23
29
|
utilities.lazyLoad(exports, ["AuthorizationProfile"], () => require("./authorizationProfile"));
|
|
24
30
|
exports.AuthorizationRule = null;
|
|
25
31
|
utilities.lazyLoad(exports, ["AuthorizationRule"], () => require("./authorizationRule"));
|
|
26
32
|
exports.AuthorizationRuleUpdateRank = null;
|
|
27
33
|
utilities.lazyLoad(exports, ["AuthorizationRuleUpdateRank"], () => require("./authorizationRuleUpdateRank"));
|
|
34
|
+
exports.AuthorizationRuleUpdateRanks = null;
|
|
35
|
+
utilities.lazyLoad(exports, ["AuthorizationRuleUpdateRanks"], () => require("./authorizationRuleUpdateRanks"));
|
|
28
36
|
exports.Condition = null;
|
|
29
37
|
utilities.lazyLoad(exports, ["Condition"], () => require("./condition"));
|
|
30
38
|
exports.Dictionary = null;
|
|
@@ -68,6 +76,8 @@ exports.PolicySet = null;
|
|
|
68
76
|
utilities.lazyLoad(exports, ["PolicySet"], () => require("./policySet"));
|
|
69
77
|
exports.PolicySetUpdateRank = null;
|
|
70
78
|
utilities.lazyLoad(exports, ["PolicySetUpdateRank"], () => require("./policySetUpdateRank"));
|
|
79
|
+
exports.PolicySetUpdateRanks = null;
|
|
80
|
+
utilities.lazyLoad(exports, ["PolicySetUpdateRanks"], () => require("./policySetUpdateRanks"));
|
|
71
81
|
exports.TimeAndDateCondition = null;
|
|
72
82
|
utilities.lazyLoad(exports, ["TimeAndDateCondition"], () => require("./timeAndDateCondition"));
|
|
73
83
|
const _module = {
|
|
@@ -80,20 +90,28 @@ const _module = {
|
|
|
80
90
|
return new exports.AuthenticationRule(name, undefined, { urn });
|
|
81
91
|
case "ise:networkaccess/authenticationRuleUpdateRank:AuthenticationRuleUpdateRank":
|
|
82
92
|
return new exports.AuthenticationRuleUpdateRank(name, undefined, { urn });
|
|
93
|
+
case "ise:networkaccess/authenticationRuleUpdateRanks:AuthenticationRuleUpdateRanks":
|
|
94
|
+
return new exports.AuthenticationRuleUpdateRanks(name, undefined, { urn });
|
|
83
95
|
case "ise:networkaccess/authorizationExceptionRule:AuthorizationExceptionRule":
|
|
84
96
|
return new exports.AuthorizationExceptionRule(name, undefined, { urn });
|
|
85
97
|
case "ise:networkaccess/authorizationExceptionRuleUpdateRank:AuthorizationExceptionRuleUpdateRank":
|
|
86
98
|
return new exports.AuthorizationExceptionRuleUpdateRank(name, undefined, { urn });
|
|
99
|
+
case "ise:networkaccess/authorizationExceptionRuleUpdateRanks:AuthorizationExceptionRuleUpdateRanks":
|
|
100
|
+
return new exports.AuthorizationExceptionRuleUpdateRanks(name, undefined, { urn });
|
|
87
101
|
case "ise:networkaccess/authorizationGlobalExceptionRule:AuthorizationGlobalExceptionRule":
|
|
88
102
|
return new exports.AuthorizationGlobalExceptionRule(name, undefined, { urn });
|
|
89
103
|
case "ise:networkaccess/authorizationGlobalExceptionRuleUpdateRank:AuthorizationGlobalExceptionRuleUpdateRank":
|
|
90
104
|
return new exports.AuthorizationGlobalExceptionRuleUpdateRank(name, undefined, { urn });
|
|
105
|
+
case "ise:networkaccess/authorizationGlobalExceptionRuleUpdateRanks:AuthorizationGlobalExceptionRuleUpdateRanks":
|
|
106
|
+
return new exports.AuthorizationGlobalExceptionRuleUpdateRanks(name, undefined, { urn });
|
|
91
107
|
case "ise:networkaccess/authorizationProfile:AuthorizationProfile":
|
|
92
108
|
return new exports.AuthorizationProfile(name, undefined, { urn });
|
|
93
109
|
case "ise:networkaccess/authorizationRule:AuthorizationRule":
|
|
94
110
|
return new exports.AuthorizationRule(name, undefined, { urn });
|
|
95
111
|
case "ise:networkaccess/authorizationRuleUpdateRank:AuthorizationRuleUpdateRank":
|
|
96
112
|
return new exports.AuthorizationRuleUpdateRank(name, undefined, { urn });
|
|
113
|
+
case "ise:networkaccess/authorizationRuleUpdateRanks:AuthorizationRuleUpdateRanks":
|
|
114
|
+
return new exports.AuthorizationRuleUpdateRanks(name, undefined, { urn });
|
|
97
115
|
case "ise:networkaccess/condition:Condition":
|
|
98
116
|
return new exports.Condition(name, undefined, { urn });
|
|
99
117
|
case "ise:networkaccess/dictionary:Dictionary":
|
|
@@ -104,6 +122,8 @@ const _module = {
|
|
|
104
122
|
return new exports.PolicySet(name, undefined, { urn });
|
|
105
123
|
case "ise:networkaccess/policySetUpdateRank:PolicySetUpdateRank":
|
|
106
124
|
return new exports.PolicySetUpdateRank(name, undefined, { urn });
|
|
125
|
+
case "ise:networkaccess/policySetUpdateRanks:PolicySetUpdateRanks":
|
|
126
|
+
return new exports.PolicySetUpdateRanks(name, undefined, { urn });
|
|
107
127
|
case "ise:networkaccess/timeAndDateCondition:TimeAndDateCondition":
|
|
108
128
|
return new exports.TimeAndDateCondition(name, undefined, { urn });
|
|
109
129
|
default:
|
|
@@ -114,17 +134,22 @@ const _module = {
|
|
|
114
134
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/allowedProtocols", _module);
|
|
115
135
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authenticationRule", _module);
|
|
116
136
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authenticationRuleUpdateRank", _module);
|
|
137
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/authenticationRuleUpdateRanks", _module);
|
|
117
138
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationExceptionRule", _module);
|
|
118
139
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationExceptionRuleUpdateRank", _module);
|
|
140
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationExceptionRuleUpdateRanks", _module);
|
|
119
141
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationGlobalExceptionRule", _module);
|
|
120
142
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationGlobalExceptionRuleUpdateRank", _module);
|
|
143
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationGlobalExceptionRuleUpdateRanks", _module);
|
|
121
144
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationProfile", _module);
|
|
122
145
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationRule", _module);
|
|
123
146
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationRuleUpdateRank", _module);
|
|
147
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationRuleUpdateRanks", _module);
|
|
124
148
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/condition", _module);
|
|
125
149
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/dictionary", _module);
|
|
126
150
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/downloadableAcl", _module);
|
|
127
151
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/policySet", _module);
|
|
128
152
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/policySetUpdateRank", _module);
|
|
153
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/policySetUpdateRanks", _module);
|
|
129
154
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/timeAndDateCondition", _module);
|
|
130
155
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkaccess/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkaccess/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource is used to bulk 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 networkAccessPolicySet 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.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as ise from "@pulumi/ise";
|
|
12
|
+
*
|
|
13
|
+
* const example = new ise.networkaccess.PolicySetUpdateRanks("example", {policies: [{
|
|
14
|
+
* id: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
|
15
|
+
* rank: 0,
|
|
16
|
+
* }]});
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare class PolicySetUpdateRanks extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing PolicySetUpdateRanks resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PolicySetUpdateRanksState, opts?: pulumi.CustomResourceOptions): PolicySetUpdateRanks;
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of PolicySetUpdateRanks. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj: any): obj is PolicySetUpdateRanks;
|
|
35
|
+
readonly policies: pulumi.Output<outputs.networkaccess.PolicySetUpdateRanksPolicy[] | undefined>;
|
|
36
|
+
/**
|
|
37
|
+
* Create a PolicySetUpdateRanks resource with the given unique name, arguments, and options.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resource.
|
|
40
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
41
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
42
|
+
*/
|
|
43
|
+
constructor(name: string, args?: PolicySetUpdateRanksArgs, opts?: pulumi.CustomResourceOptions);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Input properties used for looking up and filtering PolicySetUpdateRanks resources.
|
|
47
|
+
*/
|
|
48
|
+
export interface PolicySetUpdateRanksState {
|
|
49
|
+
policies?: pulumi.Input<pulumi.Input<inputs.networkaccess.PolicySetUpdateRanksPolicy>[]>;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a PolicySetUpdateRanks resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface PolicySetUpdateRanksArgs {
|
|
55
|
+
policies?: pulumi.Input<pulumi.Input<inputs.networkaccess.PolicySetUpdateRanksPolicy>[]>;
|
|
56
|
+
}
|