@pulumi/cloudamqp 3.6.1 → 3.6.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 +19 -0
- package/integrationLog.js +9 -0
- package/integrationLog.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
package/integrationLog.d.ts
CHANGED
|
@@ -45,6 +45,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
45
45
|
* privateKey: _var.stackdriver_private_key,
|
|
46
46
|
* clientEmail: _var.stackdriver_client_email,
|
|
47
47
|
* });
|
|
48
|
+
* const scalyr = new cloudamqp.IntegrationLog("scalyr", {
|
|
49
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
50
|
+
* token: _var.scalyr_token,
|
|
51
|
+
* host: _var.scalyr_host,
|
|
52
|
+
* });
|
|
48
53
|
* ```
|
|
49
54
|
* ## Argument Reference (cloudwatchlog)
|
|
50
55
|
*
|
|
@@ -69,6 +74,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
69
74
|
* | splunk | Create a HTTP Event Collector token at https://.cloud.splunk.com/en-US/manager/search/http-eventcollector |
|
|
70
75
|
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
71
76
|
* | stackdriver | Create a service account and add 'monitor metrics writer' role, then download credentials. |
|
|
77
|
+
* | scalyr | Create a Log write token at https://app.scalyr.com/keys |
|
|
72
78
|
*
|
|
73
79
|
* ## Integration Type reference
|
|
74
80
|
*
|
|
@@ -85,6 +91,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
85
91
|
* | Splunk | splunk | token, hostPort |
|
|
86
92
|
* | Data Dog | datadog | region, api_keys, tags |
|
|
87
93
|
* | Stackdriver | stackdriver | project_id, private_key, clientEmail |
|
|
94
|
+
* | Scalyr | scalyr | token, host |
|
|
88
95
|
*
|
|
89
96
|
* ## Dependency
|
|
90
97
|
*
|
|
@@ -126,6 +133,10 @@ export declare class IntegrationLog extends pulumi.CustomResource {
|
|
|
126
133
|
* The client email registered for the integration service.
|
|
127
134
|
*/
|
|
128
135
|
readonly clientEmail: pulumi.Output<string | undefined>;
|
|
136
|
+
/**
|
|
137
|
+
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
138
|
+
*/
|
|
139
|
+
readonly host: pulumi.Output<string | undefined>;
|
|
129
140
|
/**
|
|
130
141
|
* Destination to send the logs.
|
|
131
142
|
*/
|
|
@@ -191,6 +202,10 @@ export interface IntegrationLogState {
|
|
|
191
202
|
* The client email registered for the integration service.
|
|
192
203
|
*/
|
|
193
204
|
clientEmail?: pulumi.Input<string>;
|
|
205
|
+
/**
|
|
206
|
+
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
207
|
+
*/
|
|
208
|
+
host?: pulumi.Input<string>;
|
|
194
209
|
/**
|
|
195
210
|
* Destination to send the logs.
|
|
196
211
|
*/
|
|
@@ -248,6 +263,10 @@ export interface IntegrationLogArgs {
|
|
|
248
263
|
* The client email registered for the integration service.
|
|
249
264
|
*/
|
|
250
265
|
clientEmail?: pulumi.Input<string>;
|
|
266
|
+
/**
|
|
267
|
+
* The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
|
|
268
|
+
*/
|
|
269
|
+
host?: pulumi.Input<string>;
|
|
251
270
|
/**
|
|
252
271
|
* Destination to send the logs.
|
|
253
272
|
*/
|
package/integrationLog.js
CHANGED
|
@@ -51,6 +51,11 @@ const utilities = require("./utilities");
|
|
|
51
51
|
* privateKey: _var.stackdriver_private_key,
|
|
52
52
|
* clientEmail: _var.stackdriver_client_email,
|
|
53
53
|
* });
|
|
54
|
+
* const scalyr = new cloudamqp.IntegrationLog("scalyr", {
|
|
55
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
56
|
+
* token: _var.scalyr_token,
|
|
57
|
+
* host: _var.scalyr_host,
|
|
58
|
+
* });
|
|
54
59
|
* ```
|
|
55
60
|
* ## Argument Reference (cloudwatchlog)
|
|
56
61
|
*
|
|
@@ -75,6 +80,7 @@ const utilities = require("./utilities");
|
|
|
75
80
|
* | splunk | Create a HTTP Event Collector token at https://.cloud.splunk.com/en-US/manager/search/http-eventcollector |
|
|
76
81
|
* | datadog | Create a Datadog API key at app.datadoghq.com |
|
|
77
82
|
* | stackdriver | Create a service account and add 'monitor metrics writer' role, then download credentials. |
|
|
83
|
+
* | scalyr | Create a Log write token at https://app.scalyr.com/keys |
|
|
78
84
|
*
|
|
79
85
|
* ## Integration Type reference
|
|
80
86
|
*
|
|
@@ -91,6 +97,7 @@ const utilities = require("./utilities");
|
|
|
91
97
|
* | Splunk | splunk | token, hostPort |
|
|
92
98
|
* | Data Dog | datadog | region, api_keys, tags |
|
|
93
99
|
* | Stackdriver | stackdriver | project_id, private_key, clientEmail |
|
|
100
|
+
* | Scalyr | scalyr | token, host |
|
|
94
101
|
*
|
|
95
102
|
* ## Dependency
|
|
96
103
|
*
|
|
@@ -113,6 +120,7 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
113
120
|
resourceInputs["accessKeyId"] = state ? state.accessKeyId : undefined;
|
|
114
121
|
resourceInputs["apiKey"] = state ? state.apiKey : undefined;
|
|
115
122
|
resourceInputs["clientEmail"] = state ? state.clientEmail : undefined;
|
|
123
|
+
resourceInputs["host"] = state ? state.host : undefined;
|
|
116
124
|
resourceInputs["hostPort"] = state ? state.hostPort : undefined;
|
|
117
125
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
118
126
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -132,6 +140,7 @@ class IntegrationLog extends pulumi.CustomResource {
|
|
|
132
140
|
resourceInputs["accessKeyId"] = args ? args.accessKeyId : undefined;
|
|
133
141
|
resourceInputs["apiKey"] = args ? args.apiKey : undefined;
|
|
134
142
|
resourceInputs["clientEmail"] = args ? args.clientEmail : undefined;
|
|
143
|
+
resourceInputs["host"] = args ? args.host : undefined;
|
|
135
144
|
resourceInputs["hostPort"] = args ? args.hostPort : undefined;
|
|
136
145
|
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
137
146
|
resourceInputs["name"] = args ? args.name : 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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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.6.
|
|
3
|
+
"version": "v3.6.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.6.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.6.2"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.6.
|
|
3
|
+
"version": "v3.6.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.6.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.6.2"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|