@pulumi/ise 0.2.0-alpha.1729186730 → 0.2.0-alpha.1730180133

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 (39) hide show
  1. package/deviceadmin/authenticationRuleUpdateRank.d.ts +88 -0
  2. package/deviceadmin/authenticationRuleUpdateRank.js +78 -0
  3. package/deviceadmin/authenticationRuleUpdateRank.js.map +1 -0
  4. package/deviceadmin/authorizationExceptionRuleUpdateRank.d.ts +88 -0
  5. package/deviceadmin/authorizationExceptionRuleUpdateRank.js +78 -0
  6. package/deviceadmin/authorizationExceptionRuleUpdateRank.js.map +1 -0
  7. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRank.d.ts +75 -0
  8. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRank.js +72 -0
  9. package/deviceadmin/authorizationGlobalExceptionRuleUpdateRank.js.map +1 -0
  10. package/deviceadmin/authorizationRuleUpdateRank.d.ts +88 -0
  11. package/deviceadmin/authorizationRuleUpdateRank.js +78 -0
  12. package/deviceadmin/authorizationRuleUpdateRank.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/policySet.d.ts +2 -2
  17. package/deviceadmin/policySetUpdateRank.d.ts +75 -0
  18. package/deviceadmin/policySetUpdateRank.js +72 -0
  19. package/deviceadmin/policySetUpdateRank.js.map +1 -0
  20. package/networkaccess/authenticationRuleUpdateRank.d.ts +88 -0
  21. package/networkaccess/authenticationRuleUpdateRank.js +78 -0
  22. package/networkaccess/authenticationRuleUpdateRank.js.map +1 -0
  23. package/networkaccess/authorizationExceptionRuleUpdateRank.d.ts +88 -0
  24. package/networkaccess/authorizationExceptionRuleUpdateRank.js +78 -0
  25. package/networkaccess/authorizationExceptionRuleUpdateRank.js.map +1 -0
  26. package/networkaccess/authorizationGlobalExceptionRuleUpdateRank.d.ts +75 -0
  27. package/networkaccess/authorizationGlobalExceptionRuleUpdateRank.js +72 -0
  28. package/networkaccess/authorizationGlobalExceptionRuleUpdateRank.js.map +1 -0
  29. package/networkaccess/authorizationRuleUpdateRank.d.ts +88 -0
  30. package/networkaccess/authorizationRuleUpdateRank.js +78 -0
  31. package/networkaccess/authorizationRuleUpdateRank.js.map +1 -0
  32. package/networkaccess/index.d.ts +15 -0
  33. package/networkaccess/index.js +26 -1
  34. package/networkaccess/index.js.map +1 -1
  35. package/networkaccess/policySet.d.ts +2 -2
  36. package/networkaccess/policySetUpdateRank.d.ts +75 -0
  37. package/networkaccess/policySetUpdateRank.js +72 -0
  38. package/networkaccess/policySetUpdateRank.js.map +1 -0
  39. package/package.json +2 -2
