@pulumi/cloudamqp 3.17.2 → 3.17.3
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/integrationLog.d.ts +101 -50
- package/integrationLog.js +21 -33
- package/integrationLog.js.map +1 -1
- package/notification.d.ts +118 -13
- package/notification.js +118 -13
- package/notification.js.map +1 -1
- package/package.json +1 -1
- package/plugin.d.ts +15 -21
- package/plugin.js.map +1 -1
- package/pluginCommunity.d.ts +15 -21
- package/pluginCommunity.js.map +1 -1
- package/securityFirewall.d.ts +9 -30
- package/securityFirewall.js.map +1 -1
- package/types/input.d.ts +0 -34
- package/types/output.d.ts +0 -34
package/integrationLog.d.ts
CHANGED
|
@@ -1,52 +1,28 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* This resource allows you to create and manage third party log integrations for a CloudAMQP instance.
|
|
3
|
+
* This resource allows you to create and manage third party log integrations for a CloudAMQP instance.
|
|
4
|
+
* Once configured, the logs produced will be forward to corresponding integration.
|
|
4
5
|
*
|
|
5
6
|
* Only available for dedicated subscription plans.
|
|
6
7
|
*
|
|
7
|
-
* ## Argument Reference (cloudwatchlog)
|
|
8
|
-
*
|
|
9
|
-
* Cloudwatch argument reference and example. Create an IAM user with programmatic access and the following permissions:
|
|
10
|
-
*
|
|
11
|
-
* * CreateLogGroup
|
|
12
|
-
* * CreateLogStream
|
|
13
|
-
* * DescribeLogGroups
|
|
14
|
-
* * DescribeLogStreams
|
|
15
|
-
* * PutLogEvents
|
|
16
|
-
*
|
|
17
|
-
* ## Integration service reference
|
|
18
|
-
*
|
|
19
|
-
* Valid names for third party log integration.
|
|
20
|
-
*
|
|
21
|
-
* | Name | Description |
|
|
22
|
-
* |------------|---------------------------------------------------------------|
|
|
23
|
-
* | cloudwatchlog | Create a IAM with programmatic access. |
|
|
24
|
-
* | logentries | Create a Logentries token at https://logentries.com/app#/add-log/manual |
|
|
25
|
-
* | loggly | Create a Loggly token at https://your-company}.loggly.com/tokens |
|
|
26
|
-
* | papertrail | Create a Papertrail endpoint https://papertrailapp.com/systems/setup |
|
|
27
|
-
* | splunk | Create a HTTP Event Collector token at `https://<your-splunk>.cloud.splunk.com/en-US/manager/search/http-eventcollector` |
|
|
28
|
-
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
29
|
-
* | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
|
|
30
|
-
* | scalyr | Create a Log write token at https://app.scalyr.com/keys |
|
|
31
|
-
* | coralogix | Create Send-Your-Data API key https://coralogix.com/docs/send-your-data-api-key/ |
|
|
32
|
-
*
|
|
33
8
|
* ## Integration Type reference
|
|
34
9
|
*
|
|
35
|
-
* Valid arguments for third party log integrations.
|
|
10
|
+
* Valid arguments for third party log integrations. See more information at [docs.cloudamqp.com](https://docs.cloudamqp.com/cloudamqp_api.html#add-log-integration)
|
|
36
11
|
*
|
|
37
12
|
* Required arguments for all integrations: name
|
|
38
13
|
*
|
|
39
|
-
* |
|
|
14
|
+
* | Integration | name | Required arguments |
|
|
40
15
|
* | ---- | ---- | ---- |
|
|
16
|
+
* | Azure monitor | azureMonitor | tenant_id, application_id, application_secret, dce_uri, table, dcrId |
|
|
41
17
|
* | CloudWatch | cloudwatchlog | access_key_id, secret_access_key, region |
|
|
18
|
+
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
19
|
+
* | Data Dog | datadog | region, api_keys, tags |
|
|
42
20
|
* | Log Entries | logentries | token |
|
|
43
21
|
* | Loggly | loggly | token |
|
|
44
22
|
* | Papertrail | papertrail | url |
|
|
23
|
+
* | Scalyr | scalyr | token, host |
|
|
45
24
|
* | Splunk | splunk | token, host_port, sourcetype |
|
|
46
|
-
* | Data Dog | datadog | region, api_keys, tags |
|
|
47
25
|
* | Stackdriver | stackdriver | credentials |
|
|
48
|
-
* | Scalyr | scalyr | token, host |
|
|
49
|
-
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
50
26
|
*
|
|
51
27
|
* ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, clientEmail
|
|
52
28
|
*
|
|
@@ -87,9 +63,17 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
87
63
|
*/
|
|
88
64
|
readonly apiKey: pulumi.Output<string | undefined>;
|
|
89
65
|
/**
|
|
90
|
-
* The application name for Coralogix.
|
|
66
|
+
* The application name for Coralogix.
|
|
91
67
|
*/
|
|
92
68
|
readonly application: pulumi.Output<string | undefined>;
|
|
69
|
+
/**
|
|
70
|
+
* The application identifier for Azure monitor.
|
|
71
|
+
*/
|
|
72
|
+
readonly applicationId: pulumi.Output<string | undefined>;
|
|
73
|
+
/**
|
|
74
|
+
* The application secret for Azure monitor.
|
|
75
|
+
*/
|
|
76
|
+
readonly applicationSecret: pulumi.Output<string | undefined>;
|
|
93
77
|
/**
|
|
94
78
|
* The client email registered for the integration service.
|
|
95
79
|
*/
|
|
@@ -99,7 +83,17 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
99
83
|
*/
|
|
100
84
|
readonly credentials: pulumi.Output<string | undefined>;
|
|
101
85
|
/**
|
|
102
|
-
* The
|
|
86
|
+
* The data collection endpoint for Azure monitor.
|
|
87
|
+
*/
|
|
88
|
+
readonly dceUri: pulumi.Output<string | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* ID of data collection rule that your DCE is linked to for Azure Monitor.
|
|
91
|
+
*
|
|
92
|
+
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
93
|
+
*/
|
|
94
|
+
readonly dcrId: pulumi.Output<string | undefined>;
|
|
95
|
+
/**
|
|
96
|
+
* The syslog destination to send the logs to for Coralogix.
|
|
103
97
|
*/
|
|
104
98
|
readonly endpoint: pulumi.Output<string | undefined>;
|
|
105
99
|
/**
|
|
@@ -116,6 +110,7 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
116
110
|
readonly instanceId: pulumi.Output<number>;
|
|
117
111
|
/**
|
|
118
112
|
* The name of the third party log integration. See
|
|
113
|
+
* Integration type reference
|
|
119
114
|
*/
|
|
120
115
|
readonly name: pulumi.Output<string>;
|
|
121
116
|
/**
|
|
@@ -143,15 +138,21 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
143
138
|
*/
|
|
144
139
|
readonly sourcetype: pulumi.Output<string | undefined>;
|
|
145
140
|
/**
|
|
146
|
-
* The subsystem name for Coralogix.
|
|
147
|
-
*
|
|
148
|
-
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
141
|
+
* The subsystem name for Coralogix.
|
|
149
142
|
*/
|
|
150
143
|
readonly subsystem: pulumi.Output<string | undefined>;
|
|
151
144
|
/**
|
|
152
|
-
*
|
|
145
|
+
* The table name for Azure monitor.
|
|
146
|
+
*/
|
|
147
|
+
readonly table: pulumi.Output<string | undefined>;
|
|
148
|
+
/**
|
|
149
|
+
* Tag the integration, e.g. env=prod,region=europe.
|
|
153
150
|
*/
|
|
154
151
|
readonly tags: pulumi.Output<string | undefined>;
|
|
152
|
+
/**
|
|
153
|
+
* The tenant identifier for Azure monitor.
|
|
154
|
+
*/
|
|
155
|
+
readonly tenantId: pulumi.Output<string | undefined>;
|
|
155
156
|
/**
|
|
156
157
|
* Token used for authentication.
|
|
157
158
|
*/
|
|
@@ -182,9 +183,17 @@ export interface IntegrationLogState {
|
|
|
182
183
|
*/
|
|
183
184
|
apiKey?: pulumi.Input<string>;
|
|
184
185
|
/**
|
|
185
|
-
* The application name for Coralogix.
|
|
186
|
+
* The application name for Coralogix.
|
|
186
187
|
*/
|
|
187
188
|
application?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* The application identifier for Azure monitor.
|
|
191
|
+
*/
|
|
192
|
+
applicationId?: pulumi.Input<string>;
|
|
193
|
+
/**
|
|
194
|
+
* The application secret for Azure monitor.
|
|
195
|
+
*/
|
|
196
|
+
applicationSecret?: pulumi.Input<string>;
|
|
188
197
|
/**
|
|
189
198
|
* The client email registered for the integration service.
|
|
190
199
|
*/
|
|
@@ -194,7 +203,17 @@ export interface IntegrationLogState {
|
|
|
194
203
|
*/
|
|
195
204
|
credentials?: pulumi.Input<string>;
|
|
196
205
|
/**
|
|
197
|
-
* The
|
|
206
|
+
* The data collection endpoint for Azure monitor.
|
|
207
|
+
*/
|
|
208
|
+
dceUri?: pulumi.Input<string>;
|
|
209
|
+
/**
|
|
210
|
+
* ID of data collection rule that your DCE is linked to for Azure Monitor.
|
|
211
|
+
*
|
|
212
|
+
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
213
|
+
*/
|
|
214
|
+
dcrId?: pulumi.Input<string>;
|
|
215
|
+
/**
|
|
216
|
+
* The syslog destination to send the logs to for Coralogix.
|
|
198
217
|
*/
|
|
199
218
|
endpoint?: pulumi.Input<string>;
|
|
200
219
|
/**
|
|
@@ -211,6 +230,7 @@ export interface IntegrationLogState {
|
|
|
211
230
|
instanceId?: pulumi.Input<number>;
|
|
212
231
|
/**
|
|
213
232
|
* The name of the third party log integration. See
|
|
233
|
+
* Integration type reference
|
|
214
234
|
*/
|
|
215
235
|
name?: pulumi.Input<string>;
|
|
216
236
|
/**
|
|
@@ -238,15 +258,21 @@ export interface IntegrationLogState {
|
|
|
238
258
|
*/
|
|
239
259
|
sourcetype?: pulumi.Input<string>;
|
|
240
260
|
/**
|
|
241
|
-
* The subsystem name for Coralogix.
|
|
242
|
-
*
|
|
243
|
-
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
261
|
+
* The subsystem name for Coralogix.
|
|
244
262
|
*/
|
|
245
263
|
subsystem?: pulumi.Input<string>;
|
|
246
264
|
/**
|
|
247
|
-
*
|
|
265
|
+
* The table name for Azure monitor.
|
|
266
|
+
*/
|
|
267
|
+
table?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* Tag the integration, e.g. env=prod,region=europe.
|
|
248
270
|
*/
|
|
249
271
|
tags?: pulumi.Input<string>;
|
|
272
|
+
/**
|
|
273
|
+
* The tenant identifier for Azure monitor.
|
|
274
|
+
*/
|
|
275
|
+
tenantId?: pulumi.Input<string>;
|
|
250
276
|
/**
|
|
251
277
|
* Token used for authentication.
|
|
252
278
|
*/
|
|
@@ -269,9 +295,17 @@ export interface IntegrationLogArgs {
|
|
|
269
295
|
*/
|
|
270
296
|
apiKey?: pulumi.Input<string>;
|
|
271
297
|
/**
|
|
272
|
-
* The application name for Coralogix.
|
|
298
|
+
* The application name for Coralogix.
|
|
273
299
|
*/
|
|
274
300
|
application?: pulumi.Input<string>;
|
|
301
|
+
/**
|
|
302
|
+
* The application identifier for Azure monitor.
|
|
303
|
+
*/
|
|
304
|
+
applicationId?: pulumi.Input<string>;
|
|
305
|
+
/**
|
|
306
|
+
* The application secret for Azure monitor.
|
|
307
|
+
*/
|
|
308
|
+
applicationSecret?: pulumi.Input<string>;
|
|
275
309
|
/**
|
|
276
310
|
* The client email registered for the integration service.
|
|
277
311
|
*/
|
|
@@ -281,7 +315,17 @@ export interface IntegrationLogArgs {
|
|
|
281
315
|
*/
|
|
282
316
|
credentials?: pulumi.Input<string>;
|
|
283
317
|
/**
|
|
284
|
-
* The
|
|
318
|
+
* The data collection endpoint for Azure monitor.
|
|
319
|
+
*/
|
|
320
|
+
dceUri?: pulumi.Input<string>;
|
|
321
|
+
/**
|
|
322
|
+
* ID of data collection rule that your DCE is linked to for Azure Monitor.
|
|
323
|
+
*
|
|
324
|
+
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
325
|
+
*/
|
|
326
|
+
dcrId?: pulumi.Input<string>;
|
|
327
|
+
/**
|
|
328
|
+
* The syslog destination to send the logs to for Coralogix.
|
|
285
329
|
*/
|
|
286
330
|
endpoint?: pulumi.Input<string>;
|
|
287
331
|
/**
|
|
@@ -298,6 +342,7 @@ export interface IntegrationLogArgs {
|
|
|
298
342
|
instanceId: pulumi.Input<number>;
|
|
299
343
|
/**
|
|
300
344
|
* The name of the third party log integration. See
|
|
345
|
+
* Integration type reference
|
|
301
346
|
*/
|
|
302
347
|
name?: pulumi.Input<string>;
|
|
303
348
|
/**
|
|
@@ -325,15 +370,21 @@ export interface IntegrationLogArgs {
|
|
|
325
370
|
*/
|
|
326
371
|
sourcetype?: pulumi.Input<string>;
|
|
327
372
|
/**
|
|
328
|
-
* The subsystem name for Coralogix.
|
|
329
|
-
*
|
|
330
|
-
* This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
|
|
373
|
+
* The subsystem name for Coralogix.
|
|
331
374
|
*/
|
|
332
375
|
subsystem?: pulumi.Input<string>;
|
|
333
376
|
/**
|
|
334
|
-
*
|
|
377
|
+
* The table name for Azure monitor.
|
|
378
|
+
*/
|
|
379
|
+
table?: pulumi.Input<string>;
|
|
380
|
+
/**
|
|
381
|
+
* Tag the integration, e.g. env=prod,region=europe.
|
|
335
382
|
*/
|
|
336
383
|
tags?: pulumi.Input<string>;
|
|
384
|
+
/**
|
|
385
|
+
* The tenant identifier for Azure monitor.
|
|
386
|
+
*/
|
|
387
|
+
tenantId?: pulumi.Input<string>;
|
|
337
388
|
/**
|
|
338
389
|
* Token used for authentication.
|
|
339
390
|
*/
|
package/integrationLog.js
CHANGED
|
@@ -6,53 +6,29 @@ exports.IntegrationLog = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* This resource allows you to create and manage third party log integrations for a CloudAMQP instance.
|
|
9
|
+
* This resource allows you to create and manage third party log integrations for a CloudAMQP instance.
|
|
10
|
+
* Once configured, the logs produced will be forward to corresponding integration.
|
|
10
11
|
*
|
|
11
12
|
* Only available for dedicated subscription plans.
|
|
12
13
|
*
|
|
13
|
-
* ## Argument Reference (cloudwatchlog)
|
|
14
|
-
*
|
|
15
|
-
* Cloudwatch argument reference and example. Create an IAM user with programmatic access and the following permissions:
|
|
16
|
-
*
|
|
17
|
-
* * CreateLogGroup
|
|
18
|
-
* * CreateLogStream
|
|
19
|
-
* * DescribeLogGroups
|
|
20
|
-
* * DescribeLogStreams
|
|
21
|
-
* * PutLogEvents
|
|
22
|
-
*
|
|
23
|
-
* ## Integration service reference
|
|
24
|
-
*
|
|
25
|
-
* Valid names for third party log integration.
|
|
26
|
-
*
|
|
27
|
-
* | Name | Description |
|
|
28
|
-
* |------------|---------------------------------------------------------------|
|
|
29
|
-
* | cloudwatchlog | Create a IAM with programmatic access. |
|
|
30
|
-
* | logentries | Create a Logentries token at https://logentries.com/app#/add-log/manual |
|
|
31
|
-
* | loggly | Create a Loggly token at https://your-company}.loggly.com/tokens |
|
|
32
|
-
* | papertrail | Create a Papertrail endpoint https://papertrailapp.com/systems/setup |
|
|
33
|
-
* | splunk | Create a HTTP Event Collector token at `https://<your-splunk>.cloud.splunk.com/en-US/manager/search/http-eventcollector` |
|
|
34
|
-
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
35
|
-
* | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
|
|
36
|
-
* | scalyr | Create a Log write token at https://app.scalyr.com/keys |
|
|
37
|
-
* | coralogix | Create Send-Your-Data API key https://coralogix.com/docs/send-your-data-api-key/ |
|
|
38
|
-
*
|
|
39
14
|
* ## Integration Type reference
|
|
40
15
|
*
|
|
41
|
-
* Valid arguments for third party log integrations.
|
|
16
|
+
* Valid arguments for third party log integrations. See more information at [docs.cloudamqp.com](https://docs.cloudamqp.com/cloudamqp_api.html#add-log-integration)
|
|
42
17
|
*
|
|
43
18
|
* Required arguments for all integrations: name
|
|
44
19
|
*
|
|
45
|
-
* |
|
|
20
|
+
* | Integration | name | Required arguments |
|
|
46
21
|
* | ---- | ---- | ---- |
|
|
22
|
+
* | Azure monitor | azureMonitor | tenant_id, application_id, application_secret, dce_uri, table, dcrId |
|
|
47
23
|
* | CloudWatch | cloudwatchlog | access_key_id, secret_access_key, region |
|
|
24
|
+
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
25
|
+
* | Data Dog | datadog | region, api_keys, tags |
|
|
48
26
|
* | Log Entries | logentries | token |
|
|
49
27
|
* | Loggly | loggly | token |
|
|
50
28
|
* | Papertrail | papertrail | url |
|
|
29
|
+
* | Scalyr | scalyr | token, host |
|
|
51
30
|
* | Splunk | splunk | token, host_port, sourcetype |
|
|
52
|
-
* | Data Dog | datadog | region, api_keys, tags |
|
|
53
31
|
* | Stackdriver | stackdriver | credentials |
|
|
54
|
-
* | Scalyr | scalyr | token, host |
|
|
55
|
-
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
56
32
|
*
|
|
57
33
|
* ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, clientEmail
|
|
58
34
|
*
|
|
@@ -99,8 +75,12 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
99
75
|
resourceInputs["accessKeyId"] = state ? state.accessKeyId : undefined;
|
|
100
76
|
resourceInputs["apiKey"] = state ? state.apiKey : undefined;
|
|
101
77
|
resourceInputs["application"] = state ? state.application : undefined;
|
|
78
|
+
resourceInputs["applicationId"] = state ? state.applicationId : undefined;
|
|
79
|
+
resourceInputs["applicationSecret"] = state ? state.applicationSecret : undefined;
|
|
102
80
|
resourceInputs["clientEmail"] = state ? state.clientEmail : undefined;
|
|
103
81
|
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
82
|
+
resourceInputs["dceUri"] = state ? state.dceUri : undefined;
|
|
83
|
+
resourceInputs["dcrId"] = state ? state.dcrId : undefined;
|
|
104
84
|
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
105
85
|
resourceInputs["host"] = state ? state.host : undefined;
|
|
106
86
|
resourceInputs["hostPort"] = state ? state.hostPort : undefined;
|
|
@@ -113,7 +93,9 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
113
93
|
resourceInputs["secretAccessKey"] = state ? state.secretAccessKey : undefined;
|
|
114
94
|
resourceInputs["sourcetype"] = state ? state.sourcetype : undefined;
|
|
115
95
|
resourceInputs["subsystem"] = state ? state.subsystem : undefined;
|
|
96
|
+
resourceInputs["table"] = state ? state.table : undefined;
|
|
116
97
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
98
|
+
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
|
|
117
99
|
resourceInputs["token"] = state ? state.token : undefined;
|
|
118
100
|
resourceInputs["url"] = state ? state.url : undefined;
|
|
119
101
|
}
|
|
@@ -125,8 +107,12 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
125
107
|
resourceInputs["accessKeyId"] = (args === null || args === void 0 ? void 0 : args.accessKeyId) ? pulumi.secret(args.accessKeyId) : undefined;
|
|
126
108
|
resourceInputs["apiKey"] = (args === null || args === void 0 ? void 0 : args.apiKey) ? pulumi.secret(args.apiKey) : undefined;
|
|
127
109
|
resourceInputs["application"] = args ? args.application : undefined;
|
|
110
|
+
resourceInputs["applicationId"] = args ? args.applicationId : undefined;
|
|
111
|
+
resourceInputs["applicationSecret"] = (args === null || args === void 0 ? void 0 : args.applicationSecret) ? pulumi.secret(args.applicationSecret) : undefined;
|
|
128
112
|
resourceInputs["clientEmail"] = args ? args.clientEmail : undefined;
|
|
129
113
|
resourceInputs["credentials"] = (args === null || args === void 0 ? void 0 : args.credentials) ? pulumi.secret(args.credentials) : undefined;
|
|
114
|
+
resourceInputs["dceUri"] = args ? args.dceUri : undefined;
|
|
115
|
+
resourceInputs["dcrId"] = args ? args.dcrId : undefined;
|
|
130
116
|
resourceInputs["endpoint"] = args ? args.endpoint : undefined;
|
|
131
117
|
resourceInputs["host"] = args ? args.host : undefined;
|
|
132
118
|
resourceInputs["hostPort"] = args ? args.hostPort : undefined;
|
|
@@ -139,12 +125,14 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
139
125
|
resourceInputs["secretAccessKey"] = (args === null || args === void 0 ? void 0 : args.secretAccessKey) ? pulumi.secret(args.secretAccessKey) : undefined;
|
|
140
126
|
resourceInputs["sourcetype"] = args ? args.sourcetype : undefined;
|
|
141
127
|
resourceInputs["subsystem"] = args ? args.subsystem : undefined;
|
|
128
|
+
resourceInputs["table"] = args ? args.table : undefined;
|
|
142
129
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
130
|
+
resourceInputs["tenantId"] = args ? args.tenantId : undefined;
|
|
143
131
|
resourceInputs["token"] = (args === null || args === void 0 ? void 0 : args.token) ? pulumi.secret(args.token) : undefined;
|
|
144
132
|
resourceInputs["url"] = args ? args.url : undefined;
|
|
145
133
|
}
|
|
146
134
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
147
|
-
const secretOpts = { additionalSecretOutputs: ["accessKeyId", "apiKey", "credentials", "privateKey", "privateKeyId", "secretAccessKey", "token"] };
|
|
135
|
+
const secretOpts = { additionalSecretOutputs: ["accessKeyId", "apiKey", "applicationSecret", "credentials", "privateKey", "privateKeyId", "secretAccessKey", "token"] };
|
|
148
136
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
149
137
|
super(IntegrationLog.__pulumiType, name, resourceInputs, opts);
|
|
150
138
|
}
|
package/integrationLog.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrationLog.js","sourceRoot":"","sources":["../integrationLog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"integrationLog.js","sourceRoot":"","sources":["../integrationLog.ts"],"names":[],"mappings":"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"}
|
package/notification.d.ts
CHANGED
|
@@ -6,24 +6,51 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
9
|
+
* <details>
|
|
10
|
+
* <summary>
|
|
11
|
+
* <b>Email recipient</b>
|
|
12
|
+
* </summary>
|
|
13
|
+
*
|
|
9
14
|
* ```typescript
|
|
10
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
16
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
12
17
|
*
|
|
13
|
-
* // New recipient to receieve notifications
|
|
14
18
|
* const emailRecipient = new cloudamqp.Notification("emailRecipient", {
|
|
15
19
|
* instanceId: cloudamqp_instance.instance.id,
|
|
16
20
|
* type: "email",
|
|
17
21
|
* value: "alarm@example.com",
|
|
18
22
|
* });
|
|
19
|
-
*
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* </details>
|
|
26
|
+
*
|
|
27
|
+
* <details>
|
|
28
|
+
* <summary>
|
|
29
|
+
* <b>OpsGenie recipient</b>
|
|
30
|
+
* </summary>
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
35
|
+
*
|
|
36
|
+
* const opsgenieRecipient = new cloudamqp.Notification("opsgenieRecipient", {
|
|
20
37
|
* instanceId: cloudamqp_instance.instance.id,
|
|
21
|
-
* type: "
|
|
22
|
-
* value: "<
|
|
23
|
-
* options: {
|
|
24
|
-
* rk: "ROUTINGKEY",
|
|
25
|
-
* },
|
|
38
|
+
* type: "opsgenie",
|
|
39
|
+
* value: "<api-key>",
|
|
26
40
|
* });
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* </details>
|
|
44
|
+
*
|
|
45
|
+
* <details>
|
|
46
|
+
* <summary>
|
|
47
|
+
* <b>Pagerduty recipient</b>
|
|
48
|
+
* </summary>
|
|
49
|
+
*
|
|
50
|
+
* ```typescript
|
|
51
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
52
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
53
|
+
*
|
|
27
54
|
* const pagerdutyRecipient = new cloudamqp.Notification("pagerdutyRecipient", {
|
|
28
55
|
* instanceId: cloudamqp_instance.instance.id,
|
|
29
56
|
* type: "pagerduty",
|
|
@@ -33,24 +60,102 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
33
60
|
* },
|
|
34
61
|
* });
|
|
35
62
|
* ```
|
|
63
|
+
*
|
|
64
|
+
* </details>
|
|
65
|
+
*
|
|
66
|
+
* <details>
|
|
67
|
+
* <summary>
|
|
68
|
+
* <b>Signl4 recipient</b>
|
|
69
|
+
* </summary>
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
74
|
+
*
|
|
75
|
+
* const signl4Recipient = new cloudamqp.Notification("signl4Recipient", {
|
|
76
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
77
|
+
* type: "signl4",
|
|
78
|
+
* value: "<team-secret>",
|
|
79
|
+
* });
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* </details>
|
|
83
|
+
*
|
|
84
|
+
* <details>
|
|
85
|
+
* <summary>
|
|
86
|
+
* <b>Teams recipient</b>
|
|
87
|
+
* </summary>
|
|
88
|
+
*
|
|
89
|
+
* ```typescript
|
|
90
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
91
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
92
|
+
*
|
|
93
|
+
* const teamsRecipient = new cloudamqp.Notification("teamsRecipient", {
|
|
94
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
95
|
+
* type: "teams",
|
|
96
|
+
* value: "<teams-webhook-url>",
|
|
97
|
+
* });
|
|
98
|
+
* ```
|
|
99
|
+
*
|
|
100
|
+
* </details>
|
|
101
|
+
*
|
|
102
|
+
* <details>
|
|
103
|
+
* <summary>
|
|
104
|
+
* <b>Victorops recipient</b>
|
|
105
|
+
* </summary>
|
|
106
|
+
*
|
|
107
|
+
* ```typescript
|
|
108
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
109
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
110
|
+
*
|
|
111
|
+
* const victoropsRecipient = new cloudamqp.Notification("victoropsRecipient", {
|
|
112
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
113
|
+
* type: "victorops",
|
|
114
|
+
* value: "<integration-key>",
|
|
115
|
+
* options: {
|
|
116
|
+
* rk: "ROUTINGKEY",
|
|
117
|
+
* },
|
|
118
|
+
* });
|
|
119
|
+
* ```
|
|
120
|
+
*
|
|
121
|
+
* </details>
|
|
122
|
+
*
|
|
123
|
+
* <details>
|
|
124
|
+
* <summary>
|
|
125
|
+
* <b>Webhook recipient</b>
|
|
126
|
+
* </summary>
|
|
127
|
+
*
|
|
128
|
+
* ```typescript
|
|
129
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
130
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
131
|
+
*
|
|
132
|
+
* const webhookRecipient = new cloudamqp.Notification("webhookRecipient", {
|
|
133
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
134
|
+
* type: "webhook",
|
|
135
|
+
* value: "<webhook-url>",
|
|
136
|
+
* });
|
|
137
|
+
* ```
|
|
138
|
+
*
|
|
139
|
+
* </details>
|
|
36
140
|
* ## Notification Type reference
|
|
37
141
|
*
|
|
38
142
|
* Valid options for notification type.
|
|
39
143
|
*
|
|
40
144
|
* * email
|
|
41
|
-
* * webhook
|
|
42
|
-
* * pagerduty
|
|
43
|
-
* * victorops
|
|
44
145
|
* * opsgenie
|
|
45
146
|
* * opsgenie-eu
|
|
147
|
+
* * pagerduty
|
|
148
|
+
* * signl4
|
|
46
149
|
* * slack
|
|
47
150
|
* * teams
|
|
151
|
+
* * victorops
|
|
152
|
+
* * webhook
|
|
48
153
|
*
|
|
49
154
|
* ## Options parameter
|
|
50
155
|
*
|
|
51
|
-
* | Type | Options | Description
|
|
52
|
-
*
|
|
53
|
-
* | Victorops | rk | Routing key to route alarm notification
|
|
156
|
+
* | Type | Options | Description | Note |
|
|
157
|
+
* |---|---|---|---|
|
|
158
|
+
* | Victorops | rk | Routing key to route alarm notification | - |
|
|
54
159
|
* | PagerDuty | dedupkey | Default the dedup key for PagerDuty is generated depending on what alarm has triggered, but here you can set what `dedup` key to use so even if the same alarm is triggered for different resources you only get one notification. Leave blank to use the generated dedup key. | If multiple alarms are triggered using this recipient, since they all share `dedup` key only the first alarm will be shown in PagerDuty |
|
|
55
160
|
*
|
|
56
161
|
* ## Dependency
|
package/notification.js
CHANGED
|
@@ -12,24 +12,51 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
+
* <details>
|
|
16
|
+
* <summary>
|
|
17
|
+
* <b>Email recipient</b>
|
|
18
|
+
* </summary>
|
|
19
|
+
*
|
|
15
20
|
* ```typescript
|
|
16
21
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
22
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
18
23
|
*
|
|
19
|
-
* // New recipient to receieve notifications
|
|
20
24
|
* const emailRecipient = new cloudamqp.Notification("emailRecipient", {
|
|
21
25
|
* instanceId: cloudamqp_instance.instance.id,
|
|
22
26
|
* type: "email",
|
|
23
27
|
* value: "alarm@example.com",
|
|
24
28
|
* });
|
|
25
|
-
*
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* </details>
|
|
32
|
+
*
|
|
33
|
+
* <details>
|
|
34
|
+
* <summary>
|
|
35
|
+
* <b>OpsGenie recipient</b>
|
|
36
|
+
* </summary>
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
41
|
+
*
|
|
42
|
+
* const opsgenieRecipient = new cloudamqp.Notification("opsgenieRecipient", {
|
|
26
43
|
* instanceId: cloudamqp_instance.instance.id,
|
|
27
|
-
* type: "
|
|
28
|
-
* value: "<
|
|
29
|
-
* options: {
|
|
30
|
-
* rk: "ROUTINGKEY",
|
|
31
|
-
* },
|
|
44
|
+
* type: "opsgenie",
|
|
45
|
+
* value: "<api-key>",
|
|
32
46
|
* });
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* </details>
|
|
50
|
+
*
|
|
51
|
+
* <details>
|
|
52
|
+
* <summary>
|
|
53
|
+
* <b>Pagerduty recipient</b>
|
|
54
|
+
* </summary>
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
59
|
+
*
|
|
33
60
|
* const pagerdutyRecipient = new cloudamqp.Notification("pagerdutyRecipient", {
|
|
34
61
|
* instanceId: cloudamqp_instance.instance.id,
|
|
35
62
|
* type: "pagerduty",
|
|
@@ -39,24 +66,102 @@ const utilities = require("./utilities");
|
|
|
39
66
|
* },
|
|
40
67
|
* });
|
|
41
68
|
* ```
|
|
69
|
+
*
|
|
70
|
+
* </details>
|
|
71
|
+
*
|
|
72
|
+
* <details>
|
|
73
|
+
* <summary>
|
|
74
|
+
* <b>Signl4 recipient</b>
|
|
75
|
+
* </summary>
|
|
76
|
+
*
|
|
77
|
+
* ```typescript
|
|
78
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
79
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
80
|
+
*
|
|
81
|
+
* const signl4Recipient = new cloudamqp.Notification("signl4Recipient", {
|
|
82
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
83
|
+
* type: "signl4",
|
|
84
|
+
* value: "<team-secret>",
|
|
85
|
+
* });
|
|
86
|
+
* ```
|
|
87
|
+
*
|
|
88
|
+
* </details>
|
|
89
|
+
*
|
|
90
|
+
* <details>
|
|
91
|
+
* <summary>
|
|
92
|
+
* <b>Teams recipient</b>
|
|
93
|
+
* </summary>
|
|
94
|
+
*
|
|
95
|
+
* ```typescript
|
|
96
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
97
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
98
|
+
*
|
|
99
|
+
* const teamsRecipient = new cloudamqp.Notification("teamsRecipient", {
|
|
100
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
101
|
+
* type: "teams",
|
|
102
|
+
* value: "<teams-webhook-url>",
|
|
103
|
+
* });
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* </details>
|
|
107
|
+
*
|
|
108
|
+
* <details>
|
|
109
|
+
* <summary>
|
|
110
|
+
* <b>Victorops recipient</b>
|
|
111
|
+
* </summary>
|
|
112
|
+
*
|
|
113
|
+
* ```typescript
|
|
114
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
115
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
116
|
+
*
|
|
117
|
+
* const victoropsRecipient = new cloudamqp.Notification("victoropsRecipient", {
|
|
118
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
119
|
+
* type: "victorops",
|
|
120
|
+
* value: "<integration-key>",
|
|
121
|
+
* options: {
|
|
122
|
+
* rk: "ROUTINGKEY",
|
|
123
|
+
* },
|
|
124
|
+
* });
|
|
125
|
+
* ```
|
|
126
|
+
*
|
|
127
|
+
* </details>
|
|
128
|
+
*
|
|
129
|
+
* <details>
|
|
130
|
+
* <summary>
|
|
131
|
+
* <b>Webhook recipient</b>
|
|
132
|
+
* </summary>
|
|
133
|
+
*
|
|
134
|
+
* ```typescript
|
|
135
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
136
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
137
|
+
*
|
|
138
|
+
* const webhookRecipient = new cloudamqp.Notification("webhookRecipient", {
|
|
139
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
140
|
+
* type: "webhook",
|
|
141
|
+
* value: "<webhook-url>",
|
|
142
|
+
* });
|
|
143
|
+
* ```
|
|
144
|
+
*
|
|
145
|
+
* </details>
|
|
42
146
|
* ## Notification Type reference
|
|
43
147
|
*
|
|
44
148
|
* Valid options for notification type.
|
|
45
149
|
*
|
|
46
150
|
* * email
|
|
47
|
-
* * webhook
|
|
48
|
-
* * pagerduty
|
|
49
|
-
* * victorops
|
|
50
151
|
* * opsgenie
|
|
51
152
|
* * opsgenie-eu
|
|
153
|
+
* * pagerduty
|
|
154
|
+
* * signl4
|
|
52
155
|
* * slack
|
|
53
156
|
* * teams
|
|
157
|
+
* * victorops
|
|
158
|
+
* * webhook
|
|
54
159
|
*
|
|
55
160
|
* ## Options parameter
|
|
56
161
|
*
|
|
57
|
-
* | Type | Options | Description
|
|
58
|
-
*
|
|
59
|
-
* | Victorops | rk | Routing key to route alarm notification
|
|
162
|
+
* | Type | Options | Description | Note |
|
|
163
|
+
* |---|---|---|---|
|
|
164
|
+
* | Victorops | rk | Routing key to route alarm notification | - |
|
|
60
165
|
* | PagerDuty | dedupkey | Default the dedup key for PagerDuty is generated depending on what alarm has triggered, but here you can set what `dedup` key to use so even if the same alarm is triggered for different resources you only get one notification. Leave blank to use the generated dedup key. | If multiple alarms are triggered using this recipient, since they all share `dedup` key only the first alarm will be shown in PagerDuty |
|
|
61
166
|
*
|
|
62
167
|
* ## Dependency
|
package/notification.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.js","sourceRoot":"","sources":["../notification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"notification.js","sourceRoot":"","sources":["../notification.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/plugin.d.ts
CHANGED
|
@@ -29,25 +29,23 @@ export declare class Plugin extends pulumi.CustomResource {
|
|
|
29
29
|
*/
|
|
30
30
|
readonly description: pulumi.Output<string>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* If the plugin is enabled
|
|
33
33
|
*/
|
|
34
34
|
readonly enabled: pulumi.Output<boolean>;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Instance identifier
|
|
37
37
|
*/
|
|
38
38
|
readonly instanceId: pulumi.Output<number>;
|
|
39
39
|
/**
|
|
40
|
-
* The name of the
|
|
40
|
+
* The name of the plugin
|
|
41
41
|
*/
|
|
42
42
|
readonly name: pulumi.Output<string>;
|
|
43
43
|
/**
|
|
44
|
-
* Configurable sleep time
|
|
45
|
-
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
44
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
46
45
|
*/
|
|
47
46
|
readonly sleep: pulumi.Output<number | undefined>;
|
|
48
47
|
/**
|
|
49
|
-
* Configurable timeout time
|
|
50
|
-
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
48
|
+
* Configurable timeout time in seconds for plugins
|
|
51
49
|
*/
|
|
52
50
|
readonly timeout: pulumi.Output<number | undefined>;
|
|
53
51
|
/**
|
|
@@ -72,25 +70,23 @@ export interface PluginState {
|
|
|
72
70
|
*/
|
|
73
71
|
description?: pulumi.Input<string>;
|
|
74
72
|
/**
|
|
75
|
-
*
|
|
73
|
+
* If the plugin is enabled
|
|
76
74
|
*/
|
|
77
75
|
enabled?: pulumi.Input<boolean>;
|
|
78
76
|
/**
|
|
79
|
-
*
|
|
77
|
+
* Instance identifier
|
|
80
78
|
*/
|
|
81
79
|
instanceId?: pulumi.Input<number>;
|
|
82
80
|
/**
|
|
83
|
-
* The name of the
|
|
81
|
+
* The name of the plugin
|
|
84
82
|
*/
|
|
85
83
|
name?: pulumi.Input<string>;
|
|
86
84
|
/**
|
|
87
|
-
* Configurable sleep time
|
|
88
|
-
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
85
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
89
86
|
*/
|
|
90
87
|
sleep?: pulumi.Input<number>;
|
|
91
88
|
/**
|
|
92
|
-
* Configurable timeout time
|
|
93
|
-
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
89
|
+
* Configurable timeout time in seconds for plugins
|
|
94
90
|
*/
|
|
95
91
|
timeout?: pulumi.Input<number>;
|
|
96
92
|
/**
|
|
@@ -103,25 +99,23 @@ export interface PluginState {
|
|
|
103
99
|
*/
|
|
104
100
|
export interface PluginArgs {
|
|
105
101
|
/**
|
|
106
|
-
*
|
|
102
|
+
* If the plugin is enabled
|
|
107
103
|
*/
|
|
108
104
|
enabled: pulumi.Input<boolean>;
|
|
109
105
|
/**
|
|
110
|
-
*
|
|
106
|
+
* Instance identifier
|
|
111
107
|
*/
|
|
112
108
|
instanceId: pulumi.Input<number>;
|
|
113
109
|
/**
|
|
114
|
-
* The name of the
|
|
110
|
+
* The name of the plugin
|
|
115
111
|
*/
|
|
116
112
|
name?: pulumi.Input<string>;
|
|
117
113
|
/**
|
|
118
|
-
* Configurable sleep time
|
|
119
|
-
* about plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
114
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
120
115
|
*/
|
|
121
116
|
sleep?: pulumi.Input<number>;
|
|
122
117
|
/**
|
|
123
|
-
* Configurable timeout time
|
|
124
|
-
* information about plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
118
|
+
* Configurable timeout time in seconds for plugins
|
|
125
119
|
*/
|
|
126
120
|
timeout?: pulumi.Input<number>;
|
|
127
121
|
}
|
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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"}
|
package/pluginCommunity.d.ts
CHANGED
|
@@ -29,15 +29,15 @@ export declare class PluginCommunity extends pulumi.CustomResource {
|
|
|
29
29
|
*/
|
|
30
30
|
readonly description: pulumi.Output<string>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* If the plugin is enabled
|
|
33
33
|
*/
|
|
34
34
|
readonly enabled: pulumi.Output<boolean>;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Instance identifier
|
|
37
37
|
*/
|
|
38
38
|
readonly instanceId: pulumi.Output<number>;
|
|
39
39
|
/**
|
|
40
|
-
* The name of the
|
|
40
|
+
* The name of the plugin
|
|
41
41
|
*/
|
|
42
42
|
readonly name: pulumi.Output<string>;
|
|
43
43
|
/**
|
|
@@ -45,13 +45,11 @@ export declare class PluginCommunity extends pulumi.CustomResource {
|
|
|
45
45
|
*/
|
|
46
46
|
readonly require: pulumi.Output<string>;
|
|
47
47
|
/**
|
|
48
|
-
* Configurable sleep time
|
|
49
|
-
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
48
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
50
49
|
*/
|
|
51
50
|
readonly sleep: pulumi.Output<number | undefined>;
|
|
52
51
|
/**
|
|
53
|
-
* Configurable timeout time
|
|
54
|
-
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
52
|
+
* Configurable timeout time in seconds for plugins
|
|
55
53
|
*/
|
|
56
54
|
readonly timeout: pulumi.Output<number | undefined>;
|
|
57
55
|
/**
|
|
@@ -72,15 +70,15 @@ export interface PluginCommunityState {
|
|
|
72
70
|
*/
|
|
73
71
|
description?: pulumi.Input<string>;
|
|
74
72
|
/**
|
|
75
|
-
*
|
|
73
|
+
* If the plugin is enabled
|
|
76
74
|
*/
|
|
77
75
|
enabled?: pulumi.Input<boolean>;
|
|
78
76
|
/**
|
|
79
|
-
*
|
|
77
|
+
* Instance identifier
|
|
80
78
|
*/
|
|
81
79
|
instanceId?: pulumi.Input<number>;
|
|
82
80
|
/**
|
|
83
|
-
* The name of the
|
|
81
|
+
* The name of the plugin
|
|
84
82
|
*/
|
|
85
83
|
name?: pulumi.Input<string>;
|
|
86
84
|
/**
|
|
@@ -88,13 +86,11 @@ export interface PluginCommunityState {
|
|
|
88
86
|
*/
|
|
89
87
|
require?: pulumi.Input<string>;
|
|
90
88
|
/**
|
|
91
|
-
* Configurable sleep time
|
|
92
|
-
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
89
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
93
90
|
*/
|
|
94
91
|
sleep?: pulumi.Input<number>;
|
|
95
92
|
/**
|
|
96
|
-
* Configurable timeout time
|
|
97
|
-
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
93
|
+
* Configurable timeout time in seconds for plugins
|
|
98
94
|
*/
|
|
99
95
|
timeout?: pulumi.Input<number>;
|
|
100
96
|
}
|
|
@@ -103,25 +99,23 @@ export interface PluginCommunityState {
|
|
|
103
99
|
*/
|
|
104
100
|
export interface PluginCommunityArgs {
|
|
105
101
|
/**
|
|
106
|
-
*
|
|
102
|
+
* If the plugin is enabled
|
|
107
103
|
*/
|
|
108
104
|
enabled: pulumi.Input<boolean>;
|
|
109
105
|
/**
|
|
110
|
-
*
|
|
106
|
+
* Instance identifier
|
|
111
107
|
*/
|
|
112
108
|
instanceId: pulumi.Input<number>;
|
|
113
109
|
/**
|
|
114
|
-
* The name of the
|
|
110
|
+
* The name of the plugin
|
|
115
111
|
*/
|
|
116
112
|
name?: pulumi.Input<string>;
|
|
117
113
|
/**
|
|
118
|
-
* Configurable sleep time
|
|
119
|
-
* about community plugins. Default set to 10 seconds. *Available from v1.29.0*
|
|
114
|
+
* Configurable sleep time in seconds between retries for plugins
|
|
120
115
|
*/
|
|
121
116
|
sleep?: pulumi.Input<number>;
|
|
122
117
|
/**
|
|
123
|
-
* Configurable timeout time
|
|
124
|
-
* information about community plugins. Default set to 1800 seconds. *Available from v1.29.0*
|
|
118
|
+
* Configurable timeout time in seconds for plugins
|
|
125
119
|
*/
|
|
126
120
|
timeout?: pulumi.Input<number>;
|
|
127
121
|
}
|
package/pluginCommunity.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pluginCommunity.js","sourceRoot":"","sources":["../pluginCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"pluginCommunity.js","sourceRoot":"","sources":["../pluginCommunity.ts"],"names":[],"mappings":"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"}
|
package/securityFirewall.d.ts
CHANGED
|
@@ -27,23 +27,16 @@ export declare class SecurityFirewall extends pulumi.CustomResource {
|
|
|
27
27
|
*/
|
|
28
28
|
static isInstance(obj: any): obj is SecurityFirewall;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Instance identifier
|
|
31
31
|
*/
|
|
32
32
|
readonly instanceId: pulumi.Output<number>;
|
|
33
|
-
/**
|
|
34
|
-
* An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
35
|
-
*/
|
|
36
33
|
readonly rules: pulumi.Output<outputs.SecurityFirewallRule[]>;
|
|
37
34
|
/**
|
|
38
|
-
* Configurable sleep time in seconds between retries for firewall configuration
|
|
35
|
+
* Configurable sleep time in seconds between retries for firewall configuration
|
|
39
36
|
*/
|
|
40
37
|
readonly sleep: pulumi.Output<number | undefined>;
|
|
41
38
|
/**
|
|
42
|
-
* Configurable timeout time in seconds for firewall configuration
|
|
43
|
-
*
|
|
44
|
-
* ___
|
|
45
|
-
*
|
|
46
|
-
* The `rules` block consists of:
|
|
39
|
+
* Configurable timeout time in seconds for firewall configuration
|
|
47
40
|
*/
|
|
48
41
|
readonly timeout: pulumi.Output<number | undefined>;
|
|
49
42
|
/**
|
|
@@ -60,23 +53,16 @@ export declare class SecurityFirewall extends pulumi.CustomResource {
|
|
|
60
53
|
*/
|
|
61
54
|
export interface SecurityFirewallState {
|
|
62
55
|
/**
|
|
63
|
-
*
|
|
56
|
+
* Instance identifier
|
|
64
57
|
*/
|
|
65
58
|
instanceId?: pulumi.Input<number>;
|
|
66
|
-
/**
|
|
67
|
-
* An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
68
|
-
*/
|
|
69
59
|
rules?: pulumi.Input<pulumi.Input<inputs.SecurityFirewallRule>[]>;
|
|
70
60
|
/**
|
|
71
|
-
* Configurable sleep time in seconds between retries for firewall configuration
|
|
61
|
+
* Configurable sleep time in seconds between retries for firewall configuration
|
|
72
62
|
*/
|
|
73
63
|
sleep?: pulumi.Input<number>;
|
|
74
64
|
/**
|
|
75
|
-
* Configurable timeout time in seconds for firewall configuration
|
|
76
|
-
*
|
|
77
|
-
* ___
|
|
78
|
-
*
|
|
79
|
-
* The `rules` block consists of:
|
|
65
|
+
* Configurable timeout time in seconds for firewall configuration
|
|
80
66
|
*/
|
|
81
67
|
timeout?: pulumi.Input<number>;
|
|
82
68
|
}
|
|
@@ -85,23 +71,16 @@ export interface SecurityFirewallState {
|
|
|
85
71
|
*/
|
|
86
72
|
export interface SecurityFirewallArgs {
|
|
87
73
|
/**
|
|
88
|
-
*
|
|
74
|
+
* Instance identifier
|
|
89
75
|
*/
|
|
90
76
|
instanceId: pulumi.Input<number>;
|
|
91
|
-
/**
|
|
92
|
-
* An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
93
|
-
*/
|
|
94
77
|
rules: pulumi.Input<pulumi.Input<inputs.SecurityFirewallRule>[]>;
|
|
95
78
|
/**
|
|
96
|
-
* Configurable sleep time in seconds between retries for firewall configuration
|
|
79
|
+
* Configurable sleep time in seconds between retries for firewall configuration
|
|
97
80
|
*/
|
|
98
81
|
sleep?: pulumi.Input<number>;
|
|
99
82
|
/**
|
|
100
|
-
* Configurable timeout time in seconds for firewall configuration
|
|
101
|
-
*
|
|
102
|
-
* ___
|
|
103
|
-
*
|
|
104
|
-
* The `rules` block consists of:
|
|
83
|
+
* Configurable timeout time in seconds for firewall configuration
|
|
105
84
|
*/
|
|
106
85
|
timeout?: pulumi.Input<number>;
|
|
107
86
|
}
|
package/securityFirewall.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"securityFirewall.js","sourceRoot":"","sources":["../securityFirewall.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;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;
|
|
1
|
+
{"version":3,"file":"securityFirewall.js","sourceRoot":"","sources":["../securityFirewall.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;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;IAwBD,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,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,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;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,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,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,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;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;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;;AA1EL,4CA2EC;AA7DG,gBAAgB;AACO,6BAAY,GAAG,mDAAmD,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -17,42 +17,8 @@ export interface InstanceCopySetting {
|
|
|
17
17
|
subscriptionId: pulumi.Input<string>;
|
|
18
18
|
}
|
|
19
19
|
export interface SecurityFirewallRule {
|
|
20
|
-
/**
|
|
21
|
-
* Description name of the rule. e.g. Default.
|
|
22
|
-
*
|
|
23
|
-
* Pre-defined services for RabbitMQ:
|
|
24
|
-
*
|
|
25
|
-
* | Service name | Port |
|
|
26
|
-
* |--------------|-------|
|
|
27
|
-
* | AMQP | 5672 |
|
|
28
|
-
* | AMQPS | 5671 |
|
|
29
|
-
* | HTTPS | 443 |
|
|
30
|
-
* | MQTT | 1883 |
|
|
31
|
-
* | MQTTS | 8883 |
|
|
32
|
-
* | STOMP | 61613 |
|
|
33
|
-
* | STOMPS | 61614 |
|
|
34
|
-
* | STREAM | 5552 |
|
|
35
|
-
* | STREAM_SSL | 5551 |
|
|
36
|
-
*
|
|
37
|
-
* Pre-defined services for LavinMQ:
|
|
38
|
-
*
|
|
39
|
-
* | Service name | Port |
|
|
40
|
-
* |--------------|-------|
|
|
41
|
-
* | AMQP | 5672 |
|
|
42
|
-
* | AMQPS | 5671 |
|
|
43
|
-
* | HTTPS | 443 |
|
|
44
|
-
*/
|
|
45
20
|
description?: pulumi.Input<string>;
|
|
46
|
-
/**
|
|
47
|
-
* CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
48
|
-
*/
|
|
49
21
|
ip: pulumi.Input<string>;
|
|
50
|
-
/**
|
|
51
|
-
* Custom ports to be opened
|
|
52
|
-
*/
|
|
53
22
|
ports?: pulumi.Input<pulumi.Input<number>[]>;
|
|
54
|
-
/**
|
|
55
|
-
* Pre-defined service ports, see table below
|
|
56
|
-
*/
|
|
57
23
|
services?: pulumi.Input<pulumi.Input<string>[]>;
|
|
58
24
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -57,42 +57,8 @@ export interface InstanceCopySetting {
|
|
|
57
57
|
subscriptionId: string;
|
|
58
58
|
}
|
|
59
59
|
export interface SecurityFirewallRule {
|
|
60
|
-
/**
|
|
61
|
-
* Description name of the rule. e.g. Default.
|
|
62
|
-
*
|
|
63
|
-
* Pre-defined services for RabbitMQ:
|
|
64
|
-
*
|
|
65
|
-
* | Service name | Port |
|
|
66
|
-
* |--------------|-------|
|
|
67
|
-
* | AMQP | 5672 |
|
|
68
|
-
* | AMQPS | 5671 |
|
|
69
|
-
* | HTTPS | 443 |
|
|
70
|
-
* | MQTT | 1883 |
|
|
71
|
-
* | MQTTS | 8883 |
|
|
72
|
-
* | STOMP | 61613 |
|
|
73
|
-
* | STOMPS | 61614 |
|
|
74
|
-
* | STREAM | 5552 |
|
|
75
|
-
* | STREAM_SSL | 5551 |
|
|
76
|
-
*
|
|
77
|
-
* Pre-defined services for LavinMQ:
|
|
78
|
-
*
|
|
79
|
-
* | Service name | Port |
|
|
80
|
-
* |--------------|-------|
|
|
81
|
-
* | AMQP | 5672 |
|
|
82
|
-
* | AMQPS | 5671 |
|
|
83
|
-
* | HTTPS | 443 |
|
|
84
|
-
*/
|
|
85
60
|
description?: string;
|
|
86
|
-
/**
|
|
87
|
-
* CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
88
|
-
*/
|
|
89
61
|
ip: string;
|
|
90
|
-
/**
|
|
91
|
-
* Custom ports to be opened
|
|
92
|
-
*/
|
|
93
62
|
ports?: number[];
|
|
94
|
-
/**
|
|
95
|
-
* Pre-defined service ports, see table below
|
|
96
|
-
*/
|
|
97
63
|
services?: string[];
|
|
98
64
|
}
|