@pulumi/ns1 3.4.0 → 3.4.1

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/dataFeed.d.ts CHANGED
@@ -70,7 +70,7 @@ export declare class DataFeed extends pulumi.CustomResource {
70
70
  * `feedConfig` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
71
71
  */
72
72
  readonly config: pulumi.Output<{
73
- [key: string]: any;
73
+ [key: string]: string;
74
74
  } | undefined>;
75
75
  /**
76
76
  * The free form name of the data feed.
@@ -98,7 +98,7 @@ export interface DataFeedState {
98
98
  * `feedConfig` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
99
99
  */
100
100
  config?: pulumi.Input<{
101
- [key: string]: any;
101
+ [key: string]: pulumi.Input<string>;
102
102
  }>;
103
103
  /**
104
104
  * The free form name of the data feed.
@@ -118,7 +118,7 @@ export interface DataFeedArgs {
118
118
  * `feedConfig` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
119
119
  */
120
120
  config?: pulumi.Input<{
121
- [key: string]: any;
121
+ [key: string]: pulumi.Input<string>;
122
122
  }>;
123
123
  /**
124
124
  * The free form name of the data feed.
package/dataSource.d.ts CHANGED
@@ -45,7 +45,7 @@ export declare class DataSource extends pulumi.CustomResource {
45
45
  * matching the specification in `config` from /data/sourcetypes.
46
46
  */
47
47
  readonly config: pulumi.Output<{
48
- [key: string]: any;
48
+ [key: string]: string;
49
49
  } | undefined>;
50
50
  /**
51
51
  * The free form name of the data source.
@@ -73,7 +73,7 @@ export interface DataSourceState {
73
73
  * matching the specification in `config` from /data/sourcetypes.
74
74
  */
75
75
  config?: pulumi.Input<{
76
- [key: string]: any;
76
+ [key: string]: pulumi.Input<string>;
77
77
  }>;
78
78
  /**
79
79
  * The free form name of the data source.
@@ -93,7 +93,7 @@ export interface DataSourceArgs {
93
93
  * matching the specification in `config` from /data/sourcetypes.
94
94
  */
95
95
  config?: pulumi.Input<{
96
- [key: string]: any;
96
+ [key: string]: pulumi.Input<string>;
97
97
  }>;
98
98
  /**
99
99
  * The free form name of the data source.
package/getRecord.d.ts CHANGED
@@ -62,7 +62,7 @@ export interface GetRecordResult {
62
62
  * Map of metadata
63
63
  */
64
64
  readonly meta: {
65
- [key: string]: any;
65
+ [key: string]: string;
66
66
  };
67
67
  readonly overrideTtl: boolean;
68
68
  /**
@@ -71,7 +71,7 @@ export interface GetRecordResult {
71
71
  readonly regions: outputs.GetRecordRegion[];
72
72
  readonly shortAnswers: string[];
73
73
  readonly tags: {
74
- [key: string]: any;
74
+ [key: string]: string;
75
75
  };
76
76
  /**
77
77
  * The records' time to live (in seconds).
package/getZone.d.ts CHANGED
@@ -96,7 +96,7 @@ export interface GetZoneResult {
96
96
  */
97
97
  readonly secondaries: outputs.GetZoneSecondary[];
98
98
  readonly tags: {
99
- [key: string]: any;
99
+ [key: string]: string;
100
100
  };
101
101
  /**
102
102
  * The SOA TTL.
@@ -24,9 +24,9 @@ import * as outputs from "./types/output";
24
24
  * policy: "quorum",
25
25
  * mute: true,
26
26
  * config: {
27
- * ssl: 1,
27
+ * ssl: "1",
28
28
  * send: "HEAD / HTTP/1.0\\r\\n\\r\\n",
29
- * port: 443,
29
+ * port: "443",
30
30
  * host: "example-elb-uswest.aws.amazon.com",
31
31
  * },
32
32
  * rules: [{
@@ -71,7 +71,7 @@ export declare class MonitoringJob extends pulumi.CustomResource {
71
71
  * A configuration dictionary with keys and values depending on the job_type. Configuration details for each jobType are found by submitting a GET request to https://api.nsone.net/v1/monitoring/jobtypes.
72
72
  */
73
73
  readonly config: pulumi.Output<{
74
- [key: string]: any;
74
+ [key: string]: string;
75
75
  }>;
76
76
  /**
77
77
  * The frequency, in seconds, at which to run the monitoring job in each region.
@@ -149,7 +149,7 @@ export interface MonitoringJobState {
149
149
  * A configuration dictionary with keys and values depending on the job_type. Configuration details for each jobType are found by submitting a GET request to https://api.nsone.net/v1/monitoring/jobtypes.
150
150
  */
151
151
  config?: pulumi.Input<{
152
- [key: string]: any;
152
+ [key: string]: pulumi.Input<string>;
153
153
  }>;
154
154
  /**
155
155
  * The frequency, in seconds, at which to run the monitoring job in each region.
@@ -219,7 +219,7 @@ export interface MonitoringJobArgs {
219
219
  * A configuration dictionary with keys and values depending on the job_type. Configuration details for each jobType are found by submitting a GET request to https://api.nsone.net/v1/monitoring/jobtypes.
220
220
  */
221
221
  config: pulumi.Input<{
222
- [key: string]: any;
222
+ [key: string]: pulumi.Input<string>;
223
223
  }>;
224
224
  /**
225
225
  * The frequency, in seconds, at which to run the monitoring job in each region.
package/monitoringJob.js CHANGED
@@ -28,9 +28,9 @@ const utilities = require("./utilities");
28
28
  * policy: "quorum",
29
29
  * mute: true,
30
30
  * config: {
31
- * ssl: 1,
31
+ * ssl: "1",
32
32
  * send: "HEAD / HTTP/1.0\\r\\n\\r\\n",
33
- * port: 443,
33
+ * port: "443",
34
34
  * host: "example-elb-uswest.aws.amazon.com",
35
35
  * },
36
36
  * rules: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/ns1",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "A Pulumi package for creating and managing ns1 cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "ns1",
26
- "version": "3.4.0"
26
+ "version": "3.4.1"
27
27
  }
28
28
  }
package/record.d.ts CHANGED
@@ -37,7 +37,7 @@ import * as outputs from "./types/output";
37
37
  * type: "CNAME",
38
38
  * ttl: 60,
39
39
  * meta: {
40
- * up: true,
40
+ * up: "true",
41
41
  * },
42
42
  * regions: [
43
43
  * {
@@ -65,7 +65,7 @@ import * as outputs from "./types/output";
65
65
  * answer: `sub2.${tld.zone}`,
66
66
  * meta: {
67
67
  * up: pulumi.interpolate`{"feed":"${bar.id}"}`,
68
- * connections: 3,
68
+ * connections: "3",
69
69
  * },
70
70
  * },
71
71
  * {
@@ -93,7 +93,7 @@ import * as outputs from "./types/output";
93
93
  * filters: [{
94
94
  * filter: "select_first_n",
95
95
  * config: {
96
- * N: 1,
96
+ * N: "1",
97
97
  * },
98
98
  * }],
99
99
  * });
@@ -177,7 +177,7 @@ export declare class Record extends pulumi.CustomResource {
177
177
  */
178
178
  readonly link: pulumi.Output<string | undefined>;
179
179
  readonly meta: pulumi.Output<{
180
- [key: string]: any;
180
+ [key: string]: string;
181
181
  } | undefined>;
182
182
  readonly overrideTtl: pulumi.Output<boolean | undefined>;
183
183
  /**
@@ -252,7 +252,7 @@ export interface RecordState {
252
252
  */
253
253
  link?: pulumi.Input<string>;
254
254
  meta?: pulumi.Input<{
255
- [key: string]: any;
255
+ [key: string]: pulumi.Input<string>;
256
256
  }>;
257
257
  overrideTtl?: pulumi.Input<boolean>;
258
258
  /**
@@ -319,7 +319,7 @@ export interface RecordArgs {
319
319
  */
320
320
  link?: pulumi.Input<string>;
321
321
  meta?: pulumi.Input<{
322
- [key: string]: any;
322
+ [key: string]: pulumi.Input<string>;
323
323
  }>;
324
324
  overrideTtl?: pulumi.Input<boolean>;
325
325
  /**
package/record.js CHANGED
@@ -41,7 +41,7 @@ const utilities = require("./utilities");
41
41
  * type: "CNAME",
42
42
  * ttl: 60,
43
43
  * meta: {
44
- * up: true,
44
+ * up: "true",
45
45
  * },
46
46
  * regions: [
47
47
  * {
@@ -69,7 +69,7 @@ const utilities = require("./utilities");
69
69
  * answer: `sub2.${tld.zone}`,
70
70
  * meta: {
71
71
  * up: pulumi.interpolate`{"feed":"${bar.id}"}`,
72
- * connections: 3,
72
+ * connections: "3",
73
73
  * },
74
74
  * },
75
75
  * {
@@ -97,7 +97,7 @@ const utilities = require("./utilities");
97
97
  * filters: [{
98
98
  * filter: "select_first_n",
99
99
  * config: {
100
- * N: 1,
100
+ * N: "1",
101
101
  * },
102
102
  * }],
103
103
  * });
package/types/input.d.ts CHANGED
@@ -40,7 +40,7 @@ export interface ApplicationDefaultConfig {
40
40
  }
41
41
  export interface DatasetDatatype {
42
42
  data: pulumi.Input<{
43
- [key: string]: any;
43
+ [key: string]: pulumi.Input<string>;
44
44
  }>;
45
45
  scope: pulumi.Input<string>;
46
46
  type: pulumi.Input<string>;
@@ -101,7 +101,7 @@ export interface NotifyListNotification {
101
101
  * Configuration details for the given notifier type.
102
102
  */
103
103
  config: pulumi.Input<{
104
- [key: string]: any;
104
+ [key: string]: pulumi.Input<string>;
105
105
  }>;
106
106
  /**
107
107
  * The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
@@ -153,7 +153,7 @@ export interface RecordAnswer {
153
153
  */
154
154
  answer?: pulumi.Input<string>;
155
155
  meta?: pulumi.Input<{
156
- [key: string]: any;
156
+ [key: string]: pulumi.Input<string>;
157
157
  }>;
158
158
  /**
159
159
  * The region (Answer Group really) that this answer
@@ -172,7 +172,7 @@ export interface RecordFilter {
172
172
  * determined by the filter type.
173
173
  */
174
174
  config?: pulumi.Input<{
175
- [key: string]: any;
175
+ [key: string]: pulumi.Input<string>;
176
176
  }>;
177
177
  /**
178
178
  * Determines whether the filter is applied in the
@@ -186,7 +186,7 @@ export interface RecordFilter {
186
186
  }
187
187
  export interface RecordRegion {
188
188
  meta?: pulumi.Input<{
189
- [key: string]: any;
189
+ [key: string]: pulumi.Input<string>;
190
190
  }>;
191
191
  /**
192
192
  * Name of the region (or Answer Group).
package/types/output.d.ts CHANGED
@@ -40,7 +40,7 @@ export interface ApplicationDefaultConfig {
40
40
  }
41
41
  export interface DatasetDatatype {
42
42
  data: {
43
- [key: string]: any;
43
+ [key: string]: string;
44
44
  };
45
45
  scope: string;
46
46
  type: string;
@@ -175,13 +175,13 @@ export interface GetRecordAnswer {
175
175
  * Map of metadata
176
176
  */
177
177
  meta: {
178
- [key: string]: any;
178
+ [key: string]: string;
179
179
  };
180
180
  region: string;
181
181
  }