@@ -0,0 +1,78 @@
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.AuthorizationRuleUpdateRank = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This resource is used to 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.AuthorizationRuleUpdateRank("example", {
18
+ * ruleId: "9b3680da-0165-44f6-9cff-88e778d98020",
19
+ * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
20
+ * rank: 0,
21
+ * });
22
+ * ```
23
+ */
24
+ class AuthorizationRuleUpdateRank extends pulumi.CustomResource {
25
+ /**
26
+ * Get an existing AuthorizationRuleUpdateRank resource's state with the given name, ID, and optional extra
27
+ * properties used to qualify the lookup.
28
+ *
29
+ * @param name The _unique_ name of the resulting resource.
30
+ * @param id The _unique_ provider ID of the resource to lookup.
31
+ * @param state Any extra arguments used during the lookup.
32
+ * @param opts Optional settings to control the behavior of the CustomResource.
33
+ */
34
+ static get(name, id, state, opts) {
35
+ return new AuthorizationRuleUpdateRank(name, state, Object.assign(Object.assign({}, opts), { id: id }));
36
+ }
37
+ /**
38
+ * Returns true if the given object is an instance of AuthorizationRuleUpdateRank. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj) {
42
+ if (obj === undefined || obj === null) {
43
+ return false;
44
+ }
45
+ return obj['__pulumiType'] === AuthorizationRuleUpdateRank.__pulumiType;
46
+ }
47
+ constructor(name, argsOrState, opts) {
48
+ let resourceInputs = {};
49
+ opts = opts || {};
50
+ if (opts.id) {
51
+ const state = argsOrState;
52
+ resourceInputs["policySetId"] = state ? state.policySetId : undefined;
53
+ resourceInputs["rank"] = state ? state.rank : undefined;
54
+ resourceInputs["ruleId"] = state ? state.ruleId : undefined;
55
+ }
56
+ else {
57
+ const args = argsOrState;
58
+ if ((!args || args.policySetId === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'policySetId'");
60
+ }
61
+ if ((!args || args.rank === undefined) && !opts.urn) {
62
+ throw new Error("Missing required property 'rank'");
63
+ }
64
+ if ((!args || args.ruleId === undefined) && !opts.urn) {
65
+ throw new Error("Missing required property 'ruleId'");
66
+ }
67
+ resourceInputs["policySetId"] = args ? args.policySetId : undefined;
68
+ resourceInputs["rank"] = args ? args.rank : undefined;
69
+ resourceInputs["ruleId"] = args ? args.ruleId : undefined;
70
+ }
71
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
72
+ super(AuthorizationRuleUpdateRank.__pulumiType, name, resourceInputs, opts);
73
+ }
74
+ }
75
+ exports.AuthorizationRuleUpdateRank = AuthorizationRuleUpdateRank;
76
+ /** @internal */
77
+ AuthorizationRuleUpdateRank.__pulumiType = 'ise:deviceadmin/authorizationRuleUpdateRank:AuthorizationRuleUpdateRank';
78
+ //# sourceMappingURL=authorizationRuleUpdateRank.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorizationRuleUpdateRank.js","sourceRoot":"","sources":["../../deviceadmin/authorizationRuleUpdateRank.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClF,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,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AA1EL,kEA2EC;AA7DG,gBAAgB;AACO,wCAAY,GAAG,yEAAyE,CAAC"}
@@ -4,15 +4,27 @@ export declare const AllowedProtocolsTacacs: typeof import("./allowedProtocolsTa
4
4
  export { AuthenticationRuleArgs, AuthenticationRuleState } from "./authenticationRule";
5
5
  export type AuthenticationRule = import("./authenticationRule").AuthenticationRule;
6
6
  export declare const AuthenticationRule: typeof import("./authenticationRule").AuthenticationRule;
7
+ export { AuthenticationRuleUpdateRankArgs, AuthenticationRuleUpdateRankState } from "./authenticationRuleUpdateRank";
8
+ export type AuthenticationRuleUpdateRank = import("./authenticationRuleUpdateRank").AuthenticationRuleUpdateRank;
9
+ export declare const AuthenticationRuleUpdateRank: typeof import("./authenticationRuleUpdateRank").AuthenticationRuleUpdateRank;
7
10
  export { AuthorizationExceptionRuleArgs, AuthorizationExceptionRuleState } from "./authorizationExceptionRule";
8
11
  export type AuthorizationExceptionRule = import("./authorizationExceptionRule").AuthorizationExceptionRule;
9
12
  export declare const AuthorizationExceptionRule: typeof import("./authorizationExceptionRule").AuthorizationExceptionRule;
13
+ export { AuthorizationExceptionRuleUpdateRankArgs, AuthorizationExceptionRuleUpdateRankState } from "./authorizationExceptionRuleUpdateRank";
14
+ export type AuthorizationExceptionRuleUpdateRank = import("./authorizationExceptionRuleUpdateRank").AuthorizationExceptionRuleUpdateRank;
15
+ export declare const AuthorizationExceptionRuleUpdateRank: typeof import("./authorizationExceptionRuleUpdateRank").AuthorizationExceptionRuleUpdateRank;
10
16
  export { AuthorizationGlobalExceptionRuleArgs, AuthorizationGlobalExceptionRuleState } from "./authorizationGlobalExceptionRule";
11
17
  export type AuthorizationGlobalExceptionRule = import("./authorizationGlobalExceptionRule").AuthorizationGlobalExceptionRule;
12
18
  export declare const AuthorizationGlobalExceptionRule: typeof import("./authorizationGlobalExceptionRule").AuthorizationGlobalExceptionRule;
19
+ export { AuthorizationGlobalExceptionRuleUpdateRankArgs, AuthorizationGlobalExceptionRuleUpdateRankState } from "./authorizationGlobalExceptionRuleUpdateRank";
20
+ export type AuthorizationGlobalExceptionRuleUpdateRank = import("./authorizationGlobalExceptionRuleUpdateRank").AuthorizationGlobalExceptionRuleUpdateRank;
21
+ export declare const AuthorizationGlobalExceptionRuleUpdateRank: typeof import("./authorizationGlobalExceptionRuleUpdateRank").AuthorizationGlobalExceptionRuleUpdateRank;
13
22
  export { AuthorizationRuleArgs, AuthorizationRuleState } from "./authorizationRule";
14
23
  export type AuthorizationRule = import("./authorizationRule").AuthorizationRule;
15
24
  export declare const AuthorizationRule: typeof import("./authorizationRule").AuthorizationRule;
25
+ export { AuthorizationRuleUpdateRankArgs, AuthorizationRuleUpdateRankState } from "./authorizationRuleUpdateRank";
26
+ export type AuthorizationRuleUpdateRank = import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
27
+ export declare const AuthorizationRuleUpdateRank: typeof import("./authorizationRuleUpdateRank").AuthorizationRuleUpdateRank;
16
28
  export { ConditionArgs, ConditionState } from "./condition";
17
29
  export type Condition = import("./condition").Condition;
18
30
  export declare const Condition: typeof import("./condition").Condition;
@@ -49,6 +61,9 @@ export declare const getTimeAndDateConditionOutput: typeof import("./getTimeAndD
49
61
  export { PolicySetArgs, PolicySetState } from "./policySet";
50
62
  export type PolicySet = import("./policySet").PolicySet;
51
63
  export declare const PolicySet: typeof import("./policySet").PolicySet;
64
+ export { PolicySetUpdateRankArgs, PolicySetUpdateRankState } from "./policySetUpdateRank";
65
+ export type PolicySetUpdateRank = import("./policySetUpdateRank").PolicySetUpdateRank;
66
+ export declare const PolicySetUpdateRank: typeof import("./policySetUpdateRank").PolicySetUpdateRank;
52
67
  export { TacacsCommandSetArgs, TacacsCommandSetState } from "./tacacsCommandSet";
53
68
  export type TacacsCommandSet = import("./tacacsCommandSet").TacacsCommandSet;
54
69
  export declare const TacacsCommandSet: typeof import("./tacacsCommandSet").TacacsCommandSet;
@@ -2,19 +2,27 @@
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.TacacsProfile = exports.TacacsCommandSet = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getTacacsProfileOutput = exports.getTacacsProfile = exports.getTacacsCommandSetOutput = exports.getTacacsCommandSet = exports.getPolicySetOutput = exports.getPolicySet = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsTacacsOutput = exports.getAllowedProtocolsTacacs = exports.Condition = exports.AuthorizationRule = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRule = exports.AuthenticationRule = exports.AllowedProtocolsTacacs = void 0;
5
+ exports.TimeAndDateCondition = exports.TacacsProfile = exports.TacacsCommandSet = exports.PolicySetUpdateRank = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getTacacsProfileOutput = exports.getTacacsProfile = exports.getTacacsCommandSetOutput = exports.getTacacsCommandSet = exports.getPolicySetOutput = exports.getPolicySet = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsTacacsOutput = exports.getAllowedProtocolsTacacs = exports.Condition = exports.AuthorizationRuleUpdateRank = exports.AuthorizationRule = exports.AuthorizationGlobalExceptionRuleUpdateRank = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRuleUpdateRank = exports.AuthorizationExceptionRule = exports.AuthenticationRuleUpdateRank = exports.AuthenticationRule = exports.AllowedProtocolsTacacs = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.AllowedProtocolsTacacs = null;
9
9
  utilities.lazyLoad(exports, ["AllowedProtocolsTacacs"], () => require("./allowedProtocolsTacacs"));
10
10
  exports.AuthenticationRule = null;
11
11
  utilities.lazyLoad(exports, ["AuthenticationRule"], () => require("./authenticationRule"));
12
+ exports.AuthenticationRuleUpdateRank = null;
13
+ utilities.lazyLoad(exports, ["AuthenticationRuleUpdateRank"], () => require("./authenticationRuleUpdateRank"));
12
14
  exports.AuthorizationExceptionRule = null;
13
15
  utilities.lazyLoad(exports, ["AuthorizationExceptionRule"], () => require("./authorizationExceptionRule"));
16
+ exports.AuthorizationExceptionRuleUpdateRank = null;
17
+ utilities.lazyLoad(exports, ["AuthorizationExceptionRuleUpdateRank"], () => require("./authorizationExceptionRuleUpdateRank"));
14
18
  exports.AuthorizationGlobalExceptionRule = null;
15
19
  utilities.lazyLoad(exports, ["AuthorizationGlobalExceptionRule"], () => require("./authorizationGlobalExceptionRule"));
20
+ exports.AuthorizationGlobalExceptionRuleUpdateRank = null;
21
+ utilities.lazyLoad(exports, ["AuthorizationGlobalExceptionRuleUpdateRank"], () => require("./authorizationGlobalExceptionRuleUpdateRank"));
16
22
  exports.AuthorizationRule = null;
17
23
  utilities.lazyLoad(exports, ["AuthorizationRule"], () => require("./authorizationRule"));
24
+ exports.AuthorizationRuleUpdateRank = null;
25
+ utilities.lazyLoad(exports, ["AuthorizationRuleUpdateRank"], () => require("./authorizationRuleUpdateRank"));
18
26
  exports.Condition = null;
19
27
  utilities.lazyLoad(exports, ["Condition"], () => require("./condition"));
20
28
  exports.getAllowedProtocolsTacacs = null;
@@ -49,6 +57,8 @@ exports.getTimeAndDateConditionOutput = null;
49
57
  utilities.lazyLoad(exports, ["getTimeAndDateCondition", "getTimeAndDateConditionOutput"], () => require("./getTimeAndDateCondition"));
50
58
  exports.PolicySet = null;
51
59
  utilities.lazyLoad(exports, ["PolicySet"], () => require("./policySet"));
60
+ exports.PolicySetUpdateRank = null;
61
+ utilities.lazyLoad(exports, ["PolicySetUpdateRank"], () => require("./policySetUpdateRank"));
52
62
  exports.TacacsCommandSet = null;
53
63
  utilities.lazyLoad(exports, ["TacacsCommandSet"], () => require("./tacacsCommandSet"));
54
64
  exports.TacacsProfile = null;
@@ -63,16 +73,26 @@ const _module = {
63
73
  return new exports.AllowedProtocolsTacacs(name, undefined, { urn });
64
74
  case "ise:deviceadmin/authenticationRule:AuthenticationRule":
65
75
  return new exports.AuthenticationRule(name, undefined, { urn });
76
+ case "ise:deviceadmin/authenticationRuleUpdateRank:AuthenticationRuleUpdateRank":
77
+ return new exports.AuthenticationRuleUpdateRank(name, undefined, { urn });
66
78
  case "ise:deviceadmin/authorizationExceptionRule:AuthorizationExceptionRule":
67
79
  return new exports.AuthorizationExceptionRule(name, undefined, { urn });
80
+ case "ise:deviceadmin/authorizationExceptionRuleUpdateRank:AuthorizationExceptionRuleUpdateRank":
81
+ return new exports.AuthorizationExceptionRuleUpdateRank(name, undefined, { urn });
68
82
  case "ise:deviceadmin/authorizationGlobalExceptionRule:AuthorizationGlobalExceptionRule":
69
83
  return new exports.AuthorizationGlobalExceptionRule(name, undefined, { urn });
84
+ case "ise:deviceadmin/authorizationGlobalExceptionRuleUpdateRank:AuthorizationGlobalExceptionRuleUpdateRank":
85
+ return new exports.AuthorizationGlobalExceptionRuleUpdateRank(name, undefined, { urn });
70
86
  case "ise:deviceadmin/authorizationRule:AuthorizationRule":
71
87
  return new exports.AuthorizationRule(name, undefined, { urn });
88
+ case "ise:deviceadmin/authorizationRuleUpdateRank:AuthorizationRuleUpdateRank":
89
+ return new exports.AuthorizationRuleUpdateRank(name, undefined, { urn });
72
90
  case "ise:deviceadmin/condition:Condition":
73
91
  return new exports.Condition(name, undefined, { urn });
74
92
  case "ise:deviceadmin/policySet:PolicySet":
75
93
  return new exports.PolicySet(name, undefined, { urn });
94
+ case "ise:deviceadmin/policySetUpdateRank:PolicySetUpdateRank":
95
+ return new exports.PolicySetUpdateRank(name, undefined, { urn });
76
96
  case "ise:deviceadmin/tacacsCommandSet:TacacsCommandSet":
77
97
  return new exports.TacacsCommandSet(name, undefined, { urn });
78
98
  case "ise:deviceadmin/tacacsProfile:TacacsProfile":
@@ -86,11 +106,16 @@ const _module = {
86
106
  };
87
107
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/allowedProtocolsTacacs", _module);
88
108
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/authenticationRule", _module);
109
+ pulumi.runtime.registerResourceModule("ise", "deviceadmin/authenticationRuleUpdateRank", _module);
89
110
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationExceptionRule", _module);
111
+ pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationExceptionRuleUpdateRank", _module);
90
112
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationGlobalExceptionRule", _module);
113
+ pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationGlobalExceptionRuleUpdateRank", _module);
91
114
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationRule", _module);
115
+ pulumi.runtime.registerResourceModule("ise", "deviceadmin/authorizationRuleUpdateRank", _module);
92
116
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/condition", _module);
93
117
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/policySet", _module);
118
+ pulumi.runtime.registerResourceModule("ise", "deviceadmin/policySetUpdateRank", _module);
94
119
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/tacacsCommandSet", _module);
95
120
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/tacacsProfile", _module);
96
121
  pulumi.runtime.registerResourceModule("ise", "deviceadmin/timeAndDateCondition", _module);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../deviceadmin/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../deviceadmin/index.ts"],"names":[],"mappings":"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"}
@@ -95,7 +95,7 @@ export declare class PolicySet extends pulumi.CustomResource {
95
95
  /**
96
96
  * The description of the policy set
97
97
  */
98
- readonly description: pulumi.Output<string>;
98
+ readonly description: pulumi.Output<string | undefined>;
99
99
  /**
100
100
  * Flag which indicates if the policy set service is of type 'Proxy Sequence' or 'Allowed Protocols'
101
101
  */
@@ -107,7 +107,7 @@ export declare class PolicySet extends pulumi.CustomResource {
107
107
  /**
108
108
  * The rank (priority) in relation to other policy sets. Lower rank is higher priority.
109
109
  */
110
- readonly rank: pulumi.Output<number>;
110
+ readonly rank: pulumi.Output<number | undefined>;
111
111
  /**
112
112
  * Policy set service identifier. 'Allowed Protocols' or 'Server Sequence'.
113
113
  */
@@ -0,0 +1,75 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This resource is used to update rank field in device admin 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 deviceAdminPolicySet 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.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as ise from "@pulumi/ise";
10
+ *
11
+ * const example = new ise.deviceadmin.PolicySetUpdateRank("example", {
12
+ * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
13
+ * rank: 0,
14
+ * });
15
+ * ```
16
+ */
17
+ export declare class PolicySetUpdateRank extends pulumi.CustomResource {
18
+ /**
19
+ * Get an existing PolicySetUpdateRank resource's state with the given name, ID, and optional extra
20
+ * properties used to qualify the lookup.
21
+ *
22
+ * @param name The _unique_ name of the resulting resource.
23
+ * @param id The _unique_ provider ID of the resource to lookup.
24
+ * @param state Any extra arguments used during the lookup.
25
+ * @param opts Optional settings to control the behavior of the CustomResource.
26
+ */
27
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PolicySetUpdateRankState, opts?: pulumi.CustomResourceOptions): PolicySetUpdateRank;
28
+ /**
29
+ * Returns true if the given object is an instance of PolicySetUpdateRank. This is designed to work even
30
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
31
+ */
32
+ static isInstance(obj: any): obj is PolicySetUpdateRank;
33
+ /**
34
+ * Policy set ID
35
+ */
36
+ readonly policySetId: pulumi.Output<string>;
37
+ /**
38
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
39
+ */
40
+ readonly rank: pulumi.Output<number>;
41
+ /**
42
+ * Create a PolicySetUpdateRank resource with the given unique name, arguments, and options.
43
+ *
44
+ * @param name The _unique_ name of the resource.
45
+ * @param args The arguments to use to populate this resource's properties.
46
+ * @param opts A bag of options that control this resource's behavior.
47
+ */
48
+ constructor(name: string, args: PolicySetUpdateRankArgs, opts?: pulumi.CustomResourceOptions);
49
+ }
50
+ /**
51
+ * Input properties used for looking up and filtering PolicySetUpdateRank resources.
52
+ */
53
+ export interface PolicySetUpdateRankState {
54
+ /**
55
+ * Policy set ID
56
+ */
57
+ policySetId?: pulumi.Input<string>;
58
+ /**
59
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
60
+ */
61
+ rank?: pulumi.Input<number>;
62
+ }
63
+ /**
64
+ * The set of arguments for constructing a PolicySetUpdateRank resource.
65
+ */
66
+ export interface PolicySetUpdateRankArgs {
67
+ /**
68
+ * Policy set ID
69
+ */
70
+ policySetId: pulumi.Input<string>;
71
+ /**
72
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
73
+ */
74
+ rank: pulumi.Input<number>;
75
+ }
@@ -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.PolicySetUpdateRank = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This resource is used to update rank field in device admin 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 deviceAdminPolicySet 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.PolicySetUpdateRank("example", {
18
+ * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
19
+ * rank: 0,
20
+ * });
21
+ * ```
22
+ */
23
+ class PolicySetUpdateRank extends pulumi.CustomResource {
24
+ /**
25
+ * Get an existing PolicySetUpdateRank 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 PolicySetUpdateRank(name, state, Object.assign(Object.assign({}, opts), { id: id }));
35
+ }
36
+ /**
37
+ * Returns true if the given object is an instance of PolicySetUpdateRank. 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'] === PolicySetUpdateRank.__pulumiType;
45
+ }
46
+ constructor(name, argsOrState, opts) {
47
+ let resourceInputs = {};
48
+ opts = opts || {};
49
+ if (opts.id) {
50
+ const state = argsOrState;
51
+ resourceInputs["policySetId"] = state ? state.policySetId : undefined;
52
+ resourceInputs["rank"] = state ? state.rank : undefined;
53
+ }
54
+ else {
55
+ const args = argsOrState;
56
+ if ((!args || args.policySetId === undefined) && !opts.urn) {
57
+ throw new Error("Missing required property 'policySetId'");
58
+ }
59
+ if ((!args || args.rank === undefined) && !opts.urn) {
60
+ throw new Error("Missing required property 'rank'");
61
+ }
62
+ resourceInputs["policySetId"] = args ? args.policySetId : undefined;
63
+ resourceInputs["rank"] = args ? args.rank : undefined;
64
+ }
65
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
66
+ super(PolicySetUpdateRank.__pulumiType, name, resourceInputs, opts);
67
+ }
68
+ }
69
+ exports.PolicySetUpdateRank = PolicySetUpdateRank;
70
+ /** @internal */
71
+ PolicySetUpdateRank.__pulumiType = 'ise:deviceadmin/policySetUpdateRank:PolicySetUpdateRank';
72
+ //# sourceMappingURL=policySetUpdateRank.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"policySetUpdateRank.js","sourceRoot":"","sources":["../../deviceadmin/policySetUpdateRank.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AAjEL,kDAkEC;AApDG,gBAAgB;AACO,gCAAY,GAAG,yDAAyD,CAAC"}
@@ -0,0 +1,88 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This resource is used to update rank field in network access 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 networkAccessAuthenticationRule 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.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as ise from "@pulumi/ise";
10
+ *
11
+ * const example = new ise.networkaccess.AuthenticationRuleUpdateRank("example", {
12
+ * ruleId: "9b3680da-0165-44f6-9cff-88e778d98020",
13
+ * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
14
+ * rank: 0,
15
+ * });
16
+ * ```
17
+ */
18
+ export declare class AuthenticationRuleUpdateRank extends pulumi.CustomResource {
19
+ /**
20
+ * Get an existing AuthenticationRuleUpdateRank resource's state with the given name, ID, and optional extra
21
+ * properties used to qualify the lookup.
22
+ *
23
+ * @param name The _unique_ name of the resulting resource.
24
+ * @param id The _unique_ provider ID of the resource to lookup.
25
+ * @param state Any extra arguments used during the lookup.
26
+ * @param opts Optional settings to control the behavior of the CustomResource.
27
+ */
28
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AuthenticationRuleUpdateRankState, opts?: pulumi.CustomResourceOptions): AuthenticationRuleUpdateRank;
29
+ /**
30
+ * Returns true if the given object is an instance of AuthenticationRuleUpdateRank. This is designed to work even
31
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
32
+ */
33
+ static isInstance(obj: any): obj is AuthenticationRuleUpdateRank;
34
+ /**
35
+ * Policy set ID
36
+ */
37
+ readonly policySetId: pulumi.Output<string>;
38
+ /**
39
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
40
+ */
41
+ readonly rank: pulumi.Output<number>;
42
+ /**
43
+ * Authentication rule ID
44
+ */
45
+ readonly ruleId: pulumi.Output<string>;
46
+ /**
47
+ * Create a AuthenticationRuleUpdateRank resource with the given unique name, arguments, and options.
48
+ *
49
+ * @param name The _unique_ name of the resource.
50
+ * @param args The arguments to use to populate this resource's properties.
51
+ * @param opts A bag of options that control this resource's behavior.
52
+ */
53
+ constructor(name: string, args: AuthenticationRuleUpdateRankArgs, opts?: pulumi.CustomResourceOptions);
54
+ }
55
+ /**
56
+ * Input properties used for looking up and filtering AuthenticationRuleUpdateRank resources.
57
+ */
58
+ export interface AuthenticationRuleUpdateRankState {
59
+ /**
60
+ * Policy set ID
61
+ */
62
+ policySetId?: pulumi.Input<string>;
63
+ /**
64
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
65
+ */
66
+ rank?: pulumi.Input<number>;
67
+ /**
68
+ * Authentication rule ID
69
+ */
70
+ ruleId?: pulumi.Input<string>;
71
+ }
72
+ /**
73
+ * The set of arguments for constructing a AuthenticationRuleUpdateRank resource.
74
+ */
75
+ export interface AuthenticationRuleUpdateRankArgs {
76
+ /**
77
+ * Policy set ID
78
+ */
79
+ policySetId: pulumi.Input<string>;
80
+ /**
81
+ * The rank (priority) in relation to other rules. Lower rank is higher priority.
82
+ */
83
+ rank: pulumi.Input<number>;
84
+ /**
85
+ * Authentication rule ID
86
+ */
87
+ ruleId: pulumi.Input<string>;
88
+ }
@@ -0,0 +1,78 @@
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.AuthenticationRuleUpdateRank = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This resource is used to update rank field in network access 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 networkAccessAuthenticationRule 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.AuthenticationRuleUpdateRank("example", {
18
+ * ruleId: "9b3680da-0165-44f6-9cff-88e778d98020",
19
+ * policySetId: "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
20
+ * rank: 0,
21
+ * });
22
+ * ```
23
+ */
24
+ class AuthenticationRuleUpdateRank extends pulumi.CustomResource {
25
+ /**
26
+ * Get an existing AuthenticationRuleUpdateRank resource's state with the given name, ID, and optional extra
27
+ * properties used to qualify the lookup.
28
+ *
29
+ * @param name The _unique_ name of the resulting resource.
30
+ * @param id The _unique_ provider ID of the resource to lookup.
31
+ * @param state Any extra arguments used during the lookup.
32
+ * @param opts Optional settings to control the behavior of the CustomResource.
33
+ */
34
+ static get(name, id, state, opts) {
35
+ return new AuthenticationRuleUpdateRank(name, state, Object.assign(Object.assign({}, opts), { id: id }));
36
+ }
37
+ /**
38
+ * Returns true if the given object is an instance of AuthenticationRuleUpdateRank. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj) {
42
+ if (obj === undefined || obj === null) {
43
+ return false;
44
+ }
45
+ return obj['__pulumiType'] === AuthenticationRuleUpdateRank.__pulumiType;
46
+ }
47
+ constructor(name, argsOrState, opts) {
48
+ let resourceInputs = {};
49
+ opts = opts || {};
50
+ if (opts.id) {
51
+ const state = argsOrState;
52
+ resourceInputs["policySetId"] = state ? state.policySetId : undefined;
53
+ resourceInputs["rank"] = state ? state.rank : undefined;
54
+ resourceInputs["ruleId"] = state ? state.ruleId : undefined;
55
+ }
56
+ else {
57
+ const args = argsOrState;
58
+ if ((!args || args.policySetId === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'policySetId'");
60
+ }
61
+ if ((!args || args.rank === undefined) && !opts.urn) {
62
+ throw new Error("Missing required property 'rank'");
63
+ }
64
+ if ((!args || args.ruleId === undefined) && !opts.urn) {
65
+ throw new Error("Missing required property 'ruleId'");
66
+ }
67
+ resourceInputs["policySetId"] = args ? args.policySetId : undefined;
68
+ resourceInputs["rank"] = args ? args.rank : undefined;
69
+ resourceInputs["ruleId"] = args ? args.ruleId : undefined;
70
+ }
71
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
72
+ super(AuthenticationRuleUpdateRank.__pulumiType, name, resourceInputs, opts);
73
+ }
74
+ }
75
+ exports.AuthenticationRuleUpdateRank = AuthenticationRuleUpdateRank;
76
+ /** @internal */
77
+ AuthenticationRuleUpdateRank.__pulumiType = 'ise:networkaccess/authenticationRuleUpdateRank:AuthenticationRuleUpdateRank';
78
+ //# sourceMappingURL=authenticationRuleUpdateRank.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authenticationRuleUpdateRank.js","sourceRoot":"","sources":["../../networkaccess/authenticationRuleUpdateRank.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;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;IAuBD,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,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;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;;AA1EL,oEA2EC;AA7DG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}