@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.
Files changed (43) hide show
  1. package/deviceadmin/authenticationRuleUpdateRanks.d.ts +71 -0
  2. package/deviceadmin/authenticationRuleUpdateRanks.js +72 -0
  3. package/deviceadmin/authenticationRuleUpdateRanks.js.map +1 -0
  4. package/deviceadmin/authorizationExceptionRuleUpdateRanks.d.ts +71 -0
  5. package/deviceadmin/authorizationExceptionRuleUpdateRanks.js +72 -0
  6. package/deviceadmin/authorizationExceptionRuleUpdateRanks.js.map +1 -0
  7. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.d.ts +56 -0
  8. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.js +64 -0
  9. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRanks.js.map +1 -0
  10. package/deviceadmin/authorizationRuleUpdateRanks.d.ts +71 -0
  11. package/deviceadmin/authorizationRuleUpdateRanks.js +72 -0
  12. package/deviceadmin/authorizationRuleUpdateRanks.js.map +1 -0
  13. package/deviceadmin/index.d.ts +15 -0
  14. package/deviceadmin/index.js +26 -1
  15. package/deviceadmin/index.js.map +1 -1
  16. package/deviceadmin/policySetUpdateRanks.d.ts +56 -0
  17. package/deviceadmin/policySetUpdateRanks.js +64 -0
  18. package/deviceadmin/policySetUpdateRanks.js.map +1 -0
  19. package/network/device.d.ts +4 -4
  20. package/network/device.js +3 -3
  21. package/network/device.js.map +1 -1
  22. package/network/getDevice.d.ts +1 -1
  23. package/networkaccess/authenticationRuleUpdateRanks.d.ts +71 -0
  24. package/networkaccess/authenticationRuleUpdateRanks.js +72 -0
  25. package/networkaccess/authenticationRuleUpdateRanks.js.map +1 -0
  26. package/networkaccess/authorizationExceptionRuleUpdateRanks.d.ts +71 -0
  27. package/networkaccess/authorizationExceptionRuleUpdateRanks.js +72 -0
  28. package/networkaccess/authorizationExceptionRuleUpdateRanks.js.map +1 -0
  29. package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.d.ts +56 -0
  30. package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.js +64 -0
  31. package/networkaccess/authorizationGlobalExceptionRuleUpdateRanks.js.map +1 -0
  32. package/networkaccess/authorizationRuleUpdateRanks.d.ts +71 -0
  33. package/networkaccess/authorizationRuleUpdateRanks.js +72 -0
  34. package/networkaccess/authorizationRuleUpdateRanks.js.map +1 -0
  35. package/networkaccess/index.d.ts +15 -0
  36. package/networkaccess/index.js +26 -1
  37. package/networkaccess/index.js.map +1 -1
  38. package/networkaccess/policySetUpdateRanks.d.ts +56 -0
  39. package/networkaccess/policySetUpdateRanks.js +64 -0
  40. package/networkaccess/policySetUpdateRanks.js.map +1 -0
  41. package/package.json +2 -2
  42. package/types/input.d.ts +102 -2
  43. package/types/output.d.ts +104 -4
