@checkly/pulumi 0.0.1-alpha.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.
Files changed (73) hide show
  1. package/Pulumi.yaml +0 -0
  2. package/README.md +4 -0
  3. package/alertChannel.ts +321 -0
  4. package/bin/LICENSE +21 -0
  5. package/bin/README.md +90 -0
  6. package/bin/alertChannel.d.ts +266 -0
  7. package/bin/alertChannel.js +204 -0
  8. package/bin/alertChannel.js.map +1 -0
  9. package/bin/check.d.ts +328 -0
  10. package/bin/check.js +110 -0
  11. package/bin/check.js.map +1 -0
  12. package/bin/checkGroup.d.ts +238 -0
  13. package/bin/checkGroup.js +93 -0
  14. package/bin/checkGroup.js.map +1 -0
  15. package/bin/config/index.d.ts +1 -0
  16. package/bin/config/index.js +21 -0
  17. package/bin/config/index.js.map +1 -0
  18. package/bin/config/vars.d.ts +3 -0
  19. package/bin/config/vars.js +25 -0
  20. package/bin/config/vars.js.map +1 -0
  21. package/bin/dashboard.d.ts +66 -0
  22. package/bin/dashboard.js +93 -0
  23. package/bin/dashboard.js.map +1 -0
  24. package/bin/index.d.ts +12 -0
  25. package/bin/index.js +89 -0
  26. package/bin/index.js.map +1 -0
  27. package/bin/maintenanceWindow.d.ts +157 -0
  28. package/bin/maintenanceWindow.js +115 -0
  29. package/bin/maintenanceWindow.js.map +1 -0
  30. package/bin/package.json +28 -0
  31. package/bin/package.json.bak +28 -0
  32. package/bin/provider.d.ts +33 -0
  33. package/bin/provider.js +52 -0
  34. package/bin/provider.js.map +1 -0
  35. package/bin/snippet.d.ts +60 -0
  36. package/bin/snippet.js +56 -0
  37. package/bin/snippet.js.map +1 -0
  38. package/bin/triggerCheck.d.ts +71 -0
  39. package/bin/triggerCheck.js +75 -0
  40. package/bin/triggerCheck.js.map +1 -0
  41. package/bin/triggerCheckGroup.d.ts +71 -0
  42. package/bin/triggerCheckGroup.js +75 -0
  43. package/bin/triggerCheckGroup.js.map +1 -0
  44. package/bin/types/index.d.ts +3 -0
  45. package/bin/types/index.js +11 -0
  46. package/bin/types/index.js.map +1 -0
  47. package/bin/types/input.d.ts +330 -0
  48. package/bin/types/input.js +14 -0
  49. package/bin/types/input.js.map +1 -0
  50. package/bin/types/output.d.ts +329 -0
  51. package/bin/types/output.js +14 -0
  52. package/bin/types/output.js.map +1 -0
  53. package/bin/utilities.d.ts +4 -0
  54. package/bin/utilities.js +52 -0
  55. package/bin/utilities.js.map +1 -0
  56. package/bin/yarn.lock +743 -0
  57. package/check.ts +416 -0
  58. package/checkGroup.ts +308 -0
  59. package/config/index.ts +5 -0
  60. package/config/vars.ts +33 -0
  61. package/dashboard.ts +143 -0
  62. package/index.ts +81 -0
  63. package/maintenanceWindow.ts +219 -0
  64. package/package.json +28 -0
  65. package/provider.ts +64 -0
  66. package/snippet.ts +100 -0
  67. package/triggerCheck.ts +113 -0
  68. package/triggerCheckGroup.ts +113 -0
  69. package/tsconfig.json +33 -0
  70. package/types/index.ts +11 -0
  71. package/types/input.ts +352 -0
  72. package/types/output.ts +353 -0
  73. package/utilities.ts +49 -0
