@checkly/pulumi 0.0.1-alpha.2 → 0.0.1-alpha.6
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/README.md +70 -44
- package/alertChannel.ts +56 -141
- package/bin/README.md +102 -41
- package/bin/alertChannel.d.ts +55 -138
- package/bin/alertChannel.js +41 -108
- package/bin/alertChannel.js.map +1 -1
- package/bin/check.d.ts +90 -51
- package/bin/check.js +4 -3
- package/bin/check.js.map +1 -1
- package/bin/checkGroup.d.ts +112 -36
- package/bin/checkGroup.js +89 -3
- package/bin/checkGroup.js.map +1 -1
- package/bin/dashboard.d.ts +125 -14
- package/bin/dashboard.js +22 -24
- package/bin/dashboard.js.map +1 -1
- package/bin/environmentVariable.d.ts +64 -0
- package/bin/environmentVariable.js +78 -0
- package/bin/environmentVariable.js.map +1 -0
- package/bin/index.d.ts +1 -0
- package/bin/index.js +5 -0
- package/bin/index.js.map +1 -1
- package/bin/maintenanceWindow.d.ts +16 -36
- package/bin/maintenanceWindow.js +2 -33
- package/bin/maintenanceWindow.js.map +1 -1
- package/bin/package.json +4 -3
- package/bin/package.json.bak +2 -1
- package/bin/provider.js +1 -3
- package/bin/provider.js.map +1 -1
- package/bin/snippet.d.ts +3 -3
- package/bin/snippet.js +1 -3
- package/bin/snippet.js.map +1 -1
- package/bin/triggerCheck.d.ts +19 -7
- package/bin/triggerCheck.js +2 -10
- package/bin/triggerCheck.js.map +1 -1
- package/bin/triggerCheckGroup.d.ts +19 -7
- package/bin/triggerCheckGroup.js +2 -10
- package/bin/triggerCheckGroup.js.map +1 -1
- package/bin/types/input.d.ts +2 -188
- package/bin/types/input.js.map +1 -1
- package/bin/types/output.d.ts +2 -188
- package/bin/types/output.js.map +1 -1
- package/bin/utilities.js +6 -1
- package/bin/utilities.js.map +1 -1
- package/bin/yarn.lock +179 -117
- package/check.ts +91 -54
- package/checkGroup.ts +113 -39
- package/dashboard.ts +126 -38
- package/environmentVariable.ts +107 -0
- package/index.ts +5 -0
- package/maintenanceWindow.ts +17 -48
- package/package.json +7 -6
- package/provider.ts +1 -3
- package/scripts/install-pulumi-plugin.js +26 -0
- package/snippet.ts +4 -6
- package/triggerCheck.ts +20 -10
- package/triggerCheckGroup.ts +20 -10
- package/tsconfig.json +1 -0
- package/types/input.ts +2 -188
- package/types/output.ts +2 -188
- package/utilities.ts +5 -0
package/triggerCheckGroup.ts
CHANGED
|
@@ -5,17 +5,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
5
5
|
import * as utilities from "./utilities";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* ## # checkly.TriggerCheckGroup
|
|
9
|
-
*
|
|
10
|
-
* `checkly.TriggerCheckGroup` allows users to manage Checkly trigger groups. Add a `checkly.TriggerCheckGroup` resource to your resource file.
|
|
11
|
-
*
|
|
12
8
|
* ## Example Usage
|
|
13
9
|
*
|
|
14
|
-
* Trigger group example
|
|
15
|
-
*
|
|
16
10
|
* ```typescript
|
|
17
11
|
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
-
* import * as
|
|
12
|
+
* import * as pulumi from "@checkly/pulumi";
|
|
19
13
|
*
|
|
20
14
|
* const test_trigger_group = new checkly.TriggerCheckGroup("test-trigger-group", {groupId: "215"});
|
|
21
15
|
* export const test_trigger_group_url = test_trigger_group.url;
|
|
@@ -53,7 +47,13 @@ export class TriggerCheckGroup extends pulumi.CustomResource {
|
|
|
53
47
|
* The id of the group that you want to attach the trigger to.
|
|
54
48
|
*/
|
|
55
49
|
public readonly groupId!: pulumi.Output<number>;
|
|
50
|
+
/**
|
|
51
|
+
* The token value created to trigger the group
|
|
52
|
+
*/
|
|
56
53
|
public readonly token!: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* The request URL to trigger the group run.
|
|
56
|
+
*/
|
|
57
57
|
public readonly url!: pulumi.Output<string>;
|
|
58
58
|
|
|
59
59
|
/**
|
|
@@ -81,9 +81,7 @@ export class TriggerCheckGroup extends pulumi.CustomResource {
|
|
|
81
81
|
resourceInputs["token"] = args ? args.token : undefined;
|
|
82
82
|
resourceInputs["url"] = args ? args.url : undefined;
|
|
83
83
|
}
|
|
84
|
-
|
|
85
|
-
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion()});
|
|
86
|
-
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
87
85
|
super(TriggerCheckGroup.__pulumiType, name, resourceInputs, opts);
|
|
88
86
|
}
|
|
89
87
|
}
|
|
@@ -96,7 +94,13 @@ export interface TriggerCheckGroupState {
|
|
|
96
94
|
* The id of the group that you want to attach the trigger to.
|
|
97
95
|
*/
|
|
98
96
|
groupId?: pulumi.Input<number>;
|
|
97
|
+
/**
|
|
98
|
+
* The token value created to trigger the group
|
|
99
|
+
*/
|
|
99
100
|
token?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The request URL to trigger the group run.
|
|
103
|
+
*/
|
|
100
104
|
url?: pulumi.Input<string>;
|
|
101
105
|
}
|
|
102
106
|
|
|
@@ -108,6 +112,12 @@ export interface TriggerCheckGroupArgs {
|
|
|
108
112
|
* The id of the group that you want to attach the trigger to.
|
|
109
113
|
*/
|
|
110
114
|
groupId: pulumi.Input<number>;
|
|
115
|
+
/**
|
|
116
|
+
* The token value created to trigger the group
|
|
117
|
+
*/
|
|
111
118
|
token?: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* The request URL to trigger the group run.
|
|
121
|
+
*/
|
|
112
122
|
url?: pulumi.Input<string>;
|
|
113
123
|
}
|
package/tsconfig.json
CHANGED
package/types/input.ts
CHANGED
|
@@ -7,253 +7,115 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
7
7
|
import * as utilities from "../utilities";
|
|
8
8
|
|
|
9
9
|
export interface AlertChannelEmail {
|
|
10
|
-
/**
|
|
11
|
-
* the email address of this email alert channel.
|
|
12
|
-
*/
|
|
13
10
|
address: pulumi.Input<string>;
|
|
14
11
|
}
|
|
15
12
|
|
|
16
13
|
export interface AlertChannelOpsgenie {
|
|
17
|
-
/**
|
|
18
|
-
* .
|
|
19
|
-
*/
|
|
20
14
|
apiKey: pulumi.Input<string>;
|
|
21
|
-
/**
|
|
22
|
-
* Webhook's channel name.
|
|
23
|
-
*/
|
|
24
15
|
name: pulumi.Input<string>;
|
|
25
|
-
/**
|
|
26
|
-
* .
|
|
27
|
-
*/
|
|
28
16
|
priority: pulumi.Input<string>;
|
|
29
|
-
/**
|
|
30
|
-
* .
|
|
31
|
-
*/
|
|
32
17
|
region: pulumi.Input<string>;
|
|
33
18
|
}
|
|
34
19
|
|
|
35
20
|
export interface AlertChannelPagerduty {
|
|
36
|
-
/**
|
|
37
|
-
* Pagerduty's account name.
|
|
38
|
-
*/
|
|
39
21
|
account?: pulumi.Input<string>;
|
|
40
|
-
/**
|
|
41
|
-
* Pagerduty's service integration key.
|
|
42
|
-
*/
|
|
43
22
|
serviceKey: pulumi.Input<string>;
|
|
44
|
-
/**
|
|
45
|
-
* Pagerduty's service name.
|
|
46
|
-
*/
|
|
47
23
|
serviceName?: pulumi.Input<string>;
|
|
48
24
|
}
|
|
49
25
|
|
|
50
26
|
export interface AlertChannelSlack {
|
|
51
|
-
/**
|
|
52
|
-
* Slack's channel name.
|
|
53
|
-
*/
|
|
54
27
|
channel: pulumi.Input<string>;
|
|
55
|
-
/**
|
|
56
|
-
* .
|
|
57
|
-
*/
|
|
58
28
|
url: pulumi.Input<string>;
|
|
59
29
|
}
|
|
60
30
|
|
|
61
31
|
export interface AlertChannelSms {
|
|
62
|
-
/**
|
|
63
|
-
* Webhook's channel name.
|
|
64
|
-
*/
|
|
65
32
|
name: pulumi.Input<string>;
|
|
66
|
-
/**
|
|
67
|
-
* Mobile number to receive alerts.
|
|
68
|
-
*/
|
|
69
33
|
number: pulumi.Input<string>;
|
|
70
34
|
}
|
|
71
35
|
|
|
72
36
|
export interface AlertChannelWebhook {
|
|
73
|
-
/**
|
|
74
|
-
* .
|
|
75
|
-
*/
|
|
76
37
|
headers?: pulumi.Input<{[key: string]: any}>;
|
|
77
|
-
/**
|
|
78
|
-
* Default is `POST`.
|
|
79
|
-
*/
|
|
80
38
|
method?: pulumi.Input<string>;
|
|
81
|
-
/**
|
|
82
|
-
* Webhook's channel name.
|
|
83
|
-
*/
|
|
84
39
|
name: pulumi.Input<string>;
|
|
85
|
-
/**
|
|
86
|
-
* .
|
|
87
|
-
*/
|
|
88
40
|
queryParameters?: pulumi.Input<{[key: string]: any}>;
|
|
89
|
-
/**
|
|
90
|
-
* .
|
|
91
|
-
*/
|
|
92
41
|
template?: pulumi.Input<string>;
|
|
93
|
-
/**
|
|
94
|
-
* .
|
|
95
|
-
*/
|
|
96
42
|
url: pulumi.Input<string>;
|
|
97
|
-
/**
|
|
98
|
-
* .
|
|
99
|
-
*/
|
|
100
43
|
webhookSecret?: pulumi.Input<string>;
|
|
101
44
|
}
|
|
102
45
|
|
|
103
46
|
export interface CheckAlertChannelSubscription {
|
|
104
|
-
/**
|
|
105
|
-
* Determines if the check is running or not. Possible values `true`, and `false`.
|
|
106
|
-
*/
|
|
107
47
|
activated: pulumi.Input<boolean>;
|
|
108
48
|
channelId: pulumi.Input<number>;
|
|
109
49
|
}
|
|
110
50
|
|
|
111
51
|
export interface CheckAlertSettings {
|
|
112
|
-
/**
|
|
113
|
-
* Determines what type of escalation to use. Possible values are `RUN_BASED` or `TIME_BASED`.
|
|
114
|
-
*/
|
|
115
52
|
escalationType?: pulumi.Input<string>;
|
|
116
|
-
/**
|
|
117
|
-
* . Possible arguments:
|
|
118
|
-
*/
|
|
119
53
|
reminders?: pulumi.Input<pulumi.Input<inputs.CheckAlertSettingsReminder>[]>;
|
|
120
|
-
/**
|
|
121
|
-
* . Possible arguments:
|
|
122
|
-
*/
|
|
123
54
|
runBasedEscalations?: pulumi.Input<pulumi.Input<inputs.CheckAlertSettingsRunBasedEscalation>[]>;
|
|
124
55
|
/**
|
|
125
|
-
*
|
|
56
|
+
* @deprecated The property `ssl_certificates` is deprecated and it's ignored by the Checkly Public API. It will be removed in a future version.
|
|
126
57
|
*/
|
|
127
58
|
sslCertificates?: pulumi.Input<pulumi.Input<inputs.CheckAlertSettingsSslCertificate>[]>;
|
|
128
|
-
/**
|
|
129
|
-
* . Possible arguments:
|
|
130
|
-
*/
|
|
131
59
|
timeBasedEscalations?: pulumi.Input<pulumi.Input<inputs.CheckAlertSettingsTimeBasedEscalation>[]>;
|
|
132
60
|
}
|
|
133
61
|
|
|
134
62
|
export interface CheckAlertSettingsReminder {
|
|
135
|
-
/**
|
|
136
|
-
* How many reminders to send out after the initial alert notification. Possible values are `0`, `1`, `2`, `3`, `4`, `5`, and `100000`
|
|
137
|
-
*/
|
|
138
63
|
amount?: pulumi.Input<number>;
|
|
139
|
-
/**
|
|
140
|
-
* . Possible values are `5`, `10`, `15`, and `30`. Defaults to `5`.
|
|
141
|
-
*/
|
|
142
64
|
interval?: pulumi.Input<number>;
|
|
143
65
|
}
|
|
144
66
|
|
|
145
67
|
export interface CheckAlertSettingsRunBasedEscalation {
|
|
146
|
-
/**
|
|
147
|
-
* After how many failed consecutive check runs an alert notification should be send. Possible values are between 1 and 5. Defaults to `1`.
|
|
148
|
-
*/
|
|
149
68
|
failedRunThreshold?: pulumi.Input<number>;
|
|
150
69
|
}
|
|
151
70
|
|
|
152
71
|
export interface CheckAlertSettingsSslCertificate {
|
|
153
|
-
/**
|
|
154
|
-
* At what moment in time to start alerting on SSL certificates. Possible values `3`, `7`, `14`, `30`. Defaults to `3`.
|
|
155
|
-
*/
|
|
156
72
|
alertThreshold?: pulumi.Input<number>;
|
|
157
|
-
/**
|
|
158
|
-
* Determines if alert notifications should be send for expiring SSL certificates. Possible values `true`, and `false`. Defaults to `true`.
|
|
159
|
-
*/
|
|
160
73
|
enabled?: pulumi.Input<boolean>;
|
|
161
74
|
}
|
|
162
75
|
|
|
163
76
|
export interface CheckAlertSettingsTimeBasedEscalation {
|
|
164
|
-
/**
|
|
165
|
-
* After how many minutes after a check starts failing an alert should be send. Possible values are `5`, `10`, `15`, and `30`. Defaults to `5`.
|
|
166
|
-
*/
|
|
167
77
|
minutesFailingThreshold?: pulumi.Input<number>;
|
|
168
78
|
}
|
|
169
79
|
|
|
170
80
|
export interface CheckGroupAlertChannelSubscription {
|
|
171
|
-
/**
|
|
172
|
-
* Determines if the checks in the group are running or not.
|
|
173
|
-
*/
|
|
174
81
|
activated: pulumi.Input<boolean>;
|
|
175
82
|
channelId: pulumi.Input<number>;
|
|
176
83
|
}
|
|
177
84
|
|
|
178
85
|
export interface CheckGroupAlertSettings {
|
|
179
|
-
/**
|
|
180
|
-
* Determines what type of escalation to use. Possible values are `RUN_BASED` or `TIME_BASED`.
|
|
181
|
-
*/
|
|
182
86
|
escalationType?: pulumi.Input<string>;
|
|
183
|
-
/**
|
|
184
|
-
* . Possible arguments:
|
|
185
|
-
*/
|
|
186
87
|
reminders?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertSettingsReminder>[]>;
|
|
187
|
-
/**
|
|
188
|
-
* . Possible arguments:
|
|
189
|
-
*/
|
|
190
88
|
runBasedEscalations?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertSettingsRunBasedEscalation>[]>;
|
|
191
89
|
/**
|
|
192
|
-
*
|
|
90
|
+
* @deprecated The property `ssl_certificates` is deprecated and it's ignored by the Checkly Public API. It will be removed in a future version.
|
|
193
91
|
*/
|
|
194
92
|
sslCertificates?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertSettingsSslCertificate>[]>;
|
|
195
|
-
/**
|
|
196
|
-
* . Possible arguments:
|
|
197
|
-
*/
|
|
198
93
|
timeBasedEscalations?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertSettingsTimeBasedEscalation>[]>;
|
|
199
94
|
}
|
|
200
95
|
|
|
201
96
|
export interface CheckGroupAlertSettingsReminder {
|
|
202
|
-
/**
|
|
203
|
-
* How many reminders to send out after the initial alert notification. Possible values are `0`, `1`, `2`, `3`, `4`, `5`, and `100000`
|
|
204
|
-
*/
|
|
205
97
|
amount?: pulumi.Input<number>;
|
|
206
|
-
/**
|
|
207
|
-
* . Possible values are `5`, `10`, `15`, and `30`. Defaults to `5`.
|
|
208
|
-
*/
|
|
209
98
|
interval?: pulumi.Input<number>;
|
|
210
99
|
}
|
|
211
100
|
|
|
212
101
|
export interface CheckGroupAlertSettingsRunBasedEscalation {
|
|
213
|
-
/**
|
|
214
|
-
* After how many failed consecutive check runs an alert notification should be send. Possible values are between 1 and 5. Defaults to `1`.
|
|
215
|
-
*/
|
|
216
102
|
failedRunThreshold?: pulumi.Input<number>;
|
|
217
103
|
}
|
|
218
104
|
|
|
219
105
|
export interface CheckGroupAlertSettingsSslCertificate {
|
|
220
|
-
/**
|
|
221
|
-
* At what moment in time to start alerting on SSL certificates. Possible values `3`, `7`, `14`, `30`. Defaults to `3`.
|
|
222
|
-
*/
|
|
223
106
|
alertThreshold?: pulumi.Input<number>;
|
|
224
|
-
/**
|
|
225
|
-
* Determines if alert notifications should be send for expiring SSL certificates. Possible values `true`, and `false`. Defaults to `true`.
|
|
226
|
-
*/
|
|
227
107
|
enabled?: pulumi.Input<boolean>;
|
|
228
108
|
}
|
|
229
109
|
|
|
230
110
|
export interface CheckGroupAlertSettingsTimeBasedEscalation {
|
|
231
|
-
/**
|
|
232
|
-
* After how many minutes after a check starts failing an alert should be send. Possible values are `5`, `10`, `15`, and `30`. Defaults to `5`.
|
|
233
|
-
*/
|
|
234
111
|
minutesFailingThreshold?: pulumi.Input<number>;
|
|
235
112
|
}
|
|
236
113
|
|
|
237
114
|
export interface CheckGroupApiCheckDefaults {
|
|
238
|
-
/**
|
|
239
|
-
* . Possible arguments:
|
|
240
|
-
*/
|
|
241
115
|
assertions?: pulumi.Input<pulumi.Input<inputs.CheckGroupApiCheckDefaultsAssertion>[]>;
|
|
242
|
-
/**
|
|
243
|
-
* . Possible arguments
|
|
244
|
-
*/
|
|
245
116
|
basicAuth?: pulumi.Input<inputs.CheckGroupApiCheckDefaultsBasicAuth>;
|
|
246
|
-
/**
|
|
247
|
-
* .
|
|
248
|
-
*/
|
|
249
117
|
headers?: pulumi.Input<{[key: string]: any}>;
|
|
250
|
-
/**
|
|
251
|
-
* .
|
|
252
|
-
*/
|
|
253
118
|
queryParameters?: pulumi.Input<{[key: string]: any}>;
|
|
254
|
-
/**
|
|
255
|
-
* The base url for this group which you can reference with the {{GROUP_BASE_URL}} variable in all group checks.
|
|
256
|
-
*/
|
|
257
119
|
url?: pulumi.Input<string>;
|
|
258
120
|
}
|
|
259
121
|
/**
|
|
@@ -267,17 +129,8 @@ export function checkGroupApiCheckDefaultsProvideDefaults(val: CheckGroupApiChec
|
|
|
267
129
|
}
|
|
268
130
|
|
|
269
131
|
export interface CheckGroupApiCheckDefaultsAssertion {
|
|
270
|
-
/**
|
|
271
|
-
* Possible values `EQUALS`, `NOT_EQUALS`, `HAS_KEY`, `NOT_HAS_KEY`, `HAS_VALUE`, `NOT_HAS_VALUE`, `IS_EMPTY`, `NOT_EMPTY`, `GREATER_THAN`, `LESS_THAN`, `CONTAINS`, `NOT_CONTAINS`, `IS_NULL`, and `NOT_NULL`.
|
|
272
|
-
*/
|
|
273
132
|
comparison: pulumi.Input<string>;
|
|
274
|
-
/**
|
|
275
|
-
* .
|
|
276
|
-
*/
|
|
277
133
|
property?: pulumi.Input<string>;
|
|
278
|
-
/**
|
|
279
|
-
* Possible values `STATUS_CODE`, `JSON_BODY`, `HEADERS`, `TEXT_BODY`, and `RESPONSE_TIME`.
|
|
280
|
-
*/
|
|
281
134
|
source: pulumi.Input<string>;
|
|
282
135
|
target: pulumi.Input<string>;
|
|
283
136
|
}
|
|
@@ -288,61 +141,22 @@ export interface CheckGroupApiCheckDefaultsBasicAuth {
|
|
|
288
141
|
}
|
|
289
142
|
|
|
290
143
|
export interface CheckRequest {
|
|
291
|
-
/**
|
|
292
|
-
* A request can have multiple assetions. Assertion has the following arguments:
|
|
293
|
-
*/
|
|
294
144
|
assertions?: pulumi.Input<pulumi.Input<inputs.CheckRequestAssertion>[]>;
|
|
295
|
-
/**
|
|
296
|
-
* A request might have one basicAuth config. basicAuth has two arguments:
|
|
297
|
-
*/
|
|
298
145
|
basicAuth?: pulumi.Input<inputs.CheckRequestBasicAuth>;
|
|
299
146
|
body?: pulumi.Input<string>;
|
|
300
|
-
/**
|
|
301
|
-
* Possible values `NONE`, `JSON`, `FORM`, `RAW`, and `GRAPHQL`.
|
|
302
|
-
*/
|
|
303
147
|
bodyType?: pulumi.Input<string>;
|
|
304
|
-
/**
|
|
305
|
-
* .
|
|
306
|
-
*/
|
|
307
148
|
followRedirects?: pulumi.Input<boolean>;
|
|
308
|
-
/**
|
|
309
|
-
* .
|
|
310
|
-
*/
|
|
311
149
|
headers?: pulumi.Input<{[key: string]: any}>;
|
|
312
|
-
/**
|
|
313
|
-
* The HTTP method to use for this API check. Possible values are `GET`, `POST`, `PUT`, `HEAD`, `DELETE`, `PATCH`. Defaults to `GET`.
|
|
314
|
-
*/
|
|
315
150
|
method?: pulumi.Input<string>;
|
|
316
|
-
/**
|
|
317
|
-
* .
|
|
318
|
-
*/
|
|
319
151
|
queryParameters?: pulumi.Input<{[key: string]: any}>;
|
|
320
|
-
/**
|
|
321
|
-
* .
|
|
322
|
-
*/
|
|
323
152
|
skipSsl?: pulumi.Input<boolean>;
|
|
324
|
-
/**
|
|
325
|
-
* .
|
|
326
|
-
*/
|
|
327
153
|
url: pulumi.Input<string>;
|
|
328
154
|
}
|
|
329
155
|
|
|
330
156
|
export interface CheckRequestAssertion {
|
|
331
|
-
/**
|
|
332
|
-
* Possible values `EQUALS`, `NOT_EQUALS`, `HAS_KEY`, `NOT_HAS_KEY`, `HAS_VALUE`, `NOT_HAS_VALUE`, `IS_EMPTY`, `NOT_EMPTY`, `GREATER_THAN`, `LESS_THAN`, `CONTAINS`, `NOT_CONTAINS`, `IS_NULL`, and `NOT_NULL`.
|
|
333
|
-
*/
|
|
334
157
|
comparison: pulumi.Input<string>;
|
|
335
|
-
/**
|
|
336
|
-
* .
|
|
337
|
-
*/
|
|
338
158
|
property?: pulumi.Input<string>;
|
|
339
|
-
/**
|
|
340
|
-
* Possible values `STATUS_CODE`, `JSON_BODY`, `HEADERS`, `TEXT_BODY`, and `RESPONSE_TIME`.
|
|
341
|
-
*/
|
|
342
159
|
source: pulumi.Input<string>;
|
|
343
|
-
/**
|
|
344
|
-
* .
|
|
345
|
-
*/
|
|
346
160
|
target?: pulumi.Input<string>;
|
|
347
161
|
}
|
|
348
162
|
|