@pulumi/ise 0.3.0-alpha.1745474191 → 0.3.0-alpha.1745951883

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,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.PolicySetUpdateRanks = 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 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.
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.PolicySetUpdateRanks("example", {policies: [{
18
+ * id: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
19
+ * rank: 0,
20
+ * }]});
21
+ * ```
22
+ */
23
+ class PolicySetUpdateRanks extends pulumi.CustomResource {
24
+ /**
25
+ * Get an existing PolicySetUpdateRanks 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 PolicySetUpdateRanks(name, state, Object.assign(Object.assign({}, opts), { id: id }));
35
+ }
36
+ /**
37
+ * Returns true if the given object is an instance of PolicySetUpdateRanks. 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'] === PolicySetUpdateRanks.__pulumiType;
45
+ }
46
+ constructor(name, argsOrState, opts) {
47
+ let resourceInputs = {};
48
+ opts = opts || {};
49
+ if (opts.id) {
50
+ const state = argsOrState;
51
+ resourceInputs["policies"] = state ? state.policies : undefined;
52
+ }
53
+ else {
54
+ const args = argsOrState;
55
+ resourceInputs["policies"] = args ? args.policies : undefined;
56
+ }
57
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
58
+ super(PolicySetUpdateRanks.__pulumiType, name, resourceInputs, opts);
59
+ }
60
+ }
61
+ exports.PolicySetUpdateRanks = PolicySetUpdateRanks;
62
+ /** @internal */
63
+ PolicySetUpdateRanks.__pulumiType = 'ise:networkaccess/policySetUpdateRanks:PolicySetUpdateRanks';
64
+ //# sourceMappingURL=policySetUpdateRanks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"policySetUpdateRanks.js","sourceRoot":"","sources":["../../networkaccess/policySetUpdateRanks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAYD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AAlDL,oDAmDC;AArCG,gBAAgB;AACO,iCAAY,GAAG,6DAA6D,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/ise",
3
- "version": "0.3.0-alpha.1745474191",
3
+ "version": "0.3.0-alpha.1745951883",
4
4
  "description": "A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "ise",
27
- "version": "0.3.0-alpha.1745474191"
27
+ "version": "0.3.0-alpha.1745951883"
28
28
  }
29
29
  }
package/types/input.d.ts CHANGED
@@ -77,6 +77,16 @@ export declare namespace deviceadmin {
77
77
  */
78
78
  operator?: pulumi.Input<string>;
79
79
  }
80
+ interface AuthenticationRuleUpdateRanksRule {
81
+ /**
82
+ * Authentication rule ID
83
+ */
84
+ id?: pulumi.Input<string>;
85
+ /**
86
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
87
+ */
88
+ rank?: pulumi.Input<number>;
89
+ }
80
90
  interface AuthorizationExceptionRuleChildren {
81
91
  /**
82
92
  * Dictionary attribute name
@@ -153,6 +163,16 @@ export declare namespace deviceadmin {
153
163
  */
154
164
  operator?: pulumi.Input<string>;
155
165
  }
166
+ interface AuthorizationExceptionRuleUpdateRanksRule {
167
+ /**
168
+ * Authorization rule ID
169
+ */
170
+ id?: pulumi.Input<string>;
171
+ /**
172
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
173
+ */
174
+ rank?: pulumi.Input<number>;
175
+ }
156
176
  interface AuthorizationGlobalExceptionRuleChildren {
157
177
  /**
158
178
  * Dictionary attribute name
@@ -229,6 +249,16 @@ export declare namespace deviceadmin {
229
249
  */
230
250
  operator?: pulumi.Input<string>;
231
251
  }
252
+ interface AuthorizationGlobalExceptionRuleUpdateRanksRule {
253
+ /**
254
+ * Authorization rule ID
255
+ */
256
+ id?: pulumi.Input<string>;
257
+ /**
258
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
259
+ */
260
+ rank?: pulumi.Input<number>;
261
+ }
232
262
  interface AuthorizationRuleChildren {
233
263
  /**
234
264
  * Dictionary attribute name
@@ -305,6 +335,16 @@ export declare namespace deviceadmin {
305
335
  */
306
336
  operator?: pulumi.Input<string>;
307
337
  }
338
+ interface AuthorizationRuleUpdateRanksRule {
339
+ /**
340
+ * Authorization rule ID
341
+ */
342
+ id?: pulumi.Input<string>;
343
+ /**
344
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
345
+ */
346
+ rank?: pulumi.Input<number>;
347
+ }
308
348
  interface ConditionChildren {
309
349
  /**
310
350
  * Dictionary attribute name
@@ -473,6 +513,16 @@ export declare namespace deviceadmin {
473
513
  */
474
514
  operator?: pulumi.Input<string>;
475
515
  }
516
+ interface PolicySetUpdateRanksPolicy {
517
+ /**
518
+ * Policy set ID
519
+ */
520
+ id?: pulumi.Input<string>;
521
+ /**
522
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
523
+ */
524
+ rank: pulumi.Input<number>;
525
+ }
476
526
  interface TacacsCommandSetCommand {
477
527
  /**
478
528
  * Command arguments
@@ -674,6 +724,16 @@ export declare namespace networkaccess {
674
724
  */
675
725
  operator?: pulumi.Input<string>;
676
726
  }
727
+ interface AuthenticationRuleUpdateRanksRule {
728
+ /**
729
+ * Authentication rule ID
730
+ */
731
+ id?: pulumi.Input<string>;
732
+ /**
733
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
734
+ */
735
+ rank?: pulumi.Input<number>;
736
+ }
677
737
  interface AuthorizationExceptionRuleChildren {
678
738
  /**
679
739
  * Dictionary attribute name
@@ -750,6 +810,16 @@ export declare namespace networkaccess {
750
810
  */
751
811
  operator?: pulumi.Input<string>;
752
812
  }
813
+ interface AuthorizationExceptionRuleUpdateRanksRule {
814
+ /**
815
+ * Authorization rule ID
816
+ */
817
+ id?: pulumi.Input<string>;
818
+ /**
819
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
820
+ */
821
+ rank?: pulumi.Input<number>;
822
+ }
753
823
  interface AuthorizationGlobalExceptionRuleChildren {
754
824
  /**
755
825
  * Dictionary attribute name
@@ -826,6 +896,16 @@ export declare namespace networkaccess {
826
896
  */
827
897
  operator?: pulumi.Input<string>;
828
898
  }
899
+ interface AuthorizationGlobalExceptionRuleUpdateRanksRule {
900
+ /**
901
+ * Authorization rule ID
902
+ */
903
+ id?: pulumi.Input<string>;
904
+ /**
905
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
906
+ */
907
+ rank?: pulumi.Input<number>;
908
+ }
829
909
  interface AuthorizationProfileAdvancedAttribute {
830
910
  /**
831
911
  * Dictionary name
@@ -929,6 +1009,16 @@ export declare namespace networkaccess {
929
1009
  */
930
1010
  operator?: pulumi.Input<string>;
931
1011
  }
1012
+ interface AuthorizationRuleUpdateRanksRule {
1013
+ /**
1014
+ * Authorization rule ID
1015
+ */
1016
+ id?: pulumi.Input<string>;
1017
+ /**
1018
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1019
+ */
1020
+ rank?: pulumi.Input<number>;
1021
+ }
932
1022
  interface ConditionChildren {
933
1023
  /**
934
1024
  * Dictionary attribute name
@@ -968,7 +1058,7 @@ export declare namespace networkaccess {
968
1058
  */
969
1059
  isNegate?: pulumi.Input<boolean>;
970
1060
  /**
971
- * Condition name
1061
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
972
1062
  */
973
1063
  name?: pulumi.Input<string>;
974
1064
  /**
@@ -1012,7 +1102,7 @@ export declare namespace networkaccess {
1012
1102
  */
1013
1103
  isNegate?: pulumi.Input<boolean>;
1014
1104
  /**
1015
- * Condition name
1105
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
1016
1106
  */
1017
1107
  name?: pulumi.Input<string>;
1018
1108
  /**
@@ -1097,6 +1187,16 @@ export declare namespace networkaccess {
1097
1187
  */
1098
1188
  operator?: pulumi.Input<string>;
1099
1189
  }
1190
+ interface PolicySetUpdateRanksPolicy {
1191
+ /**
1192
+ * Policy set ID
1193
+ */
1194
+ id?: pulumi.Input<string>;
1195
+ /**
1196
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1197
+ */
1198
+ rank: pulumi.Input<number>;
1199
+ }
1100
1200
  }
1101
1201
  export declare namespace system {
1102
1202
  interface LicenseTierStateLicense {
package/types/output.d.ts CHANGED
@@ -76,6 +76,16 @@ export declare namespace deviceadmin {
76
76
  */
77
77
  operator?: string;
78
78
  }
79
+ interface AuthenticationRuleUpdateRanksRule {
80
+ /**
81
+ * Authentication rule ID
82
+ */
83
+ id?: string;
84
+ /**
85
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
86
+ */
87
+ rank?: number;
88
+ }
79
89
  interface AuthorizationExceptionRuleChildren {
80
90
  /**
81
91
  * Dictionary attribute name
@@ -152,6 +162,16 @@ export declare namespace deviceadmin {
152
162
  */
153
163
  operator?: string;
154
164
  }
165
+ interface AuthorizationExceptionRuleUpdateRanksRule {
166
+ /**
167
+ * Authorization rule ID
168
+ */
169
+ id?: string;
170
+ /**
171
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
172
+ */
173
+ rank?: number;
174
+ }
155
175
  interface AuthorizationGlobalExceptionRuleChildren {
156
176
  /**
157
177
  * Dictionary attribute name
@@ -228,6 +248,16 @@ export declare namespace deviceadmin {
228
248
  */
229
249
  operator?: string;
230
250
  }
251
+ interface AuthorizationGlobalExceptionRuleUpdateRanksRule {
252
+ /**
253
+ * Authorization rule ID
254
+ */
255
+ id?: string;
256
+ /**
257
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
258
+ */
259
+ rank?: number;
260
+ }
231
261
  interface AuthorizationRuleChildren {
232
262
  /**
233
263
  * Dictionary attribute name
@@ -304,6 +334,16 @@ export declare namespace deviceadmin {
304
334
  */
305
335
  operator?: string;
306
336
  }
337
+ interface AuthorizationRuleUpdateRanksRule {
338
+ /**
339
+ * Authorization rule ID
340
+ */
341
+ id?: string;
342
+ /**
343
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
344
+ */
345
+ rank?: number;
346
+ }
307
347
  interface ConditionChildren {
308
348
  /**
309
349
  * Dictionary attribute name
@@ -948,6 +988,16 @@ export declare namespace deviceadmin {
948
988
  */
949
989
  operator?: string;
950
990
  }
991
+ interface PolicySetUpdateRanksPolicy {
992
+ /**
993
+ * Policy set ID
994
+ */
995
+ id?: string;
996
+ /**
997
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
998
+ */
999
+ rank: number;
1000
+ }
951
1001
  interface TacacsCommandSetCommand {
952
1002
  /**
953
1003
  * Command arguments
@@ -1230,6 +1280,16 @@ export declare namespace networkaccess {
1230
1280
  */
1231
1281
  operator?: string;
1232
1282
  }
1283
+ interface AuthenticationRuleUpdateRanksRule {
1284
+ /**
1285
+ * Authentication rule ID
1286
+ */
1287
+ id?: string;
1288
+ /**
1289
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1290
+ */
1291
+ rank?: number;
1292
+ }
1233
1293
  interface AuthorizationExceptionRuleChildren {
1234
1294
  /**
1235
1295
  * Dictionary attribute name
@@ -1306,6 +1366,16 @@ export declare namespace networkaccess {
1306
1366
  */
1307
1367
  operator?: string;
1308
1368
  }
1369
+ interface AuthorizationExceptionRuleUpdateRanksRule {
1370
+ /**
1371
+ * Authorization rule ID
1372
+ */
1373
+ id?: string;
1374
+ /**
1375
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1376
+ */
1377
+ rank?: number;
1378
+ }
1309
1379
  interface AuthorizationGlobalExceptionRuleChildren {
1310
1380
  /**
1311
1381
  * Dictionary attribute name
@@ -1382,6 +1452,16 @@ export declare namespace networkaccess {
1382
1452
  */
1383
1453
  operator?: string;
1384
1454
  }
1455
+ interface AuthorizationGlobalExceptionRuleUpdateRanksRule {
1456
+ /**
1457
+ * Authorization rule ID
1458
+ */
1459
+ id?: string;
1460
+ /**
1461
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1462
+ */
1463
+ rank?: number;
1464
+ }
1385
1465
  interface AuthorizationProfileAdvancedAttribute {
1386
1466
  /**
1387
1467
  * Dictionary name
@@ -1485,6 +1565,16 @@ export declare namespace networkaccess {
1485
1565
  */
1486
1566
  operator?: string;
1487
1567
  }
1568
+ interface AuthorizationRuleUpdateRanksRule {
1569
+ /**
1570
+ * Authorization rule ID
1571
+ */
1572
+ id?: string;
1573
+ /**
1574
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
1575
+ */
1576
+ rank?: number;
1577
+ }
1488
1578
  interface ConditionChildren {
1489
1579
  /**
1490
1580
  * Dictionary attribute name
@@ -1524,7 +1614,7 @@ export declare namespace networkaccess {
1524
1614
  */
1525
1615
  isNegate?: boolean;
1526
1616
  /**
1527
- * Condition name
1617
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
1528
1618
  */
1529
1619
  name?: string;
1530
1620
  /**
@@ -1568,7 +1658,7 @@ export declare namespace networkaccess {
1568
1658
  */
1569
1659
  isNegate?: boolean;
1570
1660
  /**
1571
- * Condition name
1661
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
1572
1662
  */
1573
1663
  name?: string;
1574
1664
  /**
@@ -1929,7 +2019,7 @@ export declare namespace networkaccess {
1929
2019
  */
1930
2020
  isNegate: boolean;
1931
2021
  /**
1932
- * Condition name
2022
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
1933
2023
  */
1934
2024
  name: string;
1935
2025
  /**
@@ -1971,7 +2061,7 @@ export declare namespace networkaccess {
1971
2061
  */
1972
2062
  isNegate: boolean;
1973
2063
  /**
1974
- * Condition name
2064
+ * Condition name. Required if `conditionType` is `ConditionReference`, if `conditionType` is `ConditionAttributes` then this attribute is not used.
1975
2065
  */
1976
2066
  name: string;
1977
2067
  /**
@@ -2127,6 +2217,16 @@ export declare namespace networkaccess {
2127
2217
  */
2128
2218
  operator?: string;
2129
2219
  }
2220
+ interface PolicySetUpdateRanksPolicy {
2221
+ /**
2222
+ * Policy set ID
2223
+ */
2224
+ id?: string;
2225
+ /**
2226
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
2227
+ */
2228
+ rank: number;
2229
+ }
2130
2230
  }
2131
2231
  export declare namespace system {
2132
2232
  interface GetLicenseTierStateLicense {