@@ -0,0 +1,238 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import { input as inputs, output as outputs } from "./types";
3
+ export declare class CheckGroup extends pulumi.CustomResource {
4
+ /**
5
+ * Get an existing CheckGroup resource's state with the given name, ID, and optional extra
6
+ * properties used to qualify the lookup.
7
+ *
8
+ * @param name The _unique_ name of the resulting resource.
9
+ * @param id The _unique_ provider ID of the resource to lookup.
10
+ * @param state Any extra arguments used during the lookup.
11
+ * @param opts Optional settings to control the behavior of the CustomResource.
12
+ */
13
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CheckGroupState, opts?: pulumi.CustomResourceOptions): CheckGroup;
14
+ /**
15
+ * Returns true if the given object is an instance of CheckGroup. This is designed to work even
16
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
17
+ */
18
+ static isInstance(obj: any): obj is CheckGroup;
19
+ /**
20
+ * Determines if the checks in the group are running or not.
21
+ */
22
+ readonly activated: pulumi.Output<boolean>;
23
+ readonly alertChannelSubscriptions: pulumi.Output<outputs.CheckGroupAlertChannelSubscription[] | undefined>;
24
+ /**
25
+ * . Supported values documented below.
26
+ */
27
+ readonly alertSettings: pulumi.Output<outputs.CheckGroupAlertSettings>;
28
+ /**
29
+ * Default configs to use for all api checks belonging to this group. Supported values documented below.
30
+ */
31
+ readonly apiCheckDefaults: pulumi.Output<outputs.CheckGroupApiCheckDefaults>;
32
+ /**
33
+ * Determines how many checks are invoked concurrently when triggering a check group from CI/CD or through the API.
34
+ */
35
+ readonly concurrency: pulumi.Output<number>;
36
+ /**
37
+ * Setting this to "true" will trigger a retry when a check fails from the failing region and another, randomly selected region before marking the check as failed.
38
+ */
39
+ readonly doubleCheck: pulumi.Output<boolean | undefined>;
40
+ /**
41
+ * Key/value pairs for setting environment variables during check execution. These are only relevant for Browser checks. Use global environment variables whenever possible.
42
+ */
43
+ readonly environmentVariables: pulumi.Output<{
44
+ [key: string]: any;
45
+ } | undefined>;
46
+ /**
47
+ * A valid piece of Node.js code to run in the setup phase of an API check in this group.
48
+ */
49
+ readonly localSetupScript: pulumi.Output<string | undefined>;
50
+ /**
51
+ * A valid piece of Node.js code to run in the teardown phase of an API check in this group.
52
+ */
53
+ readonly localTeardownScript: pulumi.Output<string | undefined>;
54
+ /**
55
+ * An array of one or more data center locations where to run the checks.
56
+ */
57
+ readonly locations: pulumi.Output<string[]>;
58
+ /**
59
+ * Determines if any notifications will be send out when a check in this group fails and/or recovers.
60
+ */
61
+ readonly muted: pulumi.Output<boolean | undefined>;
62
+ /**
63
+ * The name of the check group.
64
+ */
65
+ readonly name: pulumi.Output<string>;
66
+ /**
67
+ * . The id of the runtime to use for this group.
68
+ */
69
+ readonly runtimeId: pulumi.Output<string | undefined>;
70
+ /**
71
+ * An ID reference to a snippet to use in the setup phase of an API check.
72
+ */
73
+ readonly setupSnippetId: pulumi.Output<number | undefined>;
74
+ /**
75
+ * Tags for organizing and filtering checks.
76
+ */
77
+ readonly tags: pulumi.Output<string[] | undefined>;
78
+ /**
79
+ * An ID reference to a snippet to use in the teardown phase of an API check.
80
+ */
81
+ readonly teardownSnippetId: pulumi.Output<number | undefined>;
82
+ /**
83
+ * When true, the account level alert setting will be used, not the alert setting defined on this check group.
84
+ */
85
+ readonly useGlobalAlertSettings: pulumi.Output<boolean | undefined>;
86
+ /**
87
+ * Create a CheckGroup resource with the given unique name, arguments, and options.
88
+ *
89
+ * @param name The _unique_ name of the resource.
90
+ * @param args The arguments to use to populate this resource's properties.
91
+ * @param opts A bag of options that control this resource's behavior.
92
+ */
93
+ constructor(name: string, args: CheckGroupArgs, opts?: pulumi.CustomResourceOptions);
94
+ }
95
+ /**
96
+ * Input properties used for looking up and filtering CheckGroup resources.
97
+ */
98
+ export interface CheckGroupState {
99
+ /**
100
+ * Determines if the checks in the group are running or not.
101
+ */
102
+ activated?: pulumi.Input<boolean>;
103
+ alertChannelSubscriptions?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertChannelSubscription>[]>;
104
+ /**
105
+ * . Supported values documented below.
106
+ */
107
+ alertSettings?: pulumi.Input<inputs.CheckGroupAlertSettings>;
108
+ /**
109
+ * Default configs to use for all api checks belonging to this group. Supported values documented below.
110
+ */
111
+ apiCheckDefaults?: pulumi.Input<inputs.CheckGroupApiCheckDefaults>;
112
+ /**
113
+ * Determines how many checks are invoked concurrently when triggering a check group from CI/CD or through the API.
114
+ */
115
+ concurrency?: pulumi.Input<number>;
116
+ /**
117
+ * Setting this to "true" will trigger a retry when a check fails from the failing region and another, randomly selected region before marking the check as failed.
118
+ */
119
+ doubleCheck?: pulumi.Input<boolean>;
120
+ /**
121
+ * Key/value pairs for setting environment variables during check execution. These are only relevant for Browser checks. Use global environment variables whenever possible.
122
+ */
123
+ environmentVariables?: pulumi.Input<{
124
+ [key: string]: any;
125
+ }>;
126
+ /**
127
+ * A valid piece of Node.js code to run in the setup phase of an API check in this group.
128
+ */
129
+ localSetupScript?: pulumi.Input<string>;
130
+ /**
131
+ * A valid piece of Node.js code to run in the teardown phase of an API check in this group.
132
+ */
133
+ localTeardownScript?: pulumi.Input<string>;
134
+ /**
135
+ * An array of one or more data center locations where to run the checks.
136
+ */
137
+ locations?: pulumi.Input<pulumi.Input<string>[]>;
138
+ /**
139
+ * Determines if any notifications will be send out when a check in this group fails and/or recovers.
140
+ */
141
+ muted?: pulumi.Input<boolean>;
142
+ /**
143
+ * The name of the check group.
144
+ */
145
+ name?: pulumi.Input<string>;
146
+ /**
147
+ * . The id of the runtime to use for this group.
148
+ */
149
+ runtimeId?: pulumi.Input<string>;
150
+ /**
151
+ * An ID reference to a snippet to use in the setup phase of an API check.
152
+ */
153
+ setupSnippetId?: pulumi.Input<number>;
154
+ /**
155
+ * Tags for organizing and filtering checks.
156
+ */
157
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
158
+ /**
159
+ * An ID reference to a snippet to use in the teardown phase of an API check.
160
+ */
161
+ teardownSnippetId?: pulumi.Input<number>;
162
+ /**
163
+ * When true, the account level alert setting will be used, not the alert setting defined on this check group.
164
+ */
165
+ useGlobalAlertSettings?: pulumi.Input<boolean>;
166
+ }
167
+ /**
168
+ * The set of arguments for constructing a CheckGroup resource.
169
+ */
170
+ export interface CheckGroupArgs {
171
+ /**
172
+ * Determines if the checks in the group are running or not.
173
+ */
174
+ activated: pulumi.Input<boolean>;
175
+ alertChannelSubscriptions?: pulumi.Input<pulumi.Input<inputs.CheckGroupAlertChannelSubscription>[]>;
176
+ /**
177
+ * . Supported values documented below.
178
+ */
179
+ alertSettings?: pulumi.Input<inputs.CheckGroupAlertSettings>;
180
+ /**
181
+ * Default configs to use for all api checks belonging to this group. Supported values documented below.
182
+ */
183
+ apiCheckDefaults?: pulumi.Input<inputs.CheckGroupApiCheckDefaults>;
184
+ /**
185
+ * Determines how many checks are invoked concurrently when triggering a check group from CI/CD or through the API.
186
+ */
187
+ concurrency: pulumi.Input<number>;
188
+ /**
189
+ * Setting this to "true" will trigger a retry when a check fails from the failing region and another, randomly selected region before marking the check as failed.
190
+ */
191
+ doubleCheck?: pulumi.Input<boolean>;
192
+ /**
193
+ * Key/value pairs for setting environment variables during check execution. These are only relevant for Browser checks. Use global environment variables whenever possible.
194
+ */
195
+ environmentVariables?: pulumi.Input<{
196
+ [key: string]: any;
197
+ }>;
198
+ /**
199
+ * A valid piece of Node.js code to run in the setup phase of an API check in this group.
200
+ */
201
+ localSetupScript?: pulumi.Input<string>;
202
+ /**
203
+ * A valid piece of Node.js code to run in the teardown phase of an API check in this group.
204
+ */
205
+ localTeardownScript?: pulumi.Input<string>;
206
+ /**
207
+ * An array of one or more data center locations where to run the checks.
208
+ */
209
+ locations: pulumi.Input<pulumi.Input<string>[]>;
210
+ /**
211
+ * Determines if any notifications will be send out when a check in this group fails and/or recovers.
212
+ */
213
+ muted?: pulumi.Input<boolean>;
214
+ /**
215
+ * The name of the check group.
216
+ */
217
+ name?: pulumi.Input<string>;
218
+ /**
219
+ * . The id of the runtime to use for this group.
220
+ */
221
+ runtimeId?: pulumi.Input<string>;
222
+ /**
223
+ * An ID reference to a snippet to use in the setup phase of an API check.
224
+ */
225
+ setupSnippetId?: pulumi.Input<number>;
226
+ /**
227
+ * Tags for organizing and filtering checks.
228
+ */
229
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
230
+ /**
231
+ * An ID reference to a snippet to use in the teardown phase of an API check.
232
+ */
233
+ teardownSnippetId?: pulumi.Input<number>;
234
+ /**
235
+ * When true, the account level alert setting will be used, not the alert setting defined on this check group.
236
+ */
237
+ useGlobalAlertSettings?: pulumi.Input<boolean>;
238
+ }
@@ -0,0 +1,93 @@
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.CheckGroup = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const types_1 = require("./types");
8
+ const utilities = require("./utilities");
9
+ class CheckGroup extends pulumi.CustomResource {
10
+ constructor(name, argsOrState, opts) {
11
+ let resourceInputs = {};
12
+ opts = opts || {};
13
+ if (opts.id) {
14
+ const state = argsOrState;
15
+ resourceInputs["activated"] = state ? state.activated : undefined;
16
+ resourceInputs["alertChannelSubscriptions"] = state ? state.alertChannelSubscriptions : undefined;
17
+ resourceInputs["alertSettings"] = state ? state.alertSettings : undefined;
18
+ resourceInputs["apiCheckDefaults"] = state ? state.apiCheckDefaults : undefined;
19
+ resourceInputs["concurrency"] = state ? state.concurrency : undefined;
20
+ resourceInputs["doubleCheck"] = state ? state.doubleCheck : undefined;
21
+ resourceInputs["environmentVariables"] = state ? state.environmentVariables : undefined;
22
+ resourceInputs["localSetupScript"] = state ? state.localSetupScript : undefined;
23
+ resourceInputs["localTeardownScript"] = state ? state.localTeardownScript : undefined;
24
+ resourceInputs["locations"] = state ? state.locations : undefined;
25
+ resourceInputs["muted"] = state ? state.muted : undefined;
26
+ resourceInputs["name"] = state ? state.name : undefined;
27
+ resourceInputs["runtimeId"] = state ? state.runtimeId : undefined;
28
+ resourceInputs["setupSnippetId"] = state ? state.setupSnippetId : undefined;
29
+ resourceInputs["tags"] = state ? state.tags : undefined;
30
+ resourceInputs["teardownSnippetId"] = state ? state.teardownSnippetId : undefined;
31
+ resourceInputs["useGlobalAlertSettings"] = state ? state.useGlobalAlertSettings : undefined;
32
+ }
33
+ else {
34
+ const args = argsOrState;
35
+ if ((!args || args.activated === undefined) && !opts.urn) {
36
+ throw new Error("Missing required property 'activated'");
37
+ }
38
+ if ((!args || args.concurrency === undefined) && !opts.urn) {
39
+ throw new Error("Missing required property 'concurrency'");
40
+ }
41
+ if ((!args || args.locations === undefined) && !opts.urn) {
42
+ throw new Error("Missing required property 'locations'");
43
+ }
44
+ resourceInputs["activated"] = args ? args.activated : undefined;
45
+ resourceInputs["alertChannelSubscriptions"] = args ? args.alertChannelSubscriptions : undefined;
46
+ resourceInputs["alertSettings"] = args ? args.alertSettings : undefined;
47
+ resourceInputs["apiCheckDefaults"] = args ? (args.apiCheckDefaults ? pulumi.output(args.apiCheckDefaults).apply(types_1.input.checkGroupApiCheckDefaultsProvideDefaults) : undefined) : undefined;
48
+ resourceInputs["concurrency"] = args ? args.concurrency : undefined;
49
+ resourceInputs["doubleCheck"] = args ? args.doubleCheck : undefined;
50
+ resourceInputs["environmentVariables"] = args ? args.environmentVariables : undefined;
51
+ resourceInputs["localSetupScript"] = args ? args.localSetupScript : undefined;
52
+ resourceInputs["localTeardownScript"] = args ? args.localTeardownScript : undefined;
53
+ resourceInputs["locations"] = args ? args.locations : undefined;
54
+ resourceInputs["muted"] = args ? args.muted : undefined;
55
+ resourceInputs["name"] = args ? args.name : undefined;
56
+ resourceInputs["runtimeId"] = args ? args.runtimeId : undefined;
57
+ resourceInputs["setupSnippetId"] = args ? args.setupSnippetId : undefined;
58
+ resourceInputs["tags"] = args ? args.tags : undefined;
59
+ resourceInputs["teardownSnippetId"] = args ? args.teardownSnippetId : undefined;
60
+ resourceInputs["useGlobalAlertSettings"] = args ? args.useGlobalAlertSettings : undefined;
61
+ }
62
+ if (!opts.version) {
63
+ opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
64
+ }
65
+ super(CheckGroup.__pulumiType, name, resourceInputs, opts);
66
+ }
67
+ /**
68
+ * Get an existing CheckGroup resource's state with the given name, ID, and optional extra
69
+ * properties used to qualify the lookup.
70
+ *
71
+ * @param name The _unique_ name of the resulting resource.
72
+ * @param id The _unique_ provider ID of the resource to lookup.
73
+ * @param state Any extra arguments used during the lookup.
74
+ * @param opts Optional settings to control the behavior of the CustomResource.
75
+ */
76
+ static get(name, id, state, opts) {
77
+ return new CheckGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
78
+ }
79
+ /**
80
+ * Returns true if the given object is an instance of CheckGroup. This is designed to work even
81
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
82
+ */
83
+ static isInstance(obj) {
84
+ if (obj === undefined || obj === null) {
85
+ return false;
86
+ }
87
+ return obj['__pulumiType'] === CheckGroup.__pulumiType;
88
+ }
89
+ }
90
+ exports.CheckGroup = CheckGroup;
91
+ /** @internal */
92
+ CheckGroup.__pulumiType = 'checkly:index/checkGroup:CheckGroup';
93
+ //# sourceMappingURL=checkGroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkGroup.js","sourceRoot":"","sources":["../checkGroup.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export * from "./vars";
@@ -0,0 +1,21 @@
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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
+ };
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ // Export members:
20
+ __exportStar(require("./vars"), exports);
21
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
@@ -0,0 +1,3 @@
1
+ export declare const accountId: string | undefined;
2
+ export declare const apiKey: string | undefined;
3
+ export declare const apiUrl: string | undefined;
@@ -0,0 +1,25 @@
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
+ const pulumi = require("@pulumi/pulumi");
6
+ const __config = new pulumi.Config("checkly");
7
+ Object.defineProperty(exports, "accountId", {
8
+ get() {
9
+ return __config.get("accountId");
10
+ },
11
+ enumerable: true,
12
+ });
13
+ Object.defineProperty(exports, "apiKey", {
14
+ get() {
15
+ return __config.get("apiKey");
16
+ },
17
+ enumerable: true,
18
+ });
19
+ Object.defineProperty(exports, "apiUrl", {
20
+ get() {
21
+ return __config.get("apiUrl");
22
+ },
23
+ enumerable: true,
24
+ });
25
+ //# sourceMappingURL=vars.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;AAG9C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
@@ -0,0 +1,66 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class Dashboard extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing Dashboard resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DashboardState, opts?: pulumi.CustomResourceOptions): Dashboard;
13
+ /**
14
+ * Returns true if the given object is an instance of Dashboard. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is Dashboard;
18
+ readonly customDomain: pulumi.Output<string>;
19
+ readonly customUrl: pulumi.Output<string>;
20
+ readonly header: pulumi.Output<string>;
21
+ readonly hideTags: pulumi.Output<boolean>;
22
+ readonly logo: pulumi.Output<string>;
23
+ readonly paginate: pulumi.Output<boolean>;
24
+ readonly paginationRate: pulumi.Output<number>;
25
+ readonly refreshRate: pulumi.Output<number>;
26
+ readonly tags: pulumi.Output<string[] | undefined>;
27
+ readonly width: pulumi.Output<string | undefined>;
28
+ /**
29
+ * Create a Dashboard resource with the given unique name, arguments, and options.
30
+ *
31
+ * @param name The _unique_ name of the resource.
32
+ * @param args The arguments to use to populate this resource's properties.
33
+ * @param opts A bag of options that control this resource's behavior.
34
+ */
35
+ constructor(name: string, args: DashboardArgs, opts?: pulumi.CustomResourceOptions);
36
+ }
37
+ /**
38
+ * Input properties used for looking up and filtering Dashboard resources.
39
+ */
40
+ export interface DashboardState {
41
+ customDomain?: pulumi.Input<string>;
42
+ customUrl?: pulumi.Input<string>;
43
+ header?: pulumi.Input<string>;
44
+ hideTags?: pulumi.Input<boolean>;
45
+ logo?: pulumi.Input<string>;
46
+ paginate?: pulumi.Input<boolean>;
47
+ paginationRate?: pulumi.Input<number>;
48
+ refreshRate?: pulumi.Input<number>;
49
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
50
+ width?: pulumi.Input<string>;
51
+ }
52
+ /**
53
+ * The set of arguments for constructing a Dashboard resource.
54
+ */
55
+ export interface DashboardArgs {
56
+ customDomain: pulumi.Input<string>;
57
+ customUrl: pulumi.Input<string>;
58
+ header: pulumi.Input<string>;
59
+ hideTags: pulumi.Input<boolean>;
60
+ logo: pulumi.Input<string>;
61
+ paginate: pulumi.Input<boolean>;
62
+ paginationRate: pulumi.Input<number>;
63
+ refreshRate: pulumi.Input<number>;
64
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
65
+ width?: pulumi.Input<string>;
66
+ }
@@ -0,0 +1,93 @@
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.Dashboard = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class Dashboard extends pulumi.CustomResource {
9
+ constructor(name, argsOrState, opts) {
10
+ let resourceInputs = {};
11
+ opts = opts || {};
12
+ if (opts.id) {
13
+ const state = argsOrState;
14
+ resourceInputs["customDomain"] = state ? state.customDomain : undefined;
15
+ resourceInputs["customUrl"] = state ? state.customUrl : undefined;
16
+ resourceInputs["header"] = state ? state.header : undefined;
17
+ resourceInputs["hideTags"] = state ? state.hideTags : undefined;
18
+ resourceInputs["logo"] = state ? state.logo : undefined;
19
+ resourceInputs["paginate"] = state ? state.paginate : undefined;
20
+ resourceInputs["paginationRate"] = state ? state.paginationRate : undefined;
21
+ resourceInputs["refreshRate"] = state ? state.refreshRate : undefined;
22
+ resourceInputs["tags"] = state ? state.tags : undefined;
23
+ resourceInputs["width"] = state ? state.width : undefined;
24
+ }
25
+ else {
26
+ const args = argsOrState;
27
+ if ((!args || args.customDomain === undefined) && !opts.urn) {
28
+ throw new Error("Missing required property 'customDomain'");
29
+ }
30
+ if ((!args || args.customUrl === undefined) && !opts.urn) {
31
+ throw new Error("Missing required property 'customUrl'");
32
+ }
33
+ if ((!args || args.header === undefined) && !opts.urn) {
34
+ throw new Error("Missing required property 'header'");
35
+ }
36
+ if ((!args || args.hideTags === undefined) && !opts.urn) {
37
+ throw new Error("Missing required property 'hideTags'");
38
+ }
39
+ if ((!args || args.logo === undefined) && !opts.urn) {
40
+ throw new Error("Missing required property 'logo'");
41
+ }
42
+ if ((!args || args.paginate === undefined) && !opts.urn) {
43
+ throw new Error("Missing required property 'paginate'");
44
+ }
45
+ if ((!args || args.paginationRate === undefined) && !opts.urn) {
46
+ throw new Error("Missing required property 'paginationRate'");
47
+ }
48
+ if ((!args || args.refreshRate === undefined) && !opts.urn) {
49
+ throw new Error("Missing required property 'refreshRate'");
50
+ }
51
+ resourceInputs["customDomain"] = args ? args.customDomain : undefined;
52
+ resourceInputs["customUrl"] = args ? args.customUrl : undefined;
53
+ resourceInputs["header"] = args ? args.header : undefined;
54
+ resourceInputs["hideTags"] = args ? args.hideTags : undefined;
55
+ resourceInputs["logo"] = args ? args.logo : undefined;
56
+ resourceInputs["paginate"] = args ? args.paginate : undefined;
57
+ resourceInputs["paginationRate"] = args ? args.paginationRate : undefined;
58
+ resourceInputs["refreshRate"] = args ? args.refreshRate : undefined;
59
+ resourceInputs["tags"] = args ? args.tags : undefined;
60
+ resourceInputs["width"] = args ? args.width : undefined;
61
+ }
62
+ if (!opts.version) {
63
+ opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
64
+ }
65
+ super(Dashboard.__pulumiType, name, resourceInputs, opts);
66
+ }
67
+ /**
68
+ * Get an existing Dashboard resource's state with the given name, ID, and optional extra
69
+ * properties used to qualify the lookup.
70
+ *
71
+ * @param name The _unique_ name of the resulting resource.
72
+ * @param id The _unique_ provider ID of the resource to lookup.
73
+ * @param state Any extra arguments used during the lookup.
74
+ * @param opts Optional settings to control the behavior of the CustomResource.
75
+ */
76
+ static get(name, id, state, opts) {
77
+ return new Dashboard(name, state, Object.assign(Object.assign({}, opts), { id: id }));
78
+ }
79
+ /**
80
+ * Returns true if the given object is an instance of Dashboard. This is designed to work even
81
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
82
+ */
83
+ static isInstance(obj) {
84
+ if (obj === undefined || obj === null) {
85
+ return false;
86
+ }
87
+ return obj['__pulumiType'] === Dashboard.__pulumiType;
88
+ }
89
+ }
90
+ exports.Dashboard = Dashboard;
91
+ /** @internal */
92
+ Dashboard.__pulumiType = 'checkly:index/dashboard:Dashboard';
93
+ //# sourceMappingURL=dashboard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../dashboard.ts"],"names":[],"mappings":"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"}
package/bin/index.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ export * from "./alertChannel";
2
+ export * from "./check";
3
+ export * from "./checkGroup";
4
+ export * from "./dashboard";
5
+ export * from "./maintenanceWindow";
6
+ export * from "./provider";
7
+ export * from "./snippet";
8
+ export * from "./triggerCheck";
9
+ export * from "./triggerCheckGroup";
10
+ import * as config from "./config";
11
+ import * as types from "./types";
12
+ export { config, types, };