@pulumi/cloudamqp 3.17.1 → 3.17.2
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 +41 -3
- package/integrationLog.js +8 -0
- package/integrationLog.js.map +1 -1
- package/package.json +1 -1
package/integrationLog.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
28
28
|
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
29
29
|
* | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
|
|
30
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/ |
|
|
31
32
|
*
|
|
32
33
|
* ## Integration Type reference
|
|
33
34
|
*
|
|
@@ -45,6 +46,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
45
46
|
* | Data Dog | datadog | region, api_keys, tags |
|
|
46
47
|
* | Stackdriver | stackdriver | credentials |
|
|
47
48
|
* | Scalyr | scalyr | token, host |
|
|
49
|
+
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
48
50
|
*
|
|
49
51
|
* ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, clientEmail
|
|
50
52
|
*
|
|
@@ -84,6 +86,10 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
84
86
|
* The API key.
|
|
85
87
|
*/
|
|
86
88
|
readonly apiKey: pulumi.Output<string | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
91
|
+
*/
|
|
92
|
+
readonly application: pulumi.Output<string | undefined>;
|
|
87
93
|
/**
|
|
88
94
|
* The client email registered for the integration service.
|
|
89
95
|
*/
|
|
@@ -92,6 +98,10 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
92
98
|
* Google Service Account private key credentials.
|
|
93
99
|
*/
|
|
94
100
|
readonly credentials: pulumi.Output<string | undefined>;
|
|
101
|
+
/**
|
|
102
|
+
* The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
|
|
103
|
+
*/
|
|
104
|
+
readonly endpoint: pulumi.Output<string | undefined>;
|
|
95
105
|
/**
|
|
96
106
|
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
97
107
|
*/
|
|
@@ -130,10 +140,14 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
130
140
|
readonly secretAccessKey: pulumi.Output<string | undefined>;
|
|
131
141
|
/**
|
|
132
142
|
* Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
143
|
+
*/
|
|
144
|
+
readonly sourcetype: pulumi.Output<string | undefined>;
|
|
145
|
+
/**
|
|
146
|
+
* The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
133
147
|
*
|
|
134
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.
|
|
135
149
|
*/
|
|
136
|
-
readonly
|
|
150
|
+
readonly subsystem: pulumi.Output<string | undefined>;
|
|
137
151
|
/**
|
|
138
152
|
* Tag the integration, e.g. env=prod, region=europe.
|
|
139
153
|
*/
|
|
@@ -167,6 +181,10 @@ export interface IntegrationLogState {
|
|
|
167
181
|
* The API key.
|
|
168
182
|
*/
|
|
169
183
|
apiKey?: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
186
|
+
*/
|
|
187
|
+
application?: pulumi.Input<string>;
|
|
170
188
|
/**
|
|
171
189
|
* The client email registered for the integration service.
|
|
172
190
|
*/
|
|
@@ -175,6 +193,10 @@ export interface IntegrationLogState {
|
|
|
175
193
|
* Google Service Account private key credentials.
|
|
176
194
|
*/
|
|
177
195
|
credentials?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
|
|
198
|
+
*/
|
|
199
|
+
endpoint?: pulumi.Input<string>;
|
|
178
200
|
/**
|
|
179
201
|
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
180
202
|
*/
|
|
@@ -213,10 +235,14 @@ export interface IntegrationLogState {
|
|
|
213
235
|
secretAccessKey?: pulumi.Input<string>;
|
|
214
236
|
/**
|
|
215
237
|
* Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
238
|
+
*/
|
|
239
|
+
sourcetype?: pulumi.Input<string>;
|
|
240
|
+
/**
|
|
241
|
+
* The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
216
242
|
*
|
|
217
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.
|
|
218
244
|
*/
|
|
219
|
-
|
|
245
|
+
subsystem?: pulumi.Input<string>;
|
|
220
246
|
/**
|
|
221
247
|
* Tag the integration, e.g. env=prod, region=europe.
|
|
222
248
|
*/
|
|
@@ -242,6 +268,10 @@ export interface IntegrationLogArgs {
|
|
|
242
268
|
* The API key.
|
|
243
269
|
*/
|
|
244
270
|
apiKey?: pulumi.Input<string>;
|
|
271
|
+
/**
|
|
272
|
+
* The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
273
|
+
*/
|
|
274
|
+
application?: pulumi.Input<string>;
|
|
245
275
|
/**
|
|
246
276
|
* The client email registered for the integration service.
|
|
247
277
|
*/
|
|
@@ -250,6 +280,10 @@ export interface IntegrationLogArgs {
|
|
|
250
280
|
* Google Service Account private key credentials.
|
|
251
281
|
*/
|
|
252
282
|
credentials?: pulumi.Input<string>;
|
|
283
|
+
/**
|
|
284
|
+
* The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
|
|
285
|
+
*/
|
|
286
|
+
endpoint?: pulumi.Input<string>;
|
|
253
287
|
/**
|
|
254
288
|
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
255
289
|
*/
|
|
@@ -288,10 +322,14 @@ export interface IntegrationLogArgs {
|
|
|
288
322
|
secretAccessKey?: pulumi.Input<string>;
|
|
289
323
|
/**
|
|
290
324
|
* Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
325
|
+
*/
|
|
326
|
+
sourcetype?: pulumi.Input<string>;
|
|
327
|
+
/**
|
|
328
|
+
* The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
|
|
291
329
|
*
|
|
292
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.
|
|
293
331
|
*/
|
|
294
|
-
|
|
332
|
+
subsystem?: pulumi.Input<string>;
|
|
295
333
|
/**
|
|
296
334
|
* Tag the integration, e.g. env=prod, region=europe.
|
|
297
335
|
*/
|
package/integrationLog.js
CHANGED
|
@@ -34,6 +34,7 @@ const utilities = require("./utilities");
|
|
|
34
34
|
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
35
35
|
* | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
|
|
36
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/ |
|
|
37
38
|
*
|
|
38
39
|
* ## Integration Type reference
|
|
39
40
|
*
|
|
@@ -51,6 +52,7 @@ const utilities = require("./utilities");
|
|
|
51
52
|
* | Data Dog | datadog | region, api_keys, tags |
|
|
52
53
|
* | Stackdriver | stackdriver | credentials |
|
|
53
54
|
* | Scalyr | scalyr | token, host |
|
|
55
|
+
* | Coralogix | coralogix | private_key, endpoint, application, subsystem |
|
|
54
56
|
*
|
|
55
57
|
* ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, clientEmail
|
|
56
58
|
*
|
|
@@ -96,8 +98,10 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
96
98
|
const state = argsOrState;
|
|
97
99
|
resourceInputs["accessKeyId"] = state ? state.accessKeyId : undefined;
|
|
98
100
|
resourceInputs["apiKey"] = state ? state.apiKey : undefined;
|
|
101
|
+
resourceInputs["application"] = state ? state.application : undefined;
|
|
99
102
|
resourceInputs["clientEmail"] = state ? state.clientEmail : undefined;
|
|
100
103
|
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
104
|
+
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
101
105
|
resourceInputs["host"] = state ? state.host : undefined;
|
|
102
106
|
resourceInputs["hostPort"] = state ? state.hostPort : undefined;
|
|
103
107
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
@@ -108,6 +112,7 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
108
112
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
109
113
|
resourceInputs["secretAccessKey"] = state ? state.secretAccessKey : undefined;
|
|
110
114
|
resourceInputs["sourcetype"] = state ? state.sourcetype : undefined;
|
|
115
|
+
resourceInputs["subsystem"] = state ? state.subsystem : undefined;
|
|
111
116
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
112
117
|
resourceInputs["token"] = state ? state.token : undefined;
|
|
113
118
|
resourceInputs["url"] = state ? state.url : undefined;
|
|
@@ -119,8 +124,10 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
119
124
|
}
|
|
120
125
|
resourceInputs["accessKeyId"] = (args === null || args === void 0 ? void 0 : args.accessKeyId) ? pulumi.secret(args.accessKeyId) : undefined;
|
|
121
126
|
resourceInputs["apiKey"] = (args === null || args === void 0 ? void 0 : args.apiKey) ? pulumi.secret(args.apiKey) : undefined;
|
|
127
|
+
resourceInputs["application"] = args ? args.application : undefined;
|
|
122
128
|
resourceInputs["clientEmail"] = args ? args.clientEmail : undefined;
|
|
123
129
|
resourceInputs["credentials"] = (args === null || args === void 0 ? void 0 : args.credentials) ? pulumi.secret(args.credentials) : undefined;
|
|
130
|
+
resourceInputs["endpoint"] = args ? args.endpoint : undefined;
|
|
124
131
|
resourceInputs["host"] = args ? args.host : undefined;
|
|
125
132
|
resourceInputs["hostPort"] = args ? args.hostPort : undefined;
|
|
126
133
|
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
@@ -131,6 +138,7 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
131
138
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
132
139
|
resourceInputs["secretAccessKey"] = (args === null || args === void 0 ? void 0 : args.secretAccessKey) ? pulumi.secret(args.secretAccessKey) : undefined;
|
|
133
140
|
resourceInputs["sourcetype"] = args ? args.sourcetype : undefined;
|
|
141
|
+
resourceInputs["subsystem"] = args ? args.subsystem : undefined;
|
|
134
142
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
135
143
|
resourceInputs["token"] = (args === null || args === void 0 ? void 0 : args.token) ? pulumi.secret(args.token) : undefined;
|
|
136
144
|
resourceInputs["url"] = args ? args.url : undefined;
|
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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"}
|