@pulumi/pulumi 3.124.0 → 3.124.1-alpha.x26ff819
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/asset/archive.d.ts +15 -10
- package/asset/archive.js +15 -9
- package/asset/archive.js.map +1 -1
- package/asset/asset.d.ts +14 -11
- package/asset/asset.js +15 -18
- package/asset/asset.js.map +1 -1
- package/dynamic/index.d.ts +67 -35
- package/dynamic/index.js +15 -8
- package/dynamic/index.js.map +1 -1
- package/errors.d.ts +16 -12
- package/errors.js +18 -12
- package/errors.js.map +1 -1
- package/invoke.d.ts +6 -2
- package/iterable/index.d.ts +7 -5
- package/iterable/index.js +7 -5
- package/iterable/index.js.map +1 -1
- package/log/index.d.ts +8 -5
- package/log/index.js +8 -5
- package/log/index.js.map +1 -1
- package/metadata.d.ts +3 -3
- package/metadata.js +3 -3
- package/output.d.ts +119 -91
- package/output.js +73 -46
- package/output.js.map +1 -1
- package/package.json +1 -1
- package/provider/internals.js +3 -1
- package/provider/internals.js.map +1 -1
- package/provider/provider.d.ts +75 -39
- package/provider/server.js +13 -7
- package/provider/server.js.map +1 -1
- package/queryable/index.d.ts +5 -3
- package/resource.d.ts +233 -164
- package/resource.js +160 -97
- package/resource.js.map +1 -1
- package/runtime/asyncIterableUtil.js +26 -17
- package/runtime/asyncIterableUtil.js.map +1 -1
- package/runtime/callbacks.js +5 -2
- package/runtime/callbacks.js.map +1 -1
- package/runtime/closure/codePaths.d.ts +32 -27
- package/runtime/closure/codePaths.js +23 -15
- package/runtime/closure/codePaths.js.map +1 -1
- package/runtime/closure/createClosure.js +38 -30
- package/runtime/closure/createClosure.js.map +1 -1
- package/runtime/closure/parseFunction.js +26 -15
- package/runtime/closure/parseFunction.js.map +1 -1
- package/runtime/closure/rewriteSuper.js +3 -1
- package/runtime/closure/rewriteSuper.js.map +1 -1
- package/runtime/closure/serializeClosure.d.ts +52 -32
- package/runtime/closure/serializeClosure.js +34 -22
- package/runtime/closure/serializeClosure.js.map +1 -1
- package/runtime/closure/utils.js +6 -2
- package/runtime/closure/utils.js.map +1 -1
- package/runtime/closure/v8.js +18 -9
- package/runtime/closure/v8.js.map +1 -1
- package/runtime/closure/v8Hooks.js +8 -4
- package/runtime/closure/v8Hooks.js.map +1 -1
- package/runtime/config.d.ts +4 -4
- package/runtime/config.js +22 -18
- package/runtime/config.js.map +1 -1
- package/runtime/debuggable.js +17 -6
- package/runtime/debuggable.js.map +1 -1
- package/runtime/invoke.d.ts +23 -14
- package/runtime/invoke.js +26 -18
- package/runtime/invoke.js.map +1 -1
- package/runtime/mocks.d.ts +37 -23
- package/runtime/mocks.js +11 -6
- package/runtime/mocks.js.map +1 -1
- package/runtime/resource.d.ts +21 -15
- package/runtime/resource.js +48 -29
- package/runtime/resource.js.map +1 -1
- package/runtime/rpc.d.ts +71 -43
- package/runtime/rpc.js +85 -47
- package/runtime/rpc.js.map +1 -1
- package/runtime/settings.d.ts +70 -21
- package/runtime/settings.js +83 -42
- package/runtime/settings.js.map +1 -1
- package/runtime/stack.d.ts +22 -14
- package/runtime/stack.js +22 -14
- package/runtime/stack.js.map +1 -1
- package/runtime/state.js +21 -8
- package/runtime/state.js.map +1 -1
- package/stackReference.d.ts +49 -32
- package/stackReference.js +40 -25
- package/stackReference.js.map +1 -1
- package/tsutils.js +6 -2
- package/tsutils.js.map +1 -1
- package/utils.js +15 -6
- package/utils.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/asset/archive.d.ts
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { Asset } from "./asset";
|
|
2
2
|
/**
|
|
3
|
-
* An Archive represents a collection of named assets.
|
|
3
|
+
* An {@link Archive} represents a collection of named assets.
|
|
4
4
|
*/
|
|
5
5
|
export declare abstract class Archive {
|
|
6
6
|
/**
|
|
7
|
-
* Returns true if the given object is an
|
|
8
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
7
|
+
* Returns true if the given object is an {@link Archive}. This is designed
|
|
8
|
+
* to work even when multiple copies of the Pulumi SDK have been loaded into
|
|
9
|
+
* the same process.
|
|
9
10
|
*/
|
|
10
11
|
static isInstance(obj: any): obj is Archive;
|
|
11
12
|
}
|
|
12
13
|
/**
|
|
13
|
-
*
|
|
14
|
+
* A map of assets.
|
|
14
15
|
*/
|
|
15
16
|
export declare type AssetMap = {
|
|
16
17
|
[name: string]: Asset | Archive;
|
|
17
18
|
};
|
|
18
19
|
/**
|
|
19
|
-
* An AssetArchive is an archive created from an in-memory collection of
|
|
20
|
+
* An {@link AssetArchive} is an archive created from an in-memory collection of
|
|
21
|
+
* named assets or other archives.
|
|
20
22
|
*/
|
|
21
23
|
export declare class AssetArchive extends Archive {
|
|
22
24
|
/**
|
|
@@ -26,8 +28,9 @@ export declare class AssetArchive extends Archive {
|
|
|
26
28
|
constructor(assets: AssetMap | Promise<AssetMap>);
|
|
27
29
|
}
|
|
28
30
|
/**
|
|
29
|
-
* A FileArchive is a file-based archive, or a collection of file-based
|
|
30
|
-
* single archive file in one of the
|
|
31
|
+
* A {@link FileArchive} is a file-based archive, or a collection of file-based
|
|
32
|
+
* assets. This can be a raw directory or a single archive file in one of the
|
|
33
|
+
* supported formats (`.tar`, `.tar.gz`, or `.zip`).
|
|
31
34
|
*/
|
|
32
35
|
export declare class FileArchive extends Archive {
|
|
33
36
|
/**
|
|
@@ -37,9 +40,11 @@ export declare class FileArchive extends Archive {
|
|
|
37
40
|
constructor(path: string | Promise<string>);
|
|
38
41
|
}
|
|
39
42
|
/**
|
|
40
|
-
* A RemoteArchive is a file-based archive fetched from a remote
|
|
41
|
-
*
|
|
42
|
-
* `
|
|
43
|
+
* A {@link RemoteArchive} is a file-based archive fetched from a remote
|
|
44
|
+
* location. The URI's scheme dictates the protocol for fetching the archive's
|
|
45
|
+
* contents: `file://` is a local file (just like a {@link FileArchive}),
|
|
46
|
+
* `http://` and `https://` specify HTTP and HTTPS, respectively, and specific
|
|
47
|
+
* providers may recognize custom schemes.
|
|
43
48
|
*/
|
|
44
49
|
export declare class RemoteArchive extends Archive {
|
|
45
50
|
/**
|
package/asset/archive.js
CHANGED
|
@@ -22,20 +22,22 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
22
22
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
23
|
const utils = __importStar(require("../utils"));
|
|
24
24
|
/**
|
|
25
|
-
* An Archive represents a collection of named assets.
|
|
25
|
+
* An {@link Archive} represents a collection of named assets.
|
|
26
26
|
*/
|
|
27
27
|
class Archive {
|
|
28
28
|
constructor() {
|
|
29
29
|
/**
|
|
30
30
|
* A private field to help with RTTI that works in SxS scenarios.
|
|
31
|
+
*
|
|
31
32
|
* @internal
|
|
32
33
|
*/
|
|
33
34
|
// eslint-disable-next-line @typescript-eslint/naming-convention,no-underscore-dangle,id-blacklist,id-match
|
|
34
35
|
this.__pulumiArchive = true;
|
|
35
36
|
}
|
|
36
37
|
/**
|
|
37
|
-
* Returns true if the given object is an
|
|
38
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
38
|
+
* Returns true if the given object is an {@link Archive}. This is designed
|
|
39
|
+
* to work even when multiple copies of the Pulumi SDK have been loaded into
|
|
40
|
+
* the same process.
|
|
39
41
|
*/
|
|
40
42
|
static isInstance(obj) {
|
|
41
43
|
return utils.isInstance(obj, "__pulumiArchive");
|
|
@@ -43,7 +45,8 @@ class Archive {
|
|
|
43
45
|
}
|
|
44
46
|
exports.Archive = Archive;
|
|
45
47
|
/**
|
|
46
|
-
* An AssetArchive is an archive created from an in-memory collection of
|
|
48
|
+
* An {@link AssetArchive} is an archive created from an in-memory collection of
|
|
49
|
+
* named assets or other archives.
|
|
47
50
|
*/
|
|
48
51
|
class AssetArchive extends Archive {
|
|
49
52
|
constructor(assets) {
|
|
@@ -53,8 +56,9 @@ class AssetArchive extends Archive {
|
|
|
53
56
|
}
|
|
54
57
|
exports.AssetArchive = AssetArchive;
|
|
55
58
|
/**
|
|
56
|
-
* A FileArchive is a file-based archive, or a collection of file-based
|
|
57
|
-
* single archive file in one of the
|
|
59
|
+
* A {@link FileArchive} is a file-based archive, or a collection of file-based
|
|
60
|
+
* assets. This can be a raw directory or a single archive file in one of the
|
|
61
|
+
* supported formats (`.tar`, `.tar.gz`, or `.zip`).
|
|
58
62
|
*/
|
|
59
63
|
class FileArchive extends Archive {
|
|
60
64
|
constructor(path) {
|
|
@@ -64,9 +68,11 @@ class FileArchive extends Archive {
|
|
|
64
68
|
}
|
|
65
69
|
exports.FileArchive = FileArchive;
|
|
66
70
|
/**
|
|
67
|
-
* A RemoteArchive is a file-based archive fetched from a remote
|
|
68
|
-
*
|
|
69
|
-
* `
|
|
71
|
+
* A {@link RemoteArchive} is a file-based archive fetched from a remote
|
|
72
|
+
* location. The URI's scheme dictates the protocol for fetching the archive's
|
|
73
|
+
* contents: `file://` is a local file (just like a {@link FileArchive}),
|
|
74
|
+
* `http://` and `https://` specify HTTP and HTTPS, respectively, and specific
|
|
75
|
+
* providers may recognize custom schemes.
|
|
70
76
|
*/
|
|
71
77
|
class RemoteArchive extends Archive {
|
|
72
78
|
constructor(uri) {
|
package/asset/archive.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"archive.js","sourceRoot":"","sources":["../../asset/archive.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,gDAAkC;AAGlC;;GAEG;AACH,MAAsB,OAAO;IAA7B;QACI
|
|
1
|
+
{"version":3,"file":"archive.js","sourceRoot":"","sources":["../../asset/archive.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,gDAAkC;AAGlC;;GAEG;AACH,MAAsB,OAAO;IAA7B;QACI;;;;WAIG;QACH,2GAA2G;QAC3F,oBAAe,GAAY,IAAI,CAAC;IAUpD,CAAC;IARG;;;;OAIG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,OAAO,KAAK,CAAC,UAAU,CAAU,GAAG,EAAE,iBAAiB,CAAC,CAAC;IAC7D,CAAC;CACJ;AAjBD,0BAiBC;AAOD;;;GAGG;AACH,MAAa,YAAa,SAAQ,OAAO;IAMrC,YAAY,MAAoC;QAC5C,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAC1C,CAAC;CACJ;AAVD,oCAUC;AAED;;;;GAIG;AACH,MAAa,WAAY,SAAQ,OAAO;IAMpC,YAAY,IAA8B;QACtC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;CACJ;AAVD,kCAUC;AAED;;;;;;GAMG;AACH,MAAa,aAAc,SAAQ,OAAO;IAMtC,YAAY,GAA6B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IACpC,CAAC;CACJ;AAVD,sCAUC"}
|
package/asset/asset.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Asset represents a single blob of text or data that is managed as a
|
|
2
|
+
* {@link Asset} represents a single blob of text or data that is managed as a
|
|
3
|
+
* first-class entity.
|
|
3
4
|
*/
|
|
4
5
|
export declare abstract class Asset {
|
|
5
6
|
/**
|
|
6
|
-
* Returns true if the given object is an
|
|
7
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
7
|
+
* Returns true if the given object is an {@link Asset}. This is designed to
|
|
8
|
+
* work even when multiple copies of the Pulumi SDK have been loaded into
|
|
9
|
+
* the same process.
|
|
8
10
|
*/
|
|
9
11
|
static isInstance(obj: any): obj is Asset;
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* FileAsset is a kind of asset produced from a given path to a file on the local filesystem.
|
|
14
|
+
* {@link FileAsset} is a kind of asset produced from a given path to a file on
|
|
15
|
+
* the local filesystem.
|
|
16
16
|
*/
|
|
17
17
|
export declare class FileAsset extends Asset {
|
|
18
18
|
/**
|
|
@@ -22,7 +22,8 @@ export declare class FileAsset extends Asset {
|
|
|
22
22
|
constructor(path: string | Promise<string>);
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* StringAsset is a kind of asset produced from an in-memory
|
|
25
|
+
* {@link StringAsset} is a kind of asset produced from an in-memory
|
|
26
|
+
* UTF8-encoded string.
|
|
26
27
|
*/
|
|
27
28
|
export declare class StringAsset extends Asset {
|
|
28
29
|
/**
|
|
@@ -32,9 +33,11 @@ export declare class StringAsset extends Asset {
|
|
|
32
33
|
constructor(text: string | Promise<string>);
|
|
33
34
|
}
|
|
34
35
|
/**
|
|
35
|
-
* RemoteAsset is a kind of asset produced from a given URI string.
|
|
36
|
-
*
|
|
37
|
-
*
|
|
36
|
+
* {@link RemoteAsset} is a kind of asset produced from a given URI string. The
|
|
37
|
+
* URI's scheme dictates the protocol for fetching contents: `file://` specifies
|
|
38
|
+
* a local file, `http://` and `https://` specify HTTP and HTTPS, respectively.
|
|
39
|
+
* Note that specific providers may recognize alternative schemes; this is
|
|
40
|
+
* merely the smallest set that all providers support.
|
|
38
41
|
*/
|
|
39
42
|
export declare class RemoteAsset extends Asset {
|
|
40
43
|
/**
|
package/asset/asset.js
CHANGED
|
@@ -22,20 +22,23 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
22
22
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
23
|
const utils = __importStar(require("../utils"));
|
|
24
24
|
/**
|
|
25
|
-
* Asset represents a single blob of text or data that is managed as a
|
|
25
|
+
* {@link Asset} represents a single blob of text or data that is managed as a
|
|
26
|
+
* first-class entity.
|
|
26
27
|
*/
|
|
27
28
|
class Asset {
|
|
28
29
|
constructor() {
|
|
29
30
|
/**
|
|
30
31
|
* A private field to help with RTTI that works in SxS scenarios.
|
|
32
|
+
*
|
|
31
33
|
* @internal
|
|
32
34
|
*/
|
|
33
35
|
// eslint-disable-next-line @typescript-eslint/naming-convention,no-underscore-dangle,id-blacklist,id-match
|
|
34
36
|
this.__pulumiAsset = true;
|
|
35
37
|
}
|
|
36
38
|
/**
|
|
37
|
-
* Returns true if the given object is an
|
|
38
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
39
|
+
* Returns true if the given object is an {@link Asset}. This is designed to
|
|
40
|
+
* work even when multiple copies of the Pulumi SDK have been loaded into
|
|
41
|
+
* the same process.
|
|
39
42
|
*/
|
|
40
43
|
static isInstance(obj) {
|
|
41
44
|
return utils.isInstance(obj, "__pulumiAsset");
|
|
@@ -43,17 +46,8 @@ class Asset {
|
|
|
43
46
|
}
|
|
44
47
|
exports.Asset = Asset;
|
|
45
48
|
/**
|
|
46
|
-
*
|
|
47
|
-
|
|
48
|
-
/* IDEA: enable this once Uint8Array is supported.
|
|
49
|
-
export class Blob extends Asset {
|
|
50
|
-
constructor(data: Uint8Array) {
|
|
51
|
-
super();
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
*/
|
|
55
|
-
/**
|
|
56
|
-
* FileAsset is a kind of asset produced from a given path to a file on the local filesystem.
|
|
49
|
+
* {@link FileAsset} is a kind of asset produced from a given path to a file on
|
|
50
|
+
* the local filesystem.
|
|
57
51
|
*/
|
|
58
52
|
class FileAsset extends Asset {
|
|
59
53
|
constructor(path) {
|
|
@@ -63,7 +57,8 @@ class FileAsset extends Asset {
|
|
|
63
57
|
}
|
|
64
58
|
exports.FileAsset = FileAsset;
|
|
65
59
|
/**
|
|
66
|
-
* StringAsset is a kind of asset produced from an in-memory
|
|
60
|
+
* {@link StringAsset} is a kind of asset produced from an in-memory
|
|
61
|
+
* UTF8-encoded string.
|
|
67
62
|
*/
|
|
68
63
|
class StringAsset extends Asset {
|
|
69
64
|
constructor(text) {
|
|
@@ -73,9 +68,11 @@ class StringAsset extends Asset {
|
|
|
73
68
|
}
|
|
74
69
|
exports.StringAsset = StringAsset;
|
|
75
70
|
/**
|
|
76
|
-
* RemoteAsset is a kind of asset produced from a given URI string.
|
|
77
|
-
*
|
|
78
|
-
*
|
|
71
|
+
* {@link RemoteAsset} is a kind of asset produced from a given URI string. The
|
|
72
|
+
* URI's scheme dictates the protocol for fetching contents: `file://` specifies
|
|
73
|
+
* a local file, `http://` and `https://` specify HTTP and HTTPS, respectively.
|
|
74
|
+
* Note that specific providers may recognize alternative schemes; this is
|
|
75
|
+
* merely the smallest set that all providers support.
|
|
79
76
|
*/
|
|
80
77
|
class RemoteAsset extends Asset {
|
|
81
78
|
constructor(uri) {
|
package/asset/asset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"asset.js","sourceRoot":"","sources":["../../asset/asset.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,gDAAkC;AAElC
|
|
1
|
+
{"version":3,"file":"asset.js","sourceRoot":"","sources":["../../asset/asset.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,gDAAkC;AAElC;;;GAGG;AACH,MAAsB,KAAK;IAA3B;QACI;;;;WAIG;QACH,2GAA2G;QAC3F,kBAAa,GAAY,IAAI,CAAC;IAUlD,CAAC;IARG;;;;OAIG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,OAAO,KAAK,CAAC,UAAU,CAAQ,GAAG,EAAE,eAAe,CAAC,CAAC;IACzD,CAAC;CACJ;AAjBD,sBAiBC;AAED;;;GAGG;AACH,MAAa,SAAU,SAAQ,KAAK;IAMhC,YAAY,IAA8B;QACtC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;CACJ;AAVD,8BAUC;AAED;;;GAGG;AACH,MAAa,WAAY,SAAQ,KAAK;IAMlC,YAAY,IAA8B;QACtC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;CACJ;AAVD,kCAUC;AAED;;;;;;GAMG;AACH,MAAa,WAAY,SAAQ,KAAK;IAMlC,YAAY,GAA6B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IACpC,CAAC;CACJ;AAVD,kCAUC"}
|
package/dynamic/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Inputs } from "../output";
|
|
2
2
|
import * as resource from "../resource";
|
|
3
3
|
/**
|
|
4
|
-
* CheckResult represents the results of a call to
|
|
4
|
+
* {@link CheckResult} represents the results of a call to {@link ResourceProvider.check}.
|
|
5
5
|
*/
|
|
6
6
|
export interface CheckResult<Inputs = any> {
|
|
7
7
|
/**
|
|
@@ -14,7 +14,8 @@ export interface CheckResult<Inputs = any> {
|
|
|
14
14
|
readonly failures?: CheckFailure[];
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* CheckFailure represents a single failure in the results of a call to
|
|
17
|
+
* {@link CheckFailure} represents a single failure in the results of a call to
|
|
18
|
+
* {@link ResourceProvider.check}.
|
|
18
19
|
*/
|
|
19
20
|
export interface CheckFailure {
|
|
20
21
|
/**
|
|
@@ -27,7 +28,8 @@ export interface CheckFailure {
|
|
|
27
28
|
readonly reason: string;
|
|
28
29
|
}
|
|
29
30
|
/**
|
|
30
|
-
* DiffResult represents the results of a call to
|
|
31
|
+
* {@link DiffResult} represents the results of a call to
|
|
32
|
+
* {@link ResourceProvider.diff}.
|
|
31
33
|
*/
|
|
32
34
|
export interface DiffResult {
|
|
33
35
|
/**
|
|
@@ -43,13 +45,15 @@ export interface DiffResult {
|
|
|
43
45
|
*/
|
|
44
46
|
readonly stables?: string[];
|
|
45
47
|
/**
|
|
46
|
-
* If true, and a replacement occurs, the resource will first be deleted
|
|
47
|
-
*
|
|
48
|
+
* If true, and a replacement occurs, the resource will first be deleted
|
|
49
|
+
* before being recreated. This is to avoid potential side-by-side issues
|
|
50
|
+
* with the default create before delete behavior.
|
|
48
51
|
*/
|
|
49
52
|
readonly deleteBeforeReplace?: boolean;
|
|
50
53
|
}
|
|
51
54
|
/**
|
|
52
|
-
* CreateResult represents the results of a call to
|
|
55
|
+
* {@link CreateResult} represents the results of a call to
|
|
56
|
+
* {@link ResourceProvider.create}.
|
|
53
57
|
*/
|
|
54
58
|
export interface CreateResult<Outputs = any> {
|
|
55
59
|
/**
|
|
@@ -61,6 +65,10 @@ export interface CreateResult<Outputs = any> {
|
|
|
61
65
|
*/
|
|
62
66
|
readonly outs?: Outputs;
|
|
63
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* {@link ReadResult} represents the results of a call to
|
|
70
|
+
* {@link ResourceProvider.read}.
|
|
71
|
+
*/
|
|
64
72
|
export interface ReadResult<Outputs = any> {
|
|
65
73
|
/**
|
|
66
74
|
* The ID of the resource ready back (or blank if missing).
|
|
@@ -72,7 +80,8 @@ export interface ReadResult<Outputs = any> {
|
|
|
72
80
|
readonly props?: Outputs;
|
|
73
81
|
}
|
|
74
82
|
/**
|
|
75
|
-
* UpdateResult represents the results of a call to
|
|
83
|
+
* {@link UpdateResult} represents the results of a call to
|
|
84
|
+
* {@link ResourceProvider.update}.
|
|
76
85
|
*/
|
|
77
86
|
export interface UpdateResult<Outputs = any> {
|
|
78
87
|
/**
|
|
@@ -81,66 +90,89 @@ export interface UpdateResult<Outputs = any> {
|
|
|
81
90
|
readonly outs?: Outputs;
|
|
82
91
|
}
|
|
83
92
|
/**
|
|
84
|
-
* ResourceProvider represents an object that provides CRUD operations
|
|
93
|
+
* {@link ResourceProvider} represents an object that provides CRUD operations
|
|
94
|
+
* for a particular type of resource.
|
|
85
95
|
*/
|
|
86
96
|
export interface ResourceProvider<Inputs = any, Outputs = any> {
|
|
87
97
|
/**
|
|
88
|
-
*
|
|
98
|
+
* Validates that the given property bag is valid for a resource of the given type.
|
|
89
99
|
*
|
|
90
|
-
* @param olds
|
|
91
|
-
*
|
|
100
|
+
* @param olds
|
|
101
|
+
* The old input properties to use for validation.
|
|
102
|
+
* @param news
|
|
103
|
+
* The new input properties to use for validation.
|
|
92
104
|
*/
|
|
93
105
|
check?: (olds: Inputs, news: Inputs) => Promise<CheckResult<Inputs>>;
|
|
94
106
|
/**
|
|
95
|
-
*
|
|
107
|
+
* Checks what impacts a hypothetical update will have on the resource's
|
|
108
|
+
* properties.
|
|
96
109
|
*
|
|
97
|
-
* @param id
|
|
98
|
-
*
|
|
99
|
-
* @param
|
|
110
|
+
* @param id
|
|
111
|
+
* The ID of the resource to diff.
|
|
112
|
+
* @param olds
|
|
113
|
+
* The old values of properties to diff.
|
|
114
|
+
* @param news
|
|
115
|
+
* The new values of properties to diff.
|
|
100
116
|
*/
|
|
101
117
|
diff?: (id: resource.ID, olds: Outputs, news: Inputs) => Promise<DiffResult>;
|
|
102
118
|
/**
|
|
103
|
-
*
|
|
104
|
-
* If this call fails, the resource must not have been
|
|
119
|
+
* Allocates a new instance of the provided resource and returns its unique
|
|
120
|
+
* ID afterwards. If this call fails, the resource must not have been
|
|
121
|
+
* created (i.e., it is "transactional").
|
|
105
122
|
*
|
|
106
|
-
* @param inputs
|
|
123
|
+
* @param inputs
|
|
124
|
+
* The properties to set during creation.
|
|
107
125
|
*/
|
|
108
126
|
create: (inputs: Inputs) => Promise<CreateResult<Outputs>>;
|
|
109
127
|
/**
|
|
110
|
-
* Reads the current live state associated with a resource.
|
|
111
|
-
*
|
|
128
|
+
* Reads the current live state associated with a resource. Enough state
|
|
129
|
+
* must be included in the inputs to uniquely identify the resource; this is
|
|
130
|
+
* typically just the resource ID, but it may also include some properties.
|
|
112
131
|
*/
|
|
113
132
|
read?: (id: resource.ID, props?: Outputs) => Promise<ReadResult<Outputs>>;
|
|
114
133
|
/**
|
|
115
|
-
*
|
|
134
|
+
* Updates an existing resource with new values.
|
|
116
135
|
*
|
|
117
|
-
* @param id
|
|
118
|
-
*
|
|
119
|
-
* @param
|
|
136
|
+
* @param id
|
|
137
|
+
* The ID of the resource to update.
|
|
138
|
+
* @param olds
|
|
139
|
+
* The old values of properties to update.
|
|
140
|
+
* @param news
|
|
141
|
+
* The new values of properties to update.
|
|
120
142
|
*/
|
|
121
143
|
update?: (id: resource.ID, olds: Outputs, news: Inputs) => Promise<UpdateResult<Outputs>>;
|
|
122
144
|
/**
|
|
123
|
-
*
|
|
145
|
+
* Tears down an existing resource with the given ID. If it fails,
|
|
146
|
+
* the resource is assumed to still exist.
|
|
124
147
|
*
|
|
125
|
-
* @param id
|
|
126
|
-
*
|
|
148
|
+
* @param id
|
|
149
|
+
* The ID of the resource to delete.
|
|
150
|
+
* @param props
|
|
151
|
+
* The current properties on the resource.
|
|
127
152
|
*/
|
|
128
153
|
delete?: (id: resource.ID, props: Outputs) => Promise<void>;
|
|
129
154
|
}
|
|
130
155
|
/**
|
|
131
|
-
* Resource represents a Pulumi
|
|
156
|
+
* {@link Resource} represents a Pulumi resource that incorporates an inline
|
|
157
|
+
* implementation of the Resource's CRUD operations.
|
|
132
158
|
*/
|
|
133
159
|
export declare abstract class Resource extends resource.CustomResource {
|
|
134
160
|
/**
|
|
135
161
|
* Creates a new dynamic resource.
|
|
136
162
|
*
|
|
137
|
-
* @param provider
|
|
138
|
-
*
|
|
139
|
-
* @param
|
|
140
|
-
*
|
|
141
|
-
* @param
|
|
142
|
-
*
|
|
143
|
-
*
|
|
163
|
+
* @param provider
|
|
164
|
+
* The implementation of the resource's CRUD operations.
|
|
165
|
+
* @param name
|
|
166
|
+
* The name of the resource.
|
|
167
|
+
* @param props
|
|
168
|
+
* The arguments to use to populate the new resource. Must not define the
|
|
169
|
+
* reserved property "__provider".
|
|
170
|
+
* @param opts
|
|
171
|
+
* A bag of options that control this resource's behavior.
|
|
172
|
+
* @param module
|
|
173
|
+
* The module of the resource.
|
|
174
|
+
* @param type
|
|
175
|
+
* The type of the resource.
|
|
144
176
|
*/
|
|
145
177
|
constructor(provider: ResourceProvider, name: string, props: Inputs, opts?: resource.CustomResourceOptions, module?: string, type?: string);
|
|
146
178
|
}
|
package/dynamic/index.js
CHANGED
|
@@ -52,19 +52,26 @@ function serializeFunctionMaybeSecret(provider) {
|
|
|
52
52
|
return new output_1.Output([], sfPromise.then((sf) => sf.text), new Promise((resolve) => resolve(true)), sfPromise.then((sf) => sf.containsSecrets), new Promise((resolve) => resolve([])));
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
|
-
* Resource represents a Pulumi
|
|
55
|
+
* {@link Resource} represents a Pulumi resource that incorporates an inline
|
|
56
|
+
* implementation of the Resource's CRUD operations.
|
|
56
57
|
*/
|
|
57
58
|
class Resource extends resource.CustomResource {
|
|
58
59
|
/**
|
|
59
60
|
* Creates a new dynamic resource.
|
|
60
61
|
*
|
|
61
|
-
* @param provider
|
|
62
|
-
*
|
|
63
|
-
* @param
|
|
64
|
-
*
|
|
65
|
-
* @param
|
|
66
|
-
*
|
|
67
|
-
*
|
|
62
|
+
* @param provider
|
|
63
|
+
* The implementation of the resource's CRUD operations.
|
|
64
|
+
* @param name
|
|
65
|
+
* The name of the resource.
|
|
66
|
+
* @param props
|
|
67
|
+
* The arguments to use to populate the new resource. Must not define the
|
|
68
|
+
* reserved property "__provider".
|
|
69
|
+
* @param opts
|
|
70
|
+
* A bag of options that control this resource's behavior.
|
|
71
|
+
* @param module
|
|
72
|
+
* The module of the resource.
|
|
73
|
+
* @param type
|
|
74
|
+
* The type of the resource.
|
|
68
75
|
*/
|
|
69
76
|
constructor(provider, name, props, opts, module, type = "Resource") {
|
|
70
77
|
const providerKey = "__provider";
|
package/dynamic/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../dynamic/index.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,sCAAkD;AAClD,sDAAwC;AACxC,8DAAgD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../dynamic/index.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,sCAAkD;AAClD,sDAAwC;AACxC,8DAAgD;AA6KhD,MAAM,aAAa,GAAG,IAAI,OAAO,EAAmC,CAAC;AAErE,SAAS,iBAAiB,CAAC,QAA0B;IACjD,IAAI,MAAqB,CAAC;IAC1B,0CAA0C;IAC1C,IAAI,QAAQ,CAAC,qBAAqB,EAAE,EAAE;QAClC,MAAM,cAAc,GAAG,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACnD,IAAI,cAAc,EAAE;YAChB,MAAM,GAAG,cAAc,CAAC;SAC3B;aAAM;YACH,MAAM,GAAG,4BAA4B,CAAC,QAAQ,CAAC,CAAC;YAChD,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;SACvC;KACJ;SAAM;QACH,MAAM,GAAG,4BAA4B,CAAC,QAAQ,CAAC,CAAC;KACnD;IACD,OAAO,MAAM,CAAC;AAClB,CAAC;AAED,SAAS,4BAA4B,CAAC,QAA0B;IAC5D,wEAAwE;IACxE,EAAE;IACF,6HAA6H;IAC7H,MAAM,EAAE,GAA4B,OAAO,CAAC,qCAAqC,CAAC,CAAC;IAEnF,MAAM,SAAS,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC;IAE/E,sJAAsJ;IACtJ,OAAO,IAAI,eAAM,CACb,EAAE,EACF,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAC/B,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,EACvC,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,eAAe,CAAC,EAC1C,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CACxC,CAAC;AACN,CAAC;AAED;;;GAGG;AACH,MAAsB,QAAS,SAAQ,QAAQ,CAAC,cAAc;IAC1D;;;;;;;;;;;;;;;;OAgBG;IACH,YACI,QAA0B,EAC1B,IAAY,EACZ,KAAa,EACb,IAAqC,EACrC,MAAe,EACf,OAAe,UAAU;QAEzB,MAAM,WAAW,GAAW,YAAY,CAAC;QACzC,IAAI,KAAK,CAAC,WAAW,CAAC,EAAE;YACpB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;SAC5E;QACD,KAAK,CAAC,WAAW,CAAC,GAAG,iBAAiB,CAAC,QAAQ,CAAC,CAAC;QAEjD,KAAK,CAAC,wBAAwB,MAAM,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;IAC3F,CAAC;CACJ;AAlCD,4BAkCC"}
|
package/errors.d.ts
CHANGED
|
@@ -1,29 +1,33 @@
|
|
|
1
1
|
import { Resource } from "./resource";
|
|
2
2
|
/**
|
|
3
|
-
* RunError can be used for terminating a program abruptly, but
|
|
4
|
-
* than the usual verbose unhandled error logic
|
|
5
|
-
*
|
|
6
|
-
*
|
|
3
|
+
* {@link RunError} can be used for terminating a program abruptly, but
|
|
4
|
+
* resulting in a clean exit rather than the usual verbose unhandled error logic
|
|
5
|
+
* which emits the source program text and complete stack trace. This type
|
|
6
|
+
* should be rarely used. Ideally {@link ResourceError} should always be used so
|
|
7
|
+
* that as many errors as possible can be associated with a resource.
|
|
7
8
|
*/
|
|
8
9
|
export declare class RunError extends Error {
|
|
9
10
|
/**
|
|
10
|
-
* Returns true if the given object is
|
|
11
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
11
|
+
* Returns true if the given object is a {@link RunError}. This is designed
|
|
12
|
+
* to work even when multiple copies of the Pulumi SDK have been loaded into
|
|
13
|
+
* the same process.
|
|
12
14
|
*/
|
|
13
15
|
static isInstance(obj: any): obj is RunError;
|
|
14
16
|
}
|
|
15
17
|
/**
|
|
16
|
-
* ResourceError can be used for terminating a program abruptly,
|
|
17
|
-
* problem with a Resource.
|
|
18
|
-
*
|
|
19
|
-
*
|
|
18
|
+
* {@link ResourceError} can be used for terminating a program abruptly,
|
|
19
|
+
* specifically associating the problem with a {@link Resource}. Depending on
|
|
20
|
+
* the nature of the problem, clients can choose whether or not the call stack
|
|
21
|
+
* should be hidden as well. This should be very rare, and would only indicate
|
|
22
|
+
* that presenting the stack to the user would not be useful/be detrimental.
|
|
20
23
|
*/
|
|
21
24
|
export declare class ResourceError extends Error {
|
|
22
25
|
resource: Resource | undefined;
|
|
23
26
|
hideStack?: boolean | undefined;
|
|
24
27
|
/**
|
|
25
|
-
* Returns true if the given object is
|
|
26
|
-
* multiple copies of the Pulumi SDK have been
|
|
28
|
+
* Returns true if the given object is a {@link ResourceError}. This is
|
|
29
|
+
* designed to work even when multiple copies of the Pulumi SDK have been
|
|
30
|
+
* loaded into the same process.
|
|
27
31
|
*/
|
|
28
32
|
static isInstance(obj: any): obj is ResourceError;
|
|
29
33
|
constructor(message: string, resource: Resource | undefined, hideStack?: boolean | undefined);
|
package/errors.js
CHANGED
|
@@ -23,24 +23,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
23
23
|
const grpc = __importStar(require("@grpc/grpc-js"));
|
|
24
24
|
const utils = __importStar(require("./utils"));
|
|
25
25
|
/**
|
|
26
|
-
* RunError can be used for terminating a program abruptly, but
|
|
27
|
-
* than the usual verbose unhandled error logic
|
|
28
|
-
*
|
|
29
|
-
*
|
|
26
|
+
* {@link RunError} can be used for terminating a program abruptly, but
|
|
27
|
+
* resulting in a clean exit rather than the usual verbose unhandled error logic
|
|
28
|
+
* which emits the source program text and complete stack trace. This type
|
|
29
|
+
* should be rarely used. Ideally {@link ResourceError} should always be used so
|
|
30
|
+
* that as many errors as possible can be associated with a resource.
|
|
30
31
|
*/
|
|
31
32
|
class RunError extends Error {
|
|
32
33
|
constructor() {
|
|
33
34
|
super(...arguments);
|
|
34
35
|
/**
|
|
35
36
|
* A private field to help with RTTI that works in SxS scenarios.
|
|
37
|
+
*
|
|
36
38
|
* @internal
|
|
37
39
|
*/
|
|
38
40
|
// eslint-disable-next-line @typescript-eslint/naming-convention,no-underscore-dangle,id-blacklist,id-match
|
|
39
41
|
this.__pulumiRunError = true;
|
|
40
42
|
}
|
|
41
43
|
/**
|
|
42
|
-
* Returns true if the given object is
|
|
43
|
-
* multiple copies of the Pulumi SDK have been loaded into
|
|
44
|
+
* Returns true if the given object is a {@link RunError}. This is designed
|
|
45
|
+
* to work even when multiple copies of the Pulumi SDK have been loaded into
|
|
46
|
+
* the same process.
|
|
44
47
|
*/
|
|
45
48
|
static isInstance(obj) {
|
|
46
49
|
return utils.isInstance(obj, "__pulumiRunError");
|
|
@@ -48,10 +51,11 @@ class RunError extends Error {
|
|
|
48
51
|
}
|
|
49
52
|
exports.RunError = RunError;
|
|
50
53
|
/**
|
|
51
|
-
* ResourceError can be used for terminating a program abruptly,
|
|
52
|
-
* problem with a Resource.
|
|
53
|
-
*
|
|
54
|
-
*
|
|
54
|
+
* {@link ResourceError} can be used for terminating a program abruptly,
|
|
55
|
+
* specifically associating the problem with a {@link Resource}. Depending on
|
|
56
|
+
* the nature of the problem, clients can choose whether or not the call stack
|
|
57
|
+
* should be hidden as well. This should be very rare, and would only indicate
|
|
58
|
+
* that presenting the stack to the user would not be useful/be detrimental.
|
|
55
59
|
*/
|
|
56
60
|
class ResourceError extends Error {
|
|
57
61
|
constructor(message, resource, hideStack) {
|
|
@@ -60,14 +64,16 @@ class ResourceError extends Error {
|
|
|
60
64
|
this.hideStack = hideStack;
|
|
61
65
|
/**
|
|
62
66
|
* A private field to help with RTTI that works in SxS scenarios.
|
|
67
|
+
*
|
|
63
68
|
* @internal
|
|
64
69
|
*/
|
|
65
70
|
// eslint-disable-next-line @typescript-eslint/naming-convention, no-underscore-dangle, id-blacklist, id-match
|
|
66
71
|
this.__pulumResourceError = true;
|
|
67
72
|
}
|
|
68
73
|
/**
|
|
69
|
-
* Returns true if the given object is
|
|
70
|
-
* multiple copies of the Pulumi SDK have been
|
|
74
|
+
* Returns true if the given object is a {@link ResourceError}. This is
|
|
75
|
+
* designed to work even when multiple copies of the Pulumi SDK have been
|
|
76
|
+
* loaded into the same process.
|
|
71
77
|
*/
|
|
72
78
|
static isInstance(obj) {
|
|
73
79
|
return utils.isInstance(obj, "__pulumResourceError");
|
package/errors.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../errors.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,oDAAsC;AAGtC,+CAAiC;AAEjC
|
|
1
|
+
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../errors.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,oDAAsC;AAGtC,+CAAiC;AAEjC;;;;;;GAMG;AACH,MAAa,QAAS,SAAQ,KAAK;IAAnC;;QACI;;;;WAIG;QACH,2GAA2G;QAC3F,qBAAgB,GAAY,IAAI,CAAC;IAUrD,CAAC;IARG;;;;OAIG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,OAAO,KAAK,CAAC,UAAU,CAAW,GAAG,EAAE,kBAAkB,CAAC,CAAC;IAC/D,CAAC;CACJ;AAjBD,4BAiBC;AAED;;;;;;GAMG;AACH,MAAa,aAAc,SAAQ,KAAK;IAkBpC,YACI,OAAe,EACR,QAA8B,EAC9B,SAAmB;QAE1B,KAAK,CAAC,OAAO,CAAC,CAAC;QAHR,aAAQ,GAAR,QAAQ,CAAsB;QAC9B,cAAS,GAAT,SAAS,CAAU;QApB9B;;;;WAIG;QACH,8GAA8G;QAC9F,yBAAoB,GAAY,IAAI,CAAC;IAiBrD,CAAC;IAfD;;;;OAIG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,OAAO,KAAK,CAAC,UAAU,CAAgB,GAAG,EAAE,sBAAsB,CAAC,CAAC;IACxE,CAAC;CASJ;AAzBD,sCAyBC;AAED,SAAgB,WAAW,CAAC,GAAU;IAClC,MAAM,IAAI,GAAS,GAAI,CAAC,IAAI,CAAC;IAC7B,OAAO,IAAI,KAAK,IAAI,CAAC,MAAM,CAAC,WAAW,IAAI,IAAI,KAAK,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC;AAC9E,CAAC;AAHD,kCAGC"}
|