@pulumi/pagerduty 3.7.0-alpha.1663282311 → 3.7.0-alpha.1668645661
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/addon.js +19 -19
- package/addon.js.map +1 -1
- package/businessService.js +22 -22
- package/businessService.js.map +1 -1
- package/businessServiceSubscriber.js +22 -22
- package/businessServiceSubscriber.js.map +1 -1
- package/escalationPolicy.js +22 -22
- package/escalationPolicy.js.map +1 -1
- package/eventOrchestration.js +22 -22
- package/eventOrchestration.js.map +1 -1
- package/eventOrchestrationRouter.js +22 -22
- package/eventOrchestrationRouter.js.map +1 -1
- package/eventOrchestrationService.js +22 -22
- package/eventOrchestrationService.js.map +1 -1
- package/eventOrchestrationUnrouted.js +22 -22
- package/eventOrchestrationUnrouted.js.map +1 -1
- package/eventRule.js +22 -22
- package/eventRule.js.map +1 -1
- package/extension.js +22 -22
- package/extension.js.map +1 -1
- package/extensionServiceNow.js +22 -22
- package/extensionServiceNow.js.map +1 -1
- package/maintenanceWindow.js +22 -22
- package/maintenanceWindow.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/responsePlay.js +22 -22
- package/responsePlay.js.map +1 -1
- package/ruleset.js +20 -20
- package/ruleset.js.map +1 -1
- package/rulesetRule.js +22 -22
- package/rulesetRule.js.map +1 -1
- package/schedule.js +22 -22
- package/schedule.js.map +1 -1
- package/service.js +22 -22
- package/service.js.map +1 -1
- package/serviceDependency.js +17 -17
- package/serviceDependency.js.map +1 -1
- package/serviceEventRule.js +22 -22
- package/serviceEventRule.js.map +1 -1
- package/serviceIntegration.js +22 -22
- package/serviceIntegration.js.map +1 -1
- package/slackConnection.js +22 -22
- package/slackConnection.js.map +1 -1
- package/tag.js +21 -21
- package/tag.js.map +1 -1
- package/tagAssignment.js +22 -22
- package/tagAssignment.js.map +1 -1
- package/team.js +21 -21
- package/team.js.map +1 -1
- package/teamMembership.js +22 -22
- package/teamMembership.js.map +1 -1
- package/user.js +22 -22
- package/user.js.map +1 -1
- package/userContactMethod.js +22 -22
- package/userContactMethod.js.map +1 -1
- package/userNotificationRule.js +22 -22
- package/userNotificationRule.js.map +1 -1
- package/webhookSubscription.js +22 -22
- package/webhookSubscription.js.map +1 -1
package/addon.js
CHANGED
|
@@ -28,25 +28,6 @@ const utilities = require("./utilities");
|
|
|
28
28
|
* ```
|
|
29
29
|
*/
|
|
30
30
|
class Addon extends pulumi.CustomResource {
|
|
31
|
-
constructor(name, argsOrState, opts) {
|
|
32
|
-
let resourceInputs = {};
|
|
33
|
-
opts = opts || {};
|
|
34
|
-
if (opts.id) {
|
|
35
|
-
const state = argsOrState;
|
|
36
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
37
|
-
resourceInputs["src"] = state ? state.src : undefined;
|
|
38
|
-
}
|
|
39
|
-
else {
|
|
40
|
-
const args = argsOrState;
|
|
41
|
-
if ((!args || args.src === undefined) && !opts.urn) {
|
|
42
|
-
throw new Error("Missing required property 'src'");
|
|
43
|
-
}
|
|
44
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
45
|
-
resourceInputs["src"] = args ? args.src : undefined;
|
|
46
|
-
}
|
|
47
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
48
|
-
super(Addon.__pulumiType, name, resourceInputs, opts);
|
|
49
|
-
}
|
|
50
31
|
/**
|
|
51
32
|
* Get an existing Addon resource's state with the given name, ID, and optional extra
|
|
52
33
|
* properties used to qualify the lookup.
|
|
@@ -69,6 +50,25 @@ class Addon extends pulumi.CustomResource {
|
|
|
69
50
|
}
|
|
70
51
|
return obj['__pulumiType'] === Addon.__pulumiType;
|
|
71
52
|
}
|
|
53
|
+
constructor(name, argsOrState, opts) {
|
|
54
|
+
let resourceInputs = {};
|
|
55
|
+
opts = opts || {};
|
|
56
|
+
if (opts.id) {
|
|
57
|
+
const state = argsOrState;
|
|
58
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
59
|
+
resourceInputs["src"] = state ? state.src : undefined;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
const args = argsOrState;
|
|
63
|
+
if ((!args || args.src === undefined) && !opts.urn) {
|
|
64
|
+
throw new Error("Missing required property 'src'");
|
|
65
|
+
}
|
|
66
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
67
|
+
resourceInputs["src"] = args ? args.src : undefined;
|
|
68
|
+
}
|
|
69
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
70
|
+
super(Addon.__pulumiType, name, resourceInputs, opts);
|
|
71
|
+
}
|
|
72
72
|
}
|
|
73
73
|
exports.Addon = Addon;
|
|
74
74
|
/** @internal */
|
package/addon.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addon.js","sourceRoot":"","sources":["../addon.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"addon.js","sourceRoot":"","sources":["../addon.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChD,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AA9DL,sBA+DC;AAjDG,gBAAgB;AACO,kBAAY,GAAG,6BAA6B,CAAC"}
|
package/businessService.js
CHANGED
|
@@ -30,6 +30,28 @@ const utilities = require("./utilities");
|
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
32
|
class BusinessService extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing BusinessService resource's state with the given name, ID, and optional extra
|
|
35
|
+
* properties used to qualify the lookup.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resulting resource.
|
|
38
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
39
|
+
* @param state Any extra arguments used during the lookup.
|
|
40
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
41
|
+
*/
|
|
42
|
+
static get(name, id, state, opts) {
|
|
43
|
+
return new BusinessService(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of BusinessService. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj) {
|
|
50
|
+
if (obj === undefined || obj === null) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
return obj['__pulumiType'] === BusinessService.__pulumiType;
|
|
54
|
+
}
|
|
33
55
|
constructor(name, argsOrState, opts) {
|
|
34
56
|
var _a;
|
|
35
57
|
let resourceInputs = {};
|
|
@@ -59,28 +81,6 @@ class BusinessService extends pulumi.CustomResource {
|
|
|
59
81
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
60
82
|
super(BusinessService.__pulumiType, name, resourceInputs, opts);
|
|
61
83
|
}
|
|
62
|
-
/**
|
|
63
|
-
* Get an existing BusinessService resource's state with the given name, ID, and optional extra
|
|
64
|
-
* properties used to qualify the lookup.
|
|
65
|
-
*
|
|
66
|
-
* @param name The _unique_ name of the resulting resource.
|
|
67
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
68
|
-
* @param state Any extra arguments used during the lookup.
|
|
69
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
70
|
-
*/
|
|
71
|
-
static get(name, id, state, opts) {
|
|
72
|
-
return new BusinessService(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Returns true if the given object is an instance of BusinessService. This is designed to work even
|
|
76
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
77
|
-
*/
|
|
78
|
-
static isInstance(obj) {
|
|
79
|
-
if (obj === undefined || obj === null) {
|
|
80
|
-
return false;
|
|
81
|
-
}
|
|
82
|
-
return obj['__pulumiType'] === BusinessService.__pulumiType;
|
|
83
|
-
}
|
|
84
84
|
}
|
|
85
85
|
exports.BusinessService = BusinessService;
|
|
86
86
|
/** @internal */
|
package/businessService.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"businessService.js","sourceRoot":"","sources":["../businessService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"businessService.js","sourceRoot":"","sources":["../businessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -42,6 +42,28 @@ const utilities = require("./utilities");
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
class BusinessServiceSubscriber extends pulumi.CustomResource {
|
|
45
|
+
/**
|
|
46
|
+
* Get an existing BusinessServiceSubscriber resource's state with the given name, ID, and optional extra
|
|
47
|
+
* properties used to qualify the lookup.
|
|
48
|
+
*
|
|
49
|
+
* @param name The _unique_ name of the resulting resource.
|
|
50
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
51
|
+
* @param state Any extra arguments used during the lookup.
|
|
52
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
53
|
+
*/
|
|
54
|
+
static get(name, id, state, opts) {
|
|
55
|
+
return new BusinessServiceSubscriber(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Returns true if the given object is an instance of BusinessServiceSubscriber. This is designed to work even
|
|
59
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
+
*/
|
|
61
|
+
static isInstance(obj) {
|
|
62
|
+
if (obj === undefined || obj === null) {
|
|
63
|
+
return false;
|
|
64
|
+
}
|
|
65
|
+
return obj['__pulumiType'] === BusinessServiceSubscriber.__pulumiType;
|
|
66
|
+
}
|
|
45
67
|
constructor(name, argsOrState, opts) {
|
|
46
68
|
let resourceInputs = {};
|
|
47
69
|
opts = opts || {};
|
|
@@ -69,28 +91,6 @@ class BusinessServiceSubscriber extends pulumi.CustomResource {
|
|
|
69
91
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
70
92
|
super(BusinessServiceSubscriber.__pulumiType, name, resourceInputs, opts);
|
|
71
93
|
}
|
|
72
|
-
/**
|
|
73
|
-
* Get an existing BusinessServiceSubscriber resource's state with the given name, ID, and optional extra
|
|
74
|
-
* properties used to qualify the lookup.
|
|
75
|
-
*
|
|
76
|
-
* @param name The _unique_ name of the resulting resource.
|
|
77
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
78
|
-
* @param state Any extra arguments used during the lookup.
|
|
79
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
80
|
-
*/
|
|
81
|
-
static get(name, id, state, opts) {
|
|
82
|
-
return new BusinessServiceSubscriber(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Returns true if the given object is an instance of BusinessServiceSubscriber. This is designed to work even
|
|
86
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
87
|
-
*/
|
|
88
|
-
static isInstance(obj) {
|
|
89
|
-
if (obj === undefined || obj === null) {
|
|
90
|
-
return false;
|
|
91
|
-
}
|
|
92
|
-
return obj['__pulumiType'] === BusinessServiceSubscriber.__pulumiType;
|
|
93
|
-
}
|
|
94
94
|
}
|
|
95
95
|
exports.BusinessServiceSubscriber = BusinessServiceSubscriber;
|
|
96
96
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"businessServiceSubscriber.js","sourceRoot":"","sources":["../businessServiceSubscriber.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"businessServiceSubscriber.js","sourceRoot":"","sources":["../businessServiceSubscriber.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsC,EAAE,IAAmC;QACpI,OAAO,IAAI,yBAAyB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChF,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,yBAAyB,CAAC,YAAY,CAAC;IAC1E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA4E,EAAE,IAAmC;QACvI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyD,CAAC;YACxE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AA1EL,8DA2EC;AA7DG,gBAAgB;AACO,sCAAY,GAAG,qEAAqE,CAAC"}
|
package/escalationPolicy.js
CHANGED
|
@@ -17,6 +17,28 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
19
|
class EscalationPolicy extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing EscalationPolicy 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, id, state, opts) {
|
|
30
|
+
return new EscalationPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of EscalationPolicy. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === EscalationPolicy.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
var _a;
|
|
22
44
|
let resourceInputs = {};
|
|
@@ -43,28 +65,6 @@ class EscalationPolicy extends pulumi.CustomResource {
|
|
|
43
65
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
44
66
|
super(EscalationPolicy.__pulumiType, name, resourceInputs, opts);
|
|
45
67
|
}
|
|
46
|
-
/**
|
|
47
|
-
* Get an existing EscalationPolicy resource's state with the given name, ID, and optional extra
|
|
48
|
-
* properties used to qualify the lookup.
|
|
49
|
-
*
|
|
50
|
-
* @param name The _unique_ name of the resulting resource.
|
|
51
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
-
* @param state Any extra arguments used during the lookup.
|
|
53
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
-
*/
|
|
55
|
-
static get(name, id, state, opts) {
|
|
56
|
-
return new EscalationPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Returns true if the given object is an instance of EscalationPolicy. This is designed to work even
|
|
60
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
-
*/
|
|
62
|
-
static isInstance(obj) {
|
|
63
|
-
if (obj === undefined || obj === null) {
|
|
64
|
-
return false;
|
|
65
|
-
}
|
|
66
|
-
return obj['__pulumiType'] === EscalationPolicy.__pulumiType;
|
|
67
|
-
}
|
|
68
68
|
}
|
|
69
69
|
exports.EscalationPolicy = EscalationPolicy;
|
|
70
70
|
/** @internal */
|
package/escalationPolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"escalationPolicy.js","sourceRoot":"","sources":["../escalationPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"escalationPolicy.js","sourceRoot":"","sources":["../escalationPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IA4BD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,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,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,MAAA,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,mCAAI,mBAAmB,CAAC;YAC7F,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,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,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AA7EL,4CA8EC;AAhEG,gBAAgB;AACO,6BAAY,GAAG,mDAAmD,CAAC"}
|
package/eventOrchestration.js
CHANGED
|
@@ -30,28 +30,6 @@ const utilities = require("./utilities");
|
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
32
|
class EventOrchestration extends pulumi.CustomResource {
|
|
33
|
-
constructor(name, argsOrState, opts) {
|
|
34
|
-
let resourceInputs = {};
|
|
35
|
-
opts = opts || {};
|
|
36
|
-
if (opts.id) {
|
|
37
|
-
const state = argsOrState;
|
|
38
|
-
resourceInputs["description"] = state ? state.description : undefined;
|
|
39
|
-
resourceInputs["integrations"] = state ? state.integrations : undefined;
|
|
40
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
41
|
-
resourceInputs["routes"] = state ? state.routes : undefined;
|
|
42
|
-
resourceInputs["team"] = state ? state.team : undefined;
|
|
43
|
-
}
|
|
44
|
-
else {
|
|
45
|
-
const args = argsOrState;
|
|
46
|
-
resourceInputs["description"] = args ? args.description : undefined;
|
|
47
|
-
resourceInputs["integrations"] = args ? args.integrations : undefined;
|
|
48
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
49
|
-
resourceInputs["team"] = args ? args.team : undefined;
|
|
50
|
-
resourceInputs["routes"] = undefined /*out*/;
|
|
51
|
-
}
|
|
52
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
53
|
-
super(EventOrchestration.__pulumiType, name, resourceInputs, opts);
|
|
54
|
-
}
|
|
55
33
|
/**
|
|
56
34
|
* Get an existing EventOrchestration resource's state with the given name, ID, and optional extra
|
|
57
35
|
* properties used to qualify the lookup.
|
|
@@ -74,6 +52,28 @@ class EventOrchestration extends pulumi.CustomResource {
|
|
|
74
52
|
}
|
|
75
53
|
return obj['__pulumiType'] === EventOrchestration.__pulumiType;
|
|
76
54
|
}
|
|
55
|
+
constructor(name, argsOrState, opts) {
|
|
56
|
+
let resourceInputs = {};
|
|
57
|
+
opts = opts || {};
|
|
58
|
+
if (opts.id) {
|
|
59
|
+
const state = argsOrState;
|
|
60
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
61
|
+
resourceInputs["integrations"] = state ? state.integrations : undefined;
|
|
62
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
63
|
+
resourceInputs["routes"] = state ? state.routes : undefined;
|
|
64
|
+
resourceInputs["team"] = state ? state.team : undefined;
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
const args = argsOrState;
|
|
68
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
69
|
+
resourceInputs["integrations"] = args ? args.integrations : undefined;
|
|
70
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
71
|
+
resourceInputs["team"] = args ? args.team : undefined;
|
|
72
|
+
resourceInputs["routes"] = undefined /*out*/;
|
|
73
|
+
}
|
|
74
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
75
|
+
super(EventOrchestration.__pulumiType, name, resourceInputs, opts);
|
|
76
|
+
}
|
|
77
77
|
}
|
|
78
78
|
exports.EventOrchestration = EventOrchestration;
|
|
79
79
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventOrchestration.js","sourceRoot":"","sources":["../eventOrchestration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"eventOrchestration.js","sourceRoot":"","sources":["../eventOrchestration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,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,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IA4BD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,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;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AA1EL,gDA2EC;AA7DG,gBAAgB;AACO,+BAAY,GAAG,uDAAuD,CAAC"}
|
|
@@ -64,6 +64,28 @@ const utilities = require("./utilities");
|
|
|
64
64
|
* ```
|
|
65
65
|
*/
|
|
66
66
|
class EventOrchestrationRouter extends pulumi.CustomResource {
|
|
67
|
+
/**
|
|
68
|
+
* Get an existing EventOrchestrationRouter resource's state with the given name, ID, and optional extra
|
|
69
|
+
* properties used to qualify the lookup.
|
|
70
|
+
*
|
|
71
|
+
* @param name The _unique_ name of the resulting resource.
|
|
72
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
73
|
+
* @param state Any extra arguments used during the lookup.
|
|
74
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
75
|
+
*/
|
|
76
|
+
static get(name, id, state, opts) {
|
|
77
|
+
return new EventOrchestrationRouter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Returns true if the given object is an instance of EventOrchestrationRouter. This is designed to work even
|
|
81
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
82
|
+
*/
|
|
83
|
+
static isInstance(obj) {
|
|
84
|
+
if (obj === undefined || obj === null) {
|
|
85
|
+
return false;
|
|
86
|
+
}
|
|
87
|
+
return obj['__pulumiType'] === EventOrchestrationRouter.__pulumiType;
|
|
88
|
+
}
|
|
67
89
|
constructor(name, argsOrState, opts) {
|
|
68
90
|
let resourceInputs = {};
|
|
69
91
|
opts = opts || {};
|
|
@@ -91,28 +113,6 @@ class EventOrchestrationRouter extends pulumi.CustomResource {
|
|
|
91
113
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
114
|
super(EventOrchestrationRouter.__pulumiType, name, resourceInputs, opts);
|
|
93
115
|
}
|
|
94
|
-
/**
|
|
95
|
-
* Get an existing EventOrchestrationRouter resource's state with the given name, ID, and optional extra
|
|
96
|
-
* properties used to qualify the lookup.
|
|
97
|
-
*
|
|
98
|
-
* @param name The _unique_ name of the resulting resource.
|
|
99
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
100
|
-
* @param state Any extra arguments used during the lookup.
|
|
101
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
102
|
-
*/
|
|
103
|
-
static get(name, id, state, opts) {
|
|
104
|
-
return new EventOrchestrationRouter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* Returns true if the given object is an instance of EventOrchestrationRouter. This is designed to work even
|
|
108
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
109
|
-
*/
|
|
110
|
-
static isInstance(obj) {
|
|
111
|
-
if (obj === undefined || obj === null) {
|
|
112
|
-
return false;
|
|
113
|
-
}
|
|
114
|
-
return obj['__pulumiType'] === EventOrchestrationRouter.__pulumiType;
|
|
115
|
-
}
|
|
116
116
|
}
|
|
117
117
|
exports.EventOrchestrationRouter = EventOrchestrationRouter;
|
|
118
118
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventOrchestrationRouter.js","sourceRoot":"","sources":["../eventOrchestrationRouter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyDG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"eventOrchestrationRouter.js","sourceRoot":"","sources":["../eventOrchestrationRouter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyDG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChD,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;;AA1EL,4DA2EC;AA7DG,gBAAgB;AACO,qCAAY,GAAG,mEAAmE,CAAC"}
|
|
@@ -15,6 +15,28 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
17
17
|
class EventOrchestrationService extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing EventOrchestrationService 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, id, state, opts) {
|
|
28
|
+
return new EventOrchestrationService(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of EventOrchestrationService. 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) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === EventOrchestrationService.__pulumiType;
|
|
39
|
+
}
|
|
18
40
|
constructor(name, argsOrState, opts) {
|
|
19
41
|
let resourceInputs = {};
|
|
20
42
|
opts = opts || {};
|
|
@@ -42,28 +64,6 @@ class EventOrchestrationService extends pulumi.CustomResource {
|
|
|
42
64
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
43
65
|
super(EventOrchestrationService.__pulumiType, name, resourceInputs, opts);
|
|
44
66
|
}
|
|
45
|
-
/**
|
|
46
|
-
* Get an existing EventOrchestrationService resource's state with the given name, ID, and optional extra
|
|
47
|
-
* properties used to qualify the lookup.
|
|
48
|
-
*
|
|
49
|
-
* @param name The _unique_ name of the resulting resource.
|
|
50
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
51
|
-
* @param state Any extra arguments used during the lookup.
|
|
52
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
53
|
-
*/
|
|
54
|
-
static get(name, id, state, opts) {
|
|
55
|
-
return new EventOrchestrationService(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* Returns true if the given object is an instance of EventOrchestrationService. This is designed to work even
|
|
59
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
-
*/
|
|
61
|
-
static isInstance(obj) {
|
|
62
|
-
if (obj === undefined || obj === null) {
|
|
63
|
-
return false;
|
|
64
|
-
}
|
|
65
|
-
return obj['__pulumiType'] === EventOrchestrationService.__pulumiType;
|
|
66
|
-
}
|
|
67
67
|
}
|
|
68
68
|
exports.EventOrchestrationService = EventOrchestrationService;
|
|
69
69
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventOrchestrationService.js","sourceRoot":"","sources":["../eventOrchestrationService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"eventOrchestrationService.js","sourceRoot":"","sources":["../eventOrchestrationService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsC,EAAE,IAAmC;QACpI,OAAO,IAAI,yBAAyB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChF,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,yBAAyB,CAAC,YAAY,CAAC;IAC1E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA4E,EAAE,IAAmC;QACvI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyD,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;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,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,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,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AA1EL,8DA2EC;AA7DG,gBAAgB;AACO,sCAAY,GAAG,qEAAqE,CAAC"}
|
|
@@ -54,6 +54,28 @@ const utilities = require("./utilities");
|
|
|
54
54
|
* ```
|
|
55
55
|
*/
|
|
56
56
|
class EventOrchestrationUnrouted extends pulumi.CustomResource {
|
|
57
|
+
/**
|
|
58
|
+
* Get an existing EventOrchestrationUnrouted resource's state with the given name, ID, and optional extra
|
|
59
|
+
* properties used to qualify the lookup.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resulting resource.
|
|
62
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
63
|
+
* @param state Any extra arguments used during the lookup.
|
|
64
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
65
|
+
*/
|
|
66
|
+
static get(name, id, state, opts) {
|
|
67
|
+
return new EventOrchestrationUnrouted(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Returns true if the given object is an instance of EventOrchestrationUnrouted. This is designed to work even
|
|
71
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
72
|
+
*/
|
|
73
|
+
static isInstance(obj) {
|
|
74
|
+
if (obj === undefined || obj === null) {
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
return obj['__pulumiType'] === EventOrchestrationUnrouted.__pulumiType;
|
|
78
|
+
}
|
|
57
79
|
constructor(name, argsOrState, opts) {
|
|
58
80
|
let resourceInputs = {};
|
|
59
81
|
opts = opts || {};
|
|
@@ -81,28 +103,6 @@ class EventOrchestrationUnrouted extends pulumi.CustomResource {
|
|
|
81
103
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
82
104
|
super(EventOrchestrationUnrouted.__pulumiType, name, resourceInputs, opts);
|
|
83
105
|
}
|
|
84
|
-
/**
|
|
85
|
-
* Get an existing EventOrchestrationUnrouted resource's state with the given name, ID, and optional extra
|
|
86
|
-
* properties used to qualify the lookup.
|
|
87
|
-
*
|
|
88
|
-
* @param name The _unique_ name of the resulting resource.
|
|
89
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
90
|
-
* @param state Any extra arguments used during the lookup.
|
|
91
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
92
|
-
*/
|
|
93
|
-
static get(name, id, state, opts) {
|
|
94
|
-
return new EventOrchestrationUnrouted(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Returns true if the given object is an instance of EventOrchestrationUnrouted. This is designed to work even
|
|
98
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
99
|
-
*/
|
|
100
|
-
static isInstance(obj) {
|
|
101
|
-
if (obj === undefined || obj === null) {
|
|
102
|
-
return false;
|
|
103
|
-
}
|
|
104
|
-
return obj['__pulumiType'] === EventOrchestrationUnrouted.__pulumiType;
|
|
105
|
-
}
|
|
106
106
|
}
|
|
107
107
|
exports.EventOrchestrationUnrouted = EventOrchestrationUnrouted;
|
|
108
108
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventOrchestrationUnrouted.js","sourceRoot":"","sources":["../eventOrchestrationUnrouted.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"eventOrchestrationUnrouted.js","sourceRoot":"","sources":["../eventOrchestrationUnrouted.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjF,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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;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,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,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,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AA1EL,gEA2EC;AA7DG,gBAAgB;AACO,uCAAY,GAAG,uEAAuE,CAAC"}
|
package/eventRule.js
CHANGED
|
@@ -128,6 +128,28 @@ const utilities = require("./utilities");
|
|
|
128
128
|
* ```
|
|
129
129
|
*/
|
|
130
130
|
class EventRule extends pulumi.CustomResource {
|
|
131
|
+
/**
|
|
132
|
+
* Get an existing EventRule resource's state with the given name, ID, and optional extra
|
|
133
|
+
* properties used to qualify the lookup.
|
|
134
|
+
*
|
|
135
|
+
* @param name The _unique_ name of the resulting resource.
|
|
136
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
137
|
+
* @param state Any extra arguments used during the lookup.
|
|
138
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
139
|
+
*/
|
|
140
|
+
static get(name, id, state, opts) {
|
|
141
|
+
return new EventRule(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Returns true if the given object is an instance of EventRule. This is designed to work even
|
|
145
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
146
|
+
*/
|
|
147
|
+
static isInstance(obj) {
|
|
148
|
+
if (obj === undefined || obj === null) {
|
|
149
|
+
return false;
|
|
150
|
+
}
|
|
151
|
+
return obj['__pulumiType'] === EventRule.__pulumiType;
|
|
152
|
+
}
|
|
131
153
|
constructor(name, argsOrState, opts) {
|
|
132
154
|
let resourceInputs = {};
|
|
133
155
|
opts = opts || {};
|
|
@@ -154,28 +176,6 @@ class EventRule extends pulumi.CustomResource {
|
|
|
154
176
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
155
177
|
super(EventRule.__pulumiType, name, resourceInputs, opts);
|
|
156
178
|
}
|
|
157
|
-
/**
|
|
158
|
-
* Get an existing EventRule resource's state with the given name, ID, and optional extra
|
|
159
|
-
* properties used to qualify the lookup.
|
|
160
|
-
*
|
|
161
|
-
* @param name The _unique_ name of the resulting resource.
|
|
162
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
163
|
-
* @param state Any extra arguments used during the lookup.
|
|
164
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
165
|
-
*/
|
|
166
|
-
static get(name, id, state, opts) {
|
|
167
|
-
return new EventRule(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
168
|
-
}
|
|
169
|
-
/**
|
|
170
|
-
* Returns true if the given object is an instance of EventRule. This is designed to work even
|
|
171
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
172
|
-
*/
|
|
173
|
-
static isInstance(obj) {
|
|
174
|
-
if (obj === undefined || obj === null) {
|
|
175
|
-
return false;
|
|
176
|
-
}
|
|
177
|
-
return obj['__pulumiType'] === EventRule.__pulumiType;
|
|
178
|
-
}
|
|
179
179
|
}
|
|
180
180
|
exports.EventRule = EventRule;
|
|
181
181
|
/** @internal */
|
package/eventRule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventRule.js","sourceRoot":"","sources":["../eventRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyHG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"eventRule.js","sourceRoot":"","sources":["../eventRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyHG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA7EL,8BA8EC;AAhEG,gBAAgB;AACO,sBAAY,GAAG,qCAAqC,CAAC"}
|