@pulumi/cloudamqp 3.17.0-alpha.1702588087 → 3.17.0
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/accountAction.d.ts +65 -0
- package/accountAction.js +62 -0
- package/accountAction.js.map +1 -0
- package/getPlugins.d.ts +12 -0
- package/getPlugins.js +12 -0
- package/getPlugins.js.map +1 -1
- package/getPluginsCommunity.d.ts +12 -0
- package/getPluginsCommunity.js +12 -0
- package/getPluginsCommunity.js.map +1 -1
- package/getVpcGcpInfo.d.ts +22 -0
- package/getVpcGcpInfo.js +6 -0
- package/getVpcGcpInfo.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +11 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/plugin.d.ts +30 -0
- package/plugin.js +4 -0
- package/plugin.js.map +1 -1
- package/pluginCommunity.d.ts +30 -0
- package/pluginCommunity.js +4 -0
- package/pluginCommunity.js.map +1 -1
- package/privatelinkAws.d.ts +29 -10
- package/privatelinkAws.js +17 -4
- package/privatelinkAws.js.map +1 -1
- package/privatelinkAzure.d.ts +38 -16
- package/privatelinkAzure.js +17 -4
- package/privatelinkAzure.js.map +1 -1
- package/types/output.d.ts +4 -0
- package/vpcConnect.d.ts +337 -0
- package/vpcConnect.js +224 -0
- package/vpcConnect.js.map +1 -0
- package/vpcGcpPeering.d.ts +44 -24
- package/vpcGcpPeering.js +9 -0
- package/vpcGcpPeering.js.map +1 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Import
|
|
4
|
+
*
|
|
5
|
+
* Not possible to import this resource.
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccountAction extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing AccountAction resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param state Any extra arguments used during the lookup.
|
|
15
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
|
+
*/
|
|
17
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountActionState, opts?: pulumi.CustomResourceOptions): AccountAction;
|
|
18
|
+
/**
|
|
19
|
+
* Returns true if the given object is an instance of AccountAction. This is designed to work even
|
|
20
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
21
|
+
*/
|
|
22
|
+
static isInstance(obj: any): obj is AccountAction;
|
|
23
|
+
/**
|
|
24
|
+
* The action to be invoked. Allowed actions `rotate-password`, `rotate-apikey`.
|
|
25
|
+
*/
|
|
26
|
+
readonly action: pulumi.Output<string>;
|
|
27
|
+
/**
|
|
28
|
+
* The CloudAMQP instance ID.
|
|
29
|
+
*/
|
|
30
|
+
readonly instanceId: pulumi.Output<number>;
|
|
31
|
+
/**
|
|
32
|
+
* Create a AccountAction resource with the given unique name, arguments, and options.
|
|
33
|
+
*
|
|
34
|
+
* @param name The _unique_ name of the resource.
|
|
35
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
36
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
37
|
+
*/
|
|
38
|
+
constructor(name: string, args: AccountActionArgs, opts?: pulumi.CustomResourceOptions);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Input properties used for looking up and filtering AccountAction resources.
|
|
42
|
+
*/
|
|
43
|
+
export interface AccountActionState {
|
|
44
|
+
/**
|
|
45
|
+
* The action to be invoked. Allowed actions `rotate-password`, `rotate-apikey`.
|
|
46
|
+
*/
|
|
47
|
+
action?: pulumi.Input<string>;
|
|
48
|
+
/**
|
|
49
|
+
* The CloudAMQP instance ID.
|
|
50
|
+
*/
|
|
51
|
+
instanceId?: pulumi.Input<number>;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* The set of arguments for constructing a AccountAction resource.
|
|
55
|
+
*/
|
|
56
|
+
export interface AccountActionArgs {
|
|
57
|
+
/**
|
|
58
|
+
* The action to be invoked. Allowed actions `rotate-password`, `rotate-apikey`.
|
|
59
|
+
*/
|
|
60
|
+
action: pulumi.Input<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The CloudAMQP instance ID.
|
|
63
|
+
*/
|
|
64
|
+
instanceId: pulumi.Input<number>;
|
|
65
|
+
}
|
package/accountAction.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
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.AccountAction = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* Not possible to import this resource.
|
|
12
|
+
*/
|
|
13
|
+
class AccountAction extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing AccountAction resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name, id, state, opts) {
|
|
24
|
+
return new AccountAction(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of AccountAction. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj) {
|
|
31
|
+
if (obj === undefined || obj === null) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
return obj['__pulumiType'] === AccountAction.__pulumiType;
|
|
35
|
+
}
|
|
36
|
+
constructor(name, argsOrState, opts) {
|
|
37
|
+
let resourceInputs = {};
|
|
38
|
+
opts = opts || {};
|
|
39
|
+
if (opts.id) {
|
|
40
|
+
const state = argsOrState;
|
|
41
|
+
resourceInputs["action"] = state ? state.action : undefined;
|
|
42
|
+
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
const args = argsOrState;
|
|
46
|
+
if ((!args || args.action === undefined) && !opts.urn) {
|
|
47
|
+
throw new Error("Missing required property 'action'");
|
|
48
|
+
}
|
|
49
|
+
if ((!args || args.instanceId === undefined) && !opts.urn) {
|
|
50
|
+
throw new Error("Missing required property 'instanceId'");
|
|
51
|
+
}
|
|
52
|
+
resourceInputs["action"] = args ? args.action : undefined;
|
|
53
|
+
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
54
|
+
}
|
|
55
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
56
|
+
super(AccountAction.__pulumiType, name, resourceInputs, opts);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.AccountAction = AccountAction;
|
|
60
|
+
/** @internal */
|
|
61
|
+
AccountAction.__pulumiType = 'cloudamqp:index/accountAction:AccountAction';
|
|
62
|
+
//# sourceMappingURL=accountAction.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountAction.js","sourceRoot":"","sources":["../accountAction.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,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,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,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AAjEL,sCAkEC;AApDG,gBAAgB;AACO,0BAAY,GAAG,6CAA6C,CAAC"}
|
package/getPlugins.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
+
* Use this data source to retrieve information about installed and available plugins for the CloudAMQP instance.
|
|
5
|
+
*
|
|
4
6
|
* ## Example Usage
|
|
5
7
|
*
|
|
6
8
|
* ```typescript
|
|
@@ -17,6 +19,10 @@ import * as outputs from "./types/output";
|
|
|
17
19
|
*
|
|
18
20
|
* * `id` - The identifier for this resource.
|
|
19
21
|
* * `plugins` - An array of plugins. Each `plugins` block consists of the fields documented below.
|
|
22
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
23
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
24
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
25
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
20
26
|
*
|
|
21
27
|
* ***
|
|
22
28
|
*
|
|
@@ -53,6 +59,8 @@ export interface GetPluginsResult {
|
|
|
53
59
|
readonly plugins: outputs.GetPluginsPlugin[];
|
|
54
60
|
}
|
|
55
61
|
/**
|
|
62
|
+
* Use this data source to retrieve information about installed and available plugins for the CloudAMQP instance.
|
|
63
|
+
*
|
|
56
64
|
* ## Example Usage
|
|
57
65
|
*
|
|
58
66
|
* ```typescript
|
|
@@ -69,6 +77,10 @@ export interface GetPluginsResult {
|
|
|
69
77
|
*
|
|
70
78
|
* * `id` - The identifier for this resource.
|
|
71
79
|
* * `plugins` - An array of plugins. Each `plugins` block consists of the fields documented below.
|
|
80
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
81
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
82
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
83
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
72
84
|
*
|
|
73
85
|
* ***
|
|
74
86
|
*
|
package/getPlugins.js
CHANGED
|
@@ -6,6 +6,8 @@ exports.getPluginsOutput = exports.getPlugins = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Use this data source to retrieve information about installed and available plugins for the CloudAMQP instance.
|
|
10
|
+
*
|
|
9
11
|
* ## Example Usage
|
|
10
12
|
*
|
|
11
13
|
* ```typescript
|
|
@@ -22,6 +24,10 @@ const utilities = require("./utilities");
|
|
|
22
24
|
*
|
|
23
25
|
* * `id` - The identifier for this resource.
|
|
24
26
|
* * `plugins` - An array of plugins. Each `plugins` block consists of the fields documented below.
|
|
27
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
28
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
29
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
30
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
25
31
|
*
|
|
26
32
|
* ***
|
|
27
33
|
*
|
|
@@ -44,6 +50,8 @@ function getPlugins(args, opts) {
|
|
|
44
50
|
}
|
|
45
51
|
exports.getPlugins = getPlugins;
|
|
46
52
|
/**
|
|
53
|
+
* Use this data source to retrieve information about installed and available plugins for the CloudAMQP instance.
|
|
54
|
+
*
|
|
47
55
|
* ## Example Usage
|
|
48
56
|
*
|
|
49
57
|
* ```typescript
|
|
@@ -60,6 +68,10 @@ exports.getPlugins = getPlugins;
|
|
|
60
68
|
*
|
|
61
69
|
* * `id` - The identifier for this resource.
|
|
62
70
|
* * `plugins` - An array of plugins. Each `plugins` block consists of the fields documented below.
|
|
71
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
72
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
73
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
74
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
63
75
|
*
|
|
64
76
|
* ***
|
|
65
77
|
*
|
package/getPlugins.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPlugins.js","sourceRoot":"","sources":["../getPlugins.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getPlugins.js","sourceRoot":"","sources":["../getPlugins.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAuBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getPluginsCommunity.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
+
* Use this data source to retrieve information about available community plugins for the CloudAMQP instance.
|
|
5
|
+
*
|
|
4
6
|
* ## Example Usage
|
|
5
7
|
*
|
|
6
8
|
* ```typescript
|
|
@@ -17,6 +19,10 @@ import * as outputs from "./types/output";
|
|
|
17
19
|
*
|
|
18
20
|
* * `id` - The identifier for this resource.
|
|
19
21
|
* * `plugins` - An array of community plugins. Each `plugins` block consists of the fields documented below.
|
|
22
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
23
|
+
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
24
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
25
|
+
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
20
26
|
*
|
|
21
27
|
* ***
|
|
22
28
|
*
|
|
@@ -52,6 +58,8 @@ export interface GetPluginsCommunityResult {
|
|
|
52
58
|
readonly plugins: outputs.GetPluginsCommunityPlugin[];
|
|
53
59
|
}
|
|
54
60
|
/**
|
|
61
|
+
* Use this data source to retrieve information about available community plugins for the CloudAMQP instance.
|
|
62
|
+
*
|
|
55
63
|
* ## Example Usage
|
|
56
64
|
*
|
|
57
65
|
* ```typescript
|
|
@@ -68,6 +76,10 @@ export interface GetPluginsCommunityResult {
|
|
|
68
76
|
*
|
|
69
77
|
* * `id` - The identifier for this resource.
|
|
70
78
|
* * `plugins` - An array of community plugins. Each `plugins` block consists of the fields documented below.
|
|
79
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
80
|
+
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
81
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
82
|
+
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
71
83
|
*
|
|
72
84
|
* ***
|
|
73
85
|
*
|
package/getPluginsCommunity.js
CHANGED
|
@@ -6,6 +6,8 @@ exports.getPluginsCommunityOutput = exports.getPluginsCommunity = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Use this data source to retrieve information about available community plugins for the CloudAMQP instance.
|
|
10
|
+
*
|
|
9
11
|
* ## Example Usage
|
|
10
12
|
*
|
|
11
13
|
* ```typescript
|
|
@@ -22,6 +24,10 @@ const utilities = require("./utilities");
|
|
|
22
24
|
*
|
|
23
25
|
* * `id` - The identifier for this resource.
|
|
24
26
|
* * `plugins` - An array of community plugins. Each `plugins` block consists of the fields documented below.
|
|
27
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
28
|
+
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
29
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
30
|
+
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
25
31
|
*
|
|
26
32
|
* ***
|
|
27
33
|
*
|
|
@@ -43,6 +49,8 @@ function getPluginsCommunity(args, opts) {
|
|
|
43
49
|
}
|
|
44
50
|
exports.getPluginsCommunity = getPluginsCommunity;
|
|
45
51
|
/**
|
|
52
|
+
* Use this data source to retrieve information about available community plugins for the CloudAMQP instance.
|
|
53
|
+
*
|
|
46
54
|
* ## Example Usage
|
|
47
55
|
*
|
|
48
56
|
* ```typescript
|
|
@@ -59,6 +67,10 @@ exports.getPluginsCommunity = getPluginsCommunity;
|
|
|
59
67
|
*
|
|
60
68
|
* * `id` - The identifier for this resource.
|
|
61
69
|
* * `plugins` - An array of community plugins. Each `plugins` block consists of the fields documented below.
|
|
70
|
+
* * `sleep` - (Optional) Configurable sleep time (seconds) for retries when requesting information
|
|
71
|
+
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
72
|
+
* * `timeout` - (Optional) - Configurable timeout time (seconds) for retries when requesting
|
|
73
|
+
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
62
74
|
*
|
|
63
75
|
* ***
|
|
64
76
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPluginsCommunity.js","sourceRoot":"","sources":["../getPluginsCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getPluginsCommunity.js","sourceRoot":"","sources":["../getPluginsCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yDAAyD,EAAE;QACpF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC;AAuBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
package/getVpcGcpInfo.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
19
19
|
* instanceId: cloudamqp_instance.instance.id,
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
|
+
*
|
|
22
23
|
* </details>
|
|
23
24
|
*
|
|
24
25
|
* <details>
|
|
@@ -36,6 +37,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
36
37
|
* vpcId: cloudamqp_vpc.vpc.id,
|
|
37
38
|
* });
|
|
38
39
|
* ```
|
|
40
|
+
*
|
|
39
41
|
* </details>
|
|
40
42
|
* ## Attributes reference
|
|
41
43
|
*
|
|
@@ -65,6 +67,14 @@ export interface GetVpcGcpInfoArgs {
|
|
|
65
67
|
* ***Deprecated: Changed from required to optional in v1.16.0 will be removed in next major version (v2.0)***
|
|
66
68
|
*/
|
|
67
69
|
instanceId?: number;
|
|
70
|
+
/**
|
|
71
|
+
* Configurable sleep time (seconds) between retries when reading peering. Default set to 10 seconds.
|
|
72
|
+
*/
|
|
73
|
+
sleep?: number;
|
|
74
|
+
/**
|
|
75
|
+
* Configurable timeout time (seconds) before retries times out. Default set to 1800 seconds.
|
|
76
|
+
*/
|
|
77
|
+
timeout?: number;
|
|
68
78
|
/**
|
|
69
79
|
* The managed VPC identifier.
|
|
70
80
|
*
|
|
@@ -83,6 +93,8 @@ export interface GetVpcGcpInfoResult {
|
|
|
83
93
|
readonly instanceId?: number;
|
|
84
94
|
readonly name: string;
|
|
85
95
|
readonly network: string;
|
|
96
|
+
readonly sleep?: number;
|
|
97
|
+
readonly timeout?: number;
|
|
86
98
|
readonly vpcId?: string;
|
|
87
99
|
readonly vpcSubnet: string;
|
|
88
100
|
}
|
|
@@ -106,6 +118,7 @@ export interface GetVpcGcpInfoResult {
|
|
|
106
118
|
* instanceId: cloudamqp_instance.instance.id,
|
|
107
119
|
* });
|
|
108
120
|
* ```
|
|
121
|
+
*
|
|
109
122
|
* </details>
|
|
110
123
|
*
|
|
111
124
|
* <details>
|
|
@@ -123,6 +136,7 @@ export interface GetVpcGcpInfoResult {
|
|
|
123
136
|
* vpcId: cloudamqp_vpc.vpc.id,
|
|
124
137
|
* });
|
|
125
138
|
* ```
|
|
139
|
+
*
|
|
126
140
|
* </details>
|
|
127
141
|
* ## Attributes reference
|
|
128
142
|
*
|
|
@@ -152,6 +166,14 @@ export interface GetVpcGcpInfoOutputArgs {
|
|
|
152
166
|
* ***Deprecated: Changed from required to optional in v1.16.0 will be removed in next major version (v2.0)***
|
|
153
167
|
*/
|
|
154
168
|
instanceId?: pulumi.Input<number>;
|
|
169
|
+
/**
|
|
170
|
+
* Configurable sleep time (seconds) between retries when reading peering. Default set to 10 seconds.
|
|
171
|
+
*/
|
|
172
|
+
sleep?: pulumi.Input<number>;
|
|
173
|
+
/**
|
|
174
|
+
* Configurable timeout time (seconds) before retries times out. Default set to 1800 seconds.
|
|
175
|
+
*/
|
|
176
|
+
timeout?: pulumi.Input<number>;
|
|
155
177
|
/**
|
|
156
178
|
* The managed VPC identifier.
|
|
157
179
|
*
|
package/getVpcGcpInfo.js
CHANGED
|
@@ -25,6 +25,7 @@ const utilities = require("./utilities");
|
|
|
25
25
|
* instanceId: cloudamqp_instance.instance.id,
|
|
26
26
|
* });
|
|
27
27
|
* ```
|
|
28
|
+
*
|
|
28
29
|
* </details>
|
|
29
30
|
*
|
|
30
31
|
* <details>
|
|
@@ -42,6 +43,7 @@ const utilities = require("./utilities");
|
|
|
42
43
|
* vpcId: cloudamqp_vpc.vpc.id,
|
|
43
44
|
* });
|
|
44
45
|
* ```
|
|
46
|
+
*
|
|
45
47
|
* </details>
|
|
46
48
|
* ## Attributes reference
|
|
47
49
|
*
|
|
@@ -65,6 +67,8 @@ function getVpcGcpInfo(args, opts) {
|
|
|
65
67
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
66
68
|
return pulumi.runtime.invoke("cloudamqp:index/getVpcGcpInfo:getVpcGcpInfo", {
|
|
67
69
|
"instanceId": args.instanceId,
|
|
70
|
+
"sleep": args.sleep,
|
|
71
|
+
"timeout": args.timeout,
|
|
68
72
|
"vpcId": args.vpcId,
|
|
69
73
|
}, opts);
|
|
70
74
|
}
|
|
@@ -89,6 +93,7 @@ exports.getVpcGcpInfo = getVpcGcpInfo;
|
|
|
89
93
|
* instanceId: cloudamqp_instance.instance.id,
|
|
90
94
|
* });
|
|
91
95
|
* ```
|
|
96
|
+
*
|
|
92
97
|
* </details>
|
|
93
98
|
*
|
|
94
99
|
* <details>
|
|
@@ -106,6 +111,7 @@ exports.getVpcGcpInfo = getVpcGcpInfo;
|
|
|
106
111
|
* vpcId: cloudamqp_vpc.vpc.id,
|
|
107
112
|
* });
|
|
108
113
|
* ```
|
|
114
|
+
*
|
|
109
115
|
* </details>
|
|
110
116
|
* ## Attributes reference
|
|
111
117
|
*
|
package/getVpcGcpInfo.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVpcGcpInfo.js","sourceRoot":"","sources":["../getVpcGcpInfo.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getVpcGcpInfo.js","sourceRoot":"","sources":["../getVpcGcpInfo.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,sCAUC;AA4CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
package/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { AccountActionArgs, AccountActionState } from "./accountAction";
|
|
2
|
+
export type AccountAction = import("./accountAction").AccountAction;
|
|
3
|
+
export declare const AccountAction: typeof import("./accountAction").AccountAction;
|
|
1
4
|
export { AlarmArgs, AlarmState } from "./alarm";
|
|
2
5
|
export type Alarm = import("./alarm").Alarm;
|
|
3
6
|
export declare const Alarm: typeof import("./alarm").Alarm;
|
|
@@ -88,6 +91,9 @@ export declare const UpgradeRabbitmq: typeof import("./upgradeRabbitmq").Upgrade
|
|
|
88
91
|
export { VpcArgs, VpcState } from "./vpc";
|
|
89
92
|
export type Vpc = import("./vpc").Vpc;
|
|
90
93
|
export declare const Vpc: typeof import("./vpc").Vpc;
|
|
94
|
+
export { VpcConnectArgs, VpcConnectState } from "./vpcConnect";
|
|
95
|
+
export type VpcConnect = import("./vpcConnect").VpcConnect;
|
|
96
|
+
export declare const VpcConnect: typeof import("./vpcConnect").VpcConnect;
|
|
91
97
|
export { VpcGcpPeeringArgs, VpcGcpPeeringState } from "./vpcGcpPeering";
|
|
92
98
|
export type VpcGcpPeering = import("./vpcGcpPeering").VpcGcpPeering;
|
|
93
99
|
export declare const VpcGcpPeering: typeof import("./vpcGcpPeering").VpcGcpPeering;
|
package/index.js
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
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.types = exports.config = exports.Webhook = exports.VpcPeering = exports.VpcGcpPeering = exports.Vpc = exports.UpgradeRabbitmq = exports.SecurityFirewall = exports.RabbitConfiguration = exports.Provider = exports.PrivatelinkAzure = exports.PrivatelinkAws = exports.PluginCommunity = exports.Plugin = exports.Notification = exports.NodeActions = exports.IntegrationMetric = exports.IntegrationLog = exports.IntegrationAwsEventbridge = exports.Instance = exports.getVpcInfoOutput = exports.getVpcInfo = exports.getVpcGcpInfoOutput = exports.getVpcGcpInfo = exports.getUpgradableVersionsOutput = exports.getUpgradableVersions = exports.getPluginsCommunityOutput = exports.getPluginsCommunity = exports.getPluginsOutput = exports.getPlugins = exports.getNotificationOutput = exports.getNotification = exports.getNodesOutput = exports.getNodes = exports.getInstanceOutput = exports.getInstance = exports.getCredentialsOutput = exports.getCredentials = exports.getAlarmOutput = exports.getAlarm = exports.getAccountVpcsOutput = exports.getAccountVpcs = exports.getAccountOutput = exports.getAccount = exports.ExtraDiskSize = exports.CustomDomain = exports.Alarm = void 0;
|
|
5
|
+
exports.types = exports.config = exports.Webhook = exports.VpcPeering = exports.VpcGcpPeering = exports.VpcConnect = exports.Vpc = exports.UpgradeRabbitmq = exports.SecurityFirewall = exports.RabbitConfiguration = exports.Provider = exports.PrivatelinkAzure = exports.PrivatelinkAws = exports.PluginCommunity = exports.Plugin = exports.Notification = exports.NodeActions = exports.IntegrationMetric = exports.IntegrationLog = exports.IntegrationAwsEventbridge = exports.Instance = exports.getVpcInfoOutput = exports.getVpcInfo = exports.getVpcGcpInfoOutput = exports.getVpcGcpInfo = exports.getUpgradableVersionsOutput = exports.getUpgradableVersions = exports.getPluginsCommunityOutput = exports.getPluginsCommunity = exports.getPluginsOutput = exports.getPlugins = exports.getNotificationOutput = exports.getNotification = exports.getNodesOutput = exports.getNodes = exports.getInstanceOutput = exports.getInstance = exports.getCredentialsOutput = exports.getCredentials = exports.getAlarmOutput = exports.getAlarm = exports.getAccountVpcsOutput = exports.getAccountVpcs = exports.getAccountOutput = exports.getAccount = exports.ExtraDiskSize = exports.CustomDomain = exports.Alarm = exports.AccountAction = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
exports.AccountAction = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["AccountAction"], () => require("./accountAction"));
|
|
8
10
|
exports.Alarm = null;
|
|
9
11
|
utilities.lazyLoad(exports, ["Alarm"], () => require("./alarm"));
|
|
10
12
|
exports.CustomDomain = null;
|
|
@@ -77,6 +79,8 @@ exports.UpgradeRabbitmq = null;
|
|
|
77
79
|
utilities.lazyLoad(exports, ["UpgradeRabbitmq"], () => require("./upgradeRabbitmq"));
|
|
78
80
|
exports.Vpc = null;
|
|
79
81
|
utilities.lazyLoad(exports, ["Vpc"], () => require("./vpc"));
|
|
82
|
+
exports.VpcConnect = null;
|
|
83
|
+
utilities.lazyLoad(exports, ["VpcConnect"], () => require("./vpcConnect"));
|
|
80
84
|
exports.VpcGcpPeering = null;
|
|
81
85
|
utilities.lazyLoad(exports, ["VpcGcpPeering"], () => require("./vpcGcpPeering"));
|
|
82
86
|
exports.VpcPeering = null;
|
|
@@ -92,6 +96,8 @@ const _module = {
|
|
|
92
96
|
version: utilities.getVersion(),
|
|
93
97
|
construct: (name, type, urn) => {
|
|
94
98
|
switch (type) {
|
|
99
|
+
case "cloudamqp:index/accountAction:AccountAction":
|
|
100
|
+
return new exports.AccountAction(name, undefined, { urn });
|
|
95
101
|
case "cloudamqp:index/alarm:Alarm":
|
|
96
102
|
return new exports.Alarm(name, undefined, { urn });
|
|
97
103
|
case "cloudamqp:index/customDomain:CustomDomain":
|
|
@@ -126,6 +132,8 @@ const _module = {
|
|
|
126
132
|
return new exports.UpgradeRabbitmq(name, undefined, { urn });
|
|
127
133
|
case "cloudamqp:index/vpc:Vpc":
|
|
128
134
|
return new exports.Vpc(name, undefined, { urn });
|
|
135
|
+
case "cloudamqp:index/vpcConnect:VpcConnect":
|
|
136
|
+
return new exports.VpcConnect(name, undefined, { urn });
|
|
129
137
|
case "cloudamqp:index/vpcGcpPeering:VpcGcpPeering":
|
|
130
138
|
return new exports.VpcGcpPeering(name, undefined, { urn });
|
|
131
139
|
case "cloudamqp:index/vpcPeering:VpcPeering":
|
|
@@ -137,6 +145,7 @@ const _module = {
|
|
|
137
145
|
}
|
|
138
146
|
},
|
|
139
147
|
};
|
|
148
|
+
pulumi.runtime.registerResourceModule("cloudamqp", "index/accountAction", _module);
|
|
140
149
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/alarm", _module);
|
|
141
150
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/customDomain", _module);
|
|
142
151
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/extraDiskSize", _module);
|
|
@@ -154,6 +163,7 @@ pulumi.runtime.registerResourceModule("cloudamqp", "index/rabbitConfiguration",
|
|
|
154
163
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/securityFirewall", _module);
|
|
155
164
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/upgradeRabbitmq", _module);
|
|
156
165
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/vpc", _module);
|
|
166
|
+
pulumi.runtime.registerResourceModule("cloudamqp", "index/vpcConnect", _module);
|
|
157
167
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/vpcGcpPeering", _module);
|
|
158
168
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/vpcPeering", _module);
|
|
159
169
|
pulumi.runtime.registerResourceModule("cloudamqp", "index/webhook", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAIpD,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAGpE,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG7F,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG7F,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGhG,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC9F,QAAA,yBAAyB,GAAqE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,EAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAG5G,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACpG,QAAA,2BAA2B,GAAyE,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,EAAC,6BAA6B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAGlH,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAG1F,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAIjF,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,yBAAyB,GAA2E,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,6BAA6B,CAAC,CAAC,CAAC;AAI5F,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAItD,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAIhF,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC3D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAIhD,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,sBAAsB;AACtB,mCAAmC;AAI/B,wBAAM;AAHV,iCAAiC;AAI7B,sBAAK;AAGT,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,6BAA6B;gBAC9B,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,mCAAmC;gBACpC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,qEAAqE;gBACtE,OAAO,IAAI,iCAAyB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvE,KAAK,+CAA+C;gBAChD,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,qDAAqD;gBACtD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,+BAA+B;gBAChC,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,+CAA+C;gBAChD,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,mDAAmD;gBACpD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,mDAAmD;gBACpD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,yBAAyB;gBAC1B,OAAO,IAAI,WAAG,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjD,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,iCAAiC;gBAClC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,aAAa,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,iCAAiC,EAAE,OAAO,CAAC,CAAA;AAC9F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,WAAW,EAAE;IAChD,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,4BAA4B,EAAE;YACvC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
package/package.json
CHANGED
package/plugin.d.ts
CHANGED
|
@@ -40,6 +40,16 @@ export declare class Plugin extends pulumi.CustomResource {
|
|
|
40
40
|
* The name of the Rabbit MQ plugin.
|
|
41
41
|
*/
|
|
42
42
|
readonly name: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Configurable sleep time (seconds) for retries when requesting information
|
|
45
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
46
|
+
*/
|
|
47
|
+
readonly sleep: pulumi.Output<number | undefined>;
|
|
48
|
+
/**
|
|
49
|
+
* Configurable timeout time (seconds) for retries when requesting
|
|
50
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
51
|
+
*/
|
|
52
|
+
readonly timeout: pulumi.Output<number | undefined>;
|
|
43
53
|
/**
|
|
44
54
|
* The version of the plugin.
|
|
45
55
|
*/
|
|
@@ -73,6 +83,16 @@ export interface PluginState {
|
|
|
73
83
|
* The name of the Rabbit MQ plugin.
|
|
74
84
|
*/
|
|
75
85
|
name?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Configurable sleep time (seconds) for retries when requesting information
|
|
88
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
89
|
+
*/
|
|
90
|
+
sleep?: pulumi.Input<number>;
|
|
91
|
+
/**
|
|
92
|
+
* Configurable timeout time (seconds) for retries when requesting
|
|
93
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
94
|
+
*/
|
|
95
|
+
timeout?: pulumi.Input<number>;
|
|
76
96
|
/**
|
|
77
97
|
* The version of the plugin.
|
|
78
98
|
*/
|
|
@@ -94,4 +114,14 @@ export interface PluginArgs {
|
|
|
94
114
|
* The name of the Rabbit MQ plugin.
|
|
95
115
|
*/
|
|
96
116
|
name?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* Configurable sleep time (seconds) for retries when requesting information
|
|
119
|
+
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
120
|
+
*/
|
|
121
|
+
sleep?: pulumi.Input<number>;
|
|
122
|
+
/**
|
|
123
|
+
* Configurable timeout time (seconds) for retries when requesting
|
|
124
|
+
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
125
|
+
*/
|
|
126
|
+
timeout?: pulumi.Input<number>;
|
|
97
127
|
}
|
package/plugin.js
CHANGED
|
@@ -46,6 +46,8 @@ class Plugin extends pulumi.CustomResource {
|
|
|
46
46
|
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
47
47
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
48
48
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
49
|
+
resourceInputs["sleep"] = state ? state.sleep : undefined;
|
|
50
|
+
resourceInputs["timeout"] = state ? state.timeout : undefined;
|
|
49
51
|
resourceInputs["version"] = state ? state.version : undefined;
|
|
50
52
|
}
|
|
51
53
|
else {
|
|
@@ -59,6 +61,8 @@ class Plugin extends pulumi.CustomResource {
|
|
|
59
61
|
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
60
62
|
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
61
63
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
64
|
+
resourceInputs["sleep"] = args ? args.sleep : undefined;
|
|
65
|
+
resourceInputs["timeout"] = args ? args.timeout : undefined;
|
|
62
66
|
resourceInputs["description"] = undefined /*out*/;
|
|
63
67
|
resourceInputs["version"] = undefined /*out*/;
|
|
64
68
|
}
|
package/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../plugin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../plugin.ts"],"names":[],"mappings":"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"}
|