@@ -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 device admin authentication 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 deviceAdminAuthenticationRule 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.deviceadmin.AuthenticationRuleUpdateRanks("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 AuthenticationRuleUpdateRanks extends pulumi.CustomResource {
23
+ /**
24
+ * Get an existing AuthenticationRuleUpdateRanks 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?: AuthenticationRuleUpdateRanksState, opts?: pulumi.CustomResourceOptions): AuthenticationRuleUpdateRanks;
33
+ /**
34
+ * Returns true if the given object is an instance of AuthenticationRuleUpdateRanks. 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 AuthenticationRuleUpdateRanks;
38
+ /**
39
+ * Policy set ID
40
+ */
41
+ readonly policySetId: pulumi.Output<string>;
42
+ readonly rules: pulumi.Output<outputs.deviceadmin.AuthenticationRuleUpdateRanksRule[] | undefined>;
43
+ /**
44
+ * Create a AuthenticationRuleUpdateRanks 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: AuthenticationRuleUpdateRanksArgs, opts?: pulumi.CustomResourceOptions);
51
+ }
52
+ /**
53
+ * Input properties used for looking up and filtering AuthenticationRuleUpdateRanks resources.
54
+ */
55
+ export interface AuthenticationRuleUpdateRanksState {
56
+ /**
57
+ * Policy set ID
58
+ */
59
+ policySetId?: pulumi.Input<string>;
60
+ rules?: pulumi.Input<pulumi.Input<inputs.deviceadmin.AuthenticationRuleUpdateRanksRule>[]>;
61
+ }
62
+ /**
63
+ * The set of arguments for constructing a AuthenticationRuleUpdateRanks resource.
64
+ */
65
+ export interface AuthenticationRuleUpdateRanksArgs {
66
+ /**
67
+ * Policy set ID
68
+ */
69
+ policySetId: pulumi.Input<string>;
70
+ rules?: pulumi.Input<pulumi.Input<inputs.deviceadmin.AuthenticationRuleUpdateRanksRule>[]>;
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.AuthenticationRuleUpdateRanks = 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 device admin authentication 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 deviceAdminAuthenticationRule 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.deviceadmin.AuthenticationRuleUpdateRanks("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 AuthenticationRuleUpdateRanks extends pulumi.CustomResource {
27
+ /**
28
+ * Get an existing AuthenticationRuleUpdateRanks 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 AuthenticationRuleUpdateRanks(name, state, Object.assign(Object.assign({}, opts), { id: id }));
38
+ }
39
+ /**
40
+ * Returns true if the given object is an instance of AuthenticationRuleUpdateRanks. 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'] === AuthenticationRuleUpdateRanks.__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(AuthenticationRuleUpdateRanks.__pulumiType, name, resourceInputs, opts);
67
+ }
68
+ }
69
+ exports.AuthenticationRuleUpdateRanks = AuthenticationRuleUpdateRanks;
70
+ /** @internal */
71
+ AuthenticationRuleUpdateRanks.__pulumiType = 'ise:deviceadmin/authenticationRuleUpdateRanks:AuthenticationRuleUpdateRanks';
72
+ //# sourceMappingURL=authenticationRuleUpdateRanks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authenticationRuleUpdateRanks.js","sourceRoot":"","sources":["../../deviceadmin/authenticationRuleUpdateRanks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,6BAA8B,SAAQ,MAAM,CAAC,cAAc;IACpE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0C,EAAE,IAAmC;QACxI,OAAO,IAAI,6BAA6B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpF,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,6BAA6B,CAAC,YAAY,CAAC;IAC9E,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAoF,EAAE,IAAmC;QAC/I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6D,CAAC;YAC5E,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,WAA4D,CAAC;YAC1E,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,6BAA6B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClF,CAAC;;AA3DL,sEA4DC;AA9CG,gBAAgB;AACO,0CAAY,GAAG,6EAA6E,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 device admin 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 deviceAdminAuthorizationExceptionRule 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.deviceadmin.AuthorizationExceptionRuleUpdateRanks("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 AuthorizationExceptionRuleUpdateRanks extends pulumi.CustomResource {
23
+ /**
24
+ * Get an existing AuthorizationExceptionRuleUpdateRanks 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?: AuthorizationExceptionRuleUpdateRanksState, opts?: pulumi.CustomResourceOptions): AuthorizationExceptionRuleUpdateRanks;
33
+ /**
34
+ * Returns true if the given object is an instance of AuthorizationExceptionRuleUpdateRanks. 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 AuthorizationExceptionRuleUpdateRanks;
38
+ /**
39
+ * Policy set ID
40
+ */
41
+ readonly policySetId: pulumi.Output<string>;
42
+ readonly rules: pulumi.Output<outputs.deviceadmin.AuthorizationExceptionRuleUpdateRanksRule[] | undefined>;
43
+ /**
44
+ * Create a AuthorizationExceptionRuleUpdateRanks 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: AuthorizationExceptionRuleUpdateRanksArgs, opts?: pulumi.CustomResourceOptions);
51
+ }
52
+ /**
53
+ * Input properties used for looking up and filtering AuthorizationExceptionRuleUpdateRanks resources.
54
+ */
55
+ export interface AuthorizationExceptionRuleUpdateRanksState {
56
+ /**
57
+ * Policy set ID
58
+ */
59
+ policySetId?: pulumi.Input<string>;
60
+ rules?: pulumi.Input<pulumi.Input<inputs.deviceadmin.AuthorizationExceptionRuleUpdateRanksRule>[]>;
61
+ }
62
+ /**
63
+ * The set of arguments for constructing a AuthorizationExceptionRuleUpdateRanks resource.
64
+ */
65
+ export interface AuthorizationExceptionRuleUpdateRanksArgs {
66
+ /**
67
+ * Policy set ID
68
+ */
69
+ policySetId: pulumi.Input<string>;
70
+ rules?: pulumi.Input<pulumi.Input<inputs.deviceadmin.AuthorizationExceptionRuleUpdateRanksRule>[]>;
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.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 device admin 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 deviceAdminAuthorizationExceptionRule 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.deviceadmin.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:deviceadmin/authorizationExceptionRuleUpdateRanks:AuthorizationExceptionRuleUpdateRanks';
72
+ //# sourceMappingURL=authorizationExceptionRuleUpdateRanks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorizationExceptionRuleUpdateRanks.js","sourceRoot":"","sources":["../../deviceadmin/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,6FAA6F,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 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 deviceAdminAuthorizationGlobalExceptionRule 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.deviceadmin.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.deviceadmin.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.deviceadmin.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.deviceadmin.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 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 deviceAdminAuthorizationGlobalExceptionRule 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.deviceadmin.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:deviceadmin/authorizationGlobalExceptionRuleUpdateRanks:AuthorizationGlobalExceptionRuleUpdateRanks';
64
+ //# sourceMappingURL=authorizationGlobalExceptionRuleUpdateRanks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorizationGlobalExceptionRuleUpdateRanks.js","sourceRoot":"","sources":["../../deviceadmin/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,yGAAyG,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 device admin authorization 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 deviceAdminAuthorizationRule 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.deviceadmin.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.deviceadmin.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.deviceadmin.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.deviceadmin.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 device admin authorization 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 deviceAdminAuthorizationRule 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.deviceadmin.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:deviceadmin/authorizationRuleUpdateRanks:AuthorizationRuleUpdateRanks';
72
+ //# sourceMappingURL=authorizationRuleUpdateRanks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorizationRuleUpdateRanks.js","sourceRoot":"","sources":["../../deviceadmin/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,2EAA2E,CAAC"}
@@ -7,24 +7,36 @@ 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 { AuthorizationRuleArgs, AuthorizationRuleState } from "./authorizationRule";
23
32
  export type AuthorizationRule = import("./authorizationRule").AuthorizationRule;
24
33
  export declare const AuthorizationRule: typeof import("./authorizationRule").AuthorizationRule;
25
34
  export { AuthorizationRuleUpdateRankArgs, AuthorizationRuleUpdateRankState } from "./authorizationRuleUpdateRank";
26
35
  export type AuthorizationRuleUpdateRank = import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
27
36
  export declare const AuthorizationRuleUpdateRank: typeof import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
37
+ export { AuthorizationRuleUpdateRanksArgs, AuthorizationRuleUpdateRanksState } from "./authorizationRuleUpdateRanks";
38
+ export type AuthorizationRuleUpdateRanks = import("./authorizationRuleUpdateRanks").AuthorizationRuleUpdateRanks;
39
+ export declare const AuthorizationRuleUpdateRanks: typeof import("./authorizationRuleUpdateRanks").AuthorizationRuleUpdateRanks;
28
40
  export { ConditionArgs, ConditionState } from "./condition";
29
41
  export type Condition = import("./condition").Condition;
30
42
  export declare const Condition: typeof import("./condition").Condition;
@@ -64,6 +76,9 @@ export declare const PolicySet: typeof import("./policySet").PolicySet;
64
76
  export { PolicySetUpdateRankArgs, PolicySetUpdateRankState } from "./policySetUpdateRank";
65
77
  export type PolicySetUpdateRank = import("./policySetUpdateRank").PolicySetUpdateRank;
66
78
  export declare const PolicySetUpdateRank: typeof import("./policySetUpdateRank").PolicySetUpdateRank;
79
+ export { PolicySetUpdateRanksArgs, PolicySetUpdateRanksState } from "./policySetUpdateRanks";
80
+ export type PolicySetUpdateRanks = import("./policySetUpdateRanks").PolicySetUpdateRanks;
81
+ export declare const PolicySetUpdateRanks: typeof import("./policySetUpdateRanks").PolicySetUpdateRanks;
67
82
  export { TacacsCommandSetArgs, TacacsCommandSetState } from "./tacacsCommandSet";
68
83
  export type TacacsCommandSet = import("./tacacsCommandSet").TacacsCommandSet;
69
84
  export declare const TacacsCommandSet: typeof import("./tacacsCommandSet").TacacsCommandSet;