182
182
  export interface GetRecordFilter {
183
183
  config: {
184
- [key: string]: any;
184
+ [key: string]: string;
185
185
  };
186
186
  disabled: boolean;
187
187
  filter: string;
@@ -191,7 +191,7 @@ export interface GetRecordRegion {
191
191
  * Map of metadata
192
192
  */
193
193
  meta: {
194
- [key: string]: any;
194
+ [key: string]: string;
195
195
  };
196
196
  name: string;
197
197
  }
@@ -225,7 +225,7 @@ export interface NotifyListNotification {
225
225
  * Configuration details for the given notifier type.
226
226
  */
227
227
  config: {
228
- [key: string]: any;
228
+ [key: string]: string;
229
229
  };
230
230
  /**
231
231
  * The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
@@ -277,7 +277,7 @@ export interface RecordAnswer {
277
277
  */
278
278
  answer?: string;
279
279
  meta?: {
280
- [key: string]: any;
280
+ [key: string]: string;
281
281
  };
282
282
  /**
283
283
  * The region (Answer Group really) that this answer
@@ -296,7 +296,7 @@ export interface RecordFilter {
296
296
  * determined by the filter type.
297
297
  */
298
298
  config?: {
299
- [key: string]: any;
299
+ [key: string]: string;
300
300
  };
301
301
  /**
302
302
  * Determines whether the filter is applied in the
@@ -310,7 +310,7 @@ export interface RecordFilter {
310
310
  }
311
311
  export interface RecordRegion {
312
312
  meta?: {
313
- [key: string]: any;
313
+ [key: string]: string;
314
314
  };
315
315
  /**
316
316
  * Name of the region (or Answer Group).
package/user.d.ts CHANGED
@@ -27,7 +27,7 @@ import * as outputs from "./types/output";
27
27
  * email: "user@example.com",
28
28
  * teams: [example.id],
29
29
  * notify: {
30
- * billing: false,
30
+ * billing: "false",
31
31
  * },
32
32
  * });
33
33
  * ```
@@ -189,7 +189,7 @@ export declare class User extends pulumi.CustomResource {
189
189
  * Whether or not to notify the user of specified events. Only `billing` is available currently.
190
190
  */
191
191
  readonly notify: pulumi.Output<{
192
- [key: string]: any;
192
+ [key: string]: string;
193
193
  } | undefined>;
194
194
  /**
195
195
  * Whether the user can manage global active directory.
@@ -337,7 +337,7 @@ export interface UserState {
337
337
  * Whether or not to notify the user of specified events. Only `billing` is available currently.
338
338
  */
339
339
  notify?: pulumi.Input<{
340
- [key: string]: any;
340
+ [key: string]: pulumi.Input<string>;
341
341
  }>;
342
342
  /**
343
343
  * Whether the user can manage global active directory.
@@ -477,7 +477,7 @@ export interface UserArgs {
477
477
  * Whether or not to notify the user of specified events. Only `billing` is available currently.
478
478
  */
479
479
  notify?: pulumi.Input<{
480
- [key: string]: any;
480
+ [key: string]: pulumi.Input<string>;
481
481
  }>;
482
482
  /**
483
483
  * Whether the user can manage global active directory.
package/user.js CHANGED
@@ -31,7 +31,7 @@ const utilities = require("./utilities");
31
31
  * email: "user@example.com",
32
32
  * teams: [example.id],
33
33
  * notify: {
34
- * billing: false,
34
+ * billing: "false",
35
35
  * },
36
36
  * });
37
37
  * ```