@pulumi/ns1 3.8.1 → 3.8.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/apikey.d.ts +45 -24
- package/apikey.js +4 -0
- package/apikey.js.map +1 -1
- package/package.json +2 -2
- package/team.d.ts +42 -21
- package/team.js +4 -0
- package/team.js.map +1 -1
- package/user.d.ts +45 -6
- package/user.js +4 -0
- package/user.js.map +1 -1
package/apikey.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ export declare class APIKey extends pulumi.CustomResource {
|
|
|
101
101
|
*/
|
|
102
102
|
readonly accountViewActivityLog: pulumi.Output<boolean | undefined>;
|
|
103
103
|
/**
|
|
104
|
-
* Whether the apikey can view invoices.
|
|
104
|
+
* , default: `false` Whether the apikey can view invoices.
|
|
105
105
|
*/
|
|
106
106
|
readonly accountViewInvoices: pulumi.Output<boolean | undefined>;
|
|
107
107
|
/**
|
|
@@ -144,6 +144,14 @@ export declare class APIKey extends pulumi.CustomResource {
|
|
|
144
144
|
* List of zones that the apikey may not access.
|
|
145
145
|
*/
|
|
146
146
|
readonly dnsZonesDenies: pulumi.Output<string[] | undefined>;
|
|
147
|
+
/**
|
|
148
|
+
* Whether the apikey can manage DNS insights.
|
|
149
|
+
*/
|
|
150
|
+
readonly insightsManageInsights: pulumi.Output<boolean | undefined>;
|
|
151
|
+
/**
|
|
152
|
+
* Whether the apikey can view DNS insights.
|
|
153
|
+
*/
|
|
154
|
+
readonly insightsViewInsights: pulumi.Output<boolean | undefined>;
|
|
147
155
|
/**
|
|
148
156
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
149
157
|
*/
|
|
@@ -157,15 +165,15 @@ export declare class APIKey extends pulumi.CustomResource {
|
|
|
157
165
|
*/
|
|
158
166
|
readonly key: pulumi.Output<string>;
|
|
159
167
|
/**
|
|
160
|
-
* Whether the
|
|
168
|
+
* Whether the apikey can create monitoring jobs when manageJobs is not set to true.
|
|
161
169
|
*/
|
|
162
170
|
readonly monitoringCreateJobs: pulumi.Output<boolean | undefined>;
|
|
163
171
|
/**
|
|
164
|
-
* Whether the
|
|
172
|
+
* Whether the apikey can delete monitoring jobs when manageJobs is not set to true.
|
|
165
173
|
*/
|
|
166
174
|
readonly monitoringDeleteJobs: pulumi.Output<boolean | undefined>;
|
|
167
175
|
/**
|
|
168
|
-
* Whether the
|
|
176
|
+
* Whether the apikey can create, update, and delete monitoring jobs.
|
|
169
177
|
*/
|
|
170
178
|
readonly monitoringManageJobs: pulumi.Output<boolean | undefined>;
|
|
171
179
|
/**
|
|
@@ -173,7 +181,7 @@ export declare class APIKey extends pulumi.CustomResource {
|
|
|
173
181
|
*/
|
|
174
182
|
readonly monitoringManageLists: pulumi.Output<boolean | undefined>;
|
|
175
183
|
/**
|
|
176
|
-
* Whether the
|
|
184
|
+
* Whether the apikey can update monitoring jobs when manageJobs is not set to true.
|
|
177
185
|
*/
|
|
178
186
|
readonly monitoringUpdateJobs: pulumi.Output<boolean | undefined>;
|
|
179
187
|
/**
|
|
@@ -185,12 +193,11 @@ export declare class APIKey extends pulumi.CustomResource {
|
|
|
185
193
|
*/
|
|
186
194
|
readonly name: pulumi.Output<string>;
|
|
187
195
|
/**
|
|
188
|
-
* Whether the
|
|
189
|
-
* Only relevant for the DDI product.
|
|
196
|
+
* Whether the apikey can manage redirects.
|
|
190
197
|
*/
|
|
191
198
|
readonly redirectsManageRedirects: pulumi.Output<boolean | undefined>;
|
|
192
199
|
/**
|
|
193
|
-
* Whether the apikey can manage global active directory.
|
|
200
|
+
* Whether the apikey can manage global active directory. Only relevant for the DDI product.
|
|
194
201
|
*/
|
|
195
202
|
readonly securityManageActiveDirectory: pulumi.Output<boolean | undefined>;
|
|
196
203
|
/**
|
|
@@ -249,7 +256,7 @@ export interface APIKeyState {
|
|
|
249
256
|
*/
|
|
250
257
|
accountViewActivityLog?: pulumi.Input<boolean>;
|
|
251
258
|
/**
|
|
252
|
-
* Whether the apikey can view invoices.
|
|
259
|
+
* , default: `false` Whether the apikey can view invoices.
|
|
253
260
|
*/
|
|
254
261
|
accountViewInvoices?: pulumi.Input<boolean>;
|
|
255
262
|
/**
|
|
@@ -292,6 +299,14 @@ export interface APIKeyState {
|
|
|
292
299
|
* List of zones that the apikey may not access.
|
|
293
300
|
*/
|
|
294
301
|
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
302
|
+
/**
|
|
303
|
+
* Whether the apikey can manage DNS insights.
|
|
304
|
+
*/
|
|
305
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
306
|
+
/**
|
|
307
|
+
* Whether the apikey can view DNS insights.
|
|
308
|
+
*/
|
|
309
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
295
310
|
/**
|
|
296
311
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
297
312
|
*/
|
|
@@ -305,15 +320,15 @@ export interface APIKeyState {
|
|
|
305
320
|
*/
|
|
306
321
|
key?: pulumi.Input<string>;
|
|
307
322
|
/**
|
|
308
|
-
* Whether the
|
|
323
|
+
* Whether the apikey can create monitoring jobs when manageJobs is not set to true.
|
|
309
324
|
*/
|
|
310
325
|
monitoringCreateJobs?: pulumi.Input<boolean>;
|
|
311
326
|
/**
|
|
312
|
-
* Whether the
|
|
327
|
+
* Whether the apikey can delete monitoring jobs when manageJobs is not set to true.
|
|
313
328
|
*/
|
|
314
329
|
monitoringDeleteJobs?: pulumi.Input<boolean>;
|
|
315
330
|
/**
|
|
316
|
-
* Whether the
|
|
331
|
+
* Whether the apikey can create, update, and delete monitoring jobs.
|
|
317
332
|
*/
|
|
318
333
|
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
319
334
|
/**
|
|
@@ -321,7 +336,7 @@ export interface APIKeyState {
|
|
|
321
336
|
*/
|
|
322
337
|
monitoringManageLists?: pulumi.Input<boolean>;
|
|
323
338
|
/**
|
|
324
|
-
* Whether the
|
|
339
|
+
* Whether the apikey can update monitoring jobs when manageJobs is not set to true.
|
|
325
340
|
*/
|
|
326
341
|
monitoringUpdateJobs?: pulumi.Input<boolean>;
|
|
327
342
|
/**
|
|
@@ -333,12 +348,11 @@ export interface APIKeyState {
|
|
|
333
348
|
*/
|
|
334
349
|
name?: pulumi.Input<string>;
|
|
335
350
|
/**
|
|
336
|
-
* Whether the
|
|
337
|
-
* Only relevant for the DDI product.
|
|
351
|
+
* Whether the apikey can manage redirects.
|
|
338
352
|
*/
|
|
339
353
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
340
354
|
/**
|
|
341
|
-
* Whether the apikey can manage global active directory.
|
|
355
|
+
* Whether the apikey can manage global active directory. Only relevant for the DDI product.
|
|
342
356
|
*/
|
|
343
357
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
344
358
|
/**
|
|
@@ -389,7 +403,7 @@ export interface APIKeyArgs {
|
|
|
389
403
|
*/
|
|
390
404
|
accountViewActivityLog?: pulumi.Input<boolean>;
|
|
391
405
|
/**
|
|
392
|
-
* Whether the apikey can view invoices.
|
|
406
|
+
* , default: `false` Whether the apikey can view invoices.
|
|
393
407
|
*/
|
|
394
408
|
accountViewInvoices?: pulumi.Input<boolean>;
|
|
395
409
|
/**
|
|
@@ -432,6 +446,14 @@ export interface APIKeyArgs {
|
|
|
432
446
|
* List of zones that the apikey may not access.
|
|
433
447
|
*/
|
|
434
448
|
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
449
|
+
/**
|
|
450
|
+
* Whether the apikey can manage DNS insights.
|
|
451
|
+
*/
|
|
452
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
453
|
+
/**
|
|
454
|
+
* Whether the apikey can view DNS insights.
|
|
455
|
+
*/
|
|
456
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
435
457
|
/**
|
|
436
458
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
437
459
|
*/
|
|
@@ -441,15 +463,15 @@ export interface APIKeyArgs {
|
|
|
441
463
|
*/
|
|
442
464
|
ipWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
443
465
|
/**
|
|
444
|
-
* Whether the
|
|
466
|
+
* Whether the apikey can create monitoring jobs when manageJobs is not set to true.
|
|
445
467
|
*/
|
|
446
468
|
monitoringCreateJobs?: pulumi.Input<boolean>;
|
|
447
469
|
/**
|
|
448
|
-
* Whether the
|
|
470
|
+
* Whether the apikey can delete monitoring jobs when manageJobs is not set to true.
|
|
449
471
|
*/
|
|
450
472
|
monitoringDeleteJobs?: pulumi.Input<boolean>;
|
|
451
473
|
/**
|
|
452
|
-
* Whether the
|
|
474
|
+
* Whether the apikey can create, update, and delete monitoring jobs.
|
|
453
475
|
*/
|
|
454
476
|
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
455
477
|
/**
|
|
@@ -457,7 +479,7 @@ export interface APIKeyArgs {
|
|
|
457
479
|
*/
|
|
458
480
|
monitoringManageLists?: pulumi.Input<boolean>;
|
|
459
481
|
/**
|
|
460
|
-
* Whether the
|
|
482
|
+
* Whether the apikey can update monitoring jobs when manageJobs is not set to true.
|
|
461
483
|
*/
|
|
462
484
|
monitoringUpdateJobs?: pulumi.Input<boolean>;
|
|
463
485
|
/**
|
|
@@ -469,12 +491,11 @@ export interface APIKeyArgs {
|
|
|
469
491
|
*/
|
|
470
492
|
name?: pulumi.Input<string>;
|
|
471
493
|
/**
|
|
472
|
-
* Whether the
|
|
473
|
-
* Only relevant for the DDI product.
|
|
494
|
+
* Whether the apikey can manage redirects.
|
|
474
495
|
*/
|
|
475
496
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
476
497
|
/**
|
|
477
|
-
* Whether the apikey can manage global active directory.
|
|
498
|
+
* Whether the apikey can manage global active directory. Only relevant for the DDI product.
|
|
478
499
|
*/
|
|
479
500
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
480
501
|
/**
|
package/apikey.js
CHANGED
|
@@ -101,6 +101,8 @@ class APIKey extends pulumi.CustomResource {
|
|
|
101
101
|
resourceInputs["dnsZonesAllowByDefault"] = state?.dnsZonesAllowByDefault;
|
|
102
102
|
resourceInputs["dnsZonesAllows"] = state?.dnsZonesAllows;
|
|
103
103
|
resourceInputs["dnsZonesDenies"] = state?.dnsZonesDenies;
|
|
104
|
+
resourceInputs["insightsManageInsights"] = state?.insightsManageInsights;
|
|
105
|
+
resourceInputs["insightsViewInsights"] = state?.insightsViewInsights;
|
|
104
106
|
resourceInputs["ipWhitelistStrict"] = state?.ipWhitelistStrict;
|
|
105
107
|
resourceInputs["ipWhitelists"] = state?.ipWhitelists;
|
|
106
108
|
resourceInputs["key"] = state?.key;
|
|
@@ -137,6 +139,8 @@ class APIKey extends pulumi.CustomResource {
|
|
|
137
139
|
resourceInputs["dnsZonesAllowByDefault"] = args?.dnsZonesAllowByDefault;
|
|
138
140
|
resourceInputs["dnsZonesAllows"] = args?.dnsZonesAllows;
|
|
139
141
|
resourceInputs["dnsZonesDenies"] = args?.dnsZonesDenies;
|
|
142
|
+
resourceInputs["insightsManageInsights"] = args?.insightsManageInsights;
|
|
143
|
+
resourceInputs["insightsViewInsights"] = args?.insightsViewInsights;
|
|
140
144
|
resourceInputs["ipWhitelistStrict"] = args?.ipWhitelistStrict;
|
|
141
145
|
resourceInputs["ipWhitelists"] = args?.ipWhitelists;
|
|
142
146
|
resourceInputs["monitoringCreateJobs"] = args?.monitoringCreateJobs;
|
package/apikey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apikey.js","sourceRoot":"","sources":["../apikey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"apikey.js","sourceRoot":"","sources":["../apikey.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ns1",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.2",
|
|
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.8.
|
|
26
|
+
"version": "3.8.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/team.d.ts
CHANGED
|
@@ -152,20 +152,28 @@ export declare class Team extends pulumi.CustomResource {
|
|
|
152
152
|
* List of zones that the team may not access.
|
|
153
153
|
*/
|
|
154
154
|
readonly dnsZonesDenies: pulumi.Output<string[] | undefined>;
|
|
155
|
+
/**
|
|
156
|
+
* Whether the team can manage DNS insights.
|
|
157
|
+
*/
|
|
158
|
+
readonly insightsManageInsights: pulumi.Output<boolean | undefined>;
|
|
159
|
+
/**
|
|
160
|
+
* Whether the team can view DNS insights.
|
|
161
|
+
*/
|
|
162
|
+
readonly insightsViewInsights: pulumi.Output<boolean | undefined>;
|
|
155
163
|
/**
|
|
156
164
|
* Array of IP addresses objects to chich to grant the team access. Each object includes a **name** (string), and **values** (array of strings) associated to each "allow" list.
|
|
157
165
|
*/
|
|
158
166
|
readonly ipWhitelists: pulumi.Output<outputs.TeamIpWhitelist[] | undefined>;
|
|
159
167
|
/**
|
|
160
|
-
* Whether the
|
|
168
|
+
* Whether the team can create monitoring jobs when manageJobs is not set to true.
|
|
161
169
|
*/
|
|
162
170
|
readonly monitoringCreateJobs: pulumi.Output<boolean | undefined>;
|
|
163
171
|
/**
|
|
164
|
-
* Whether the
|
|
172
|
+
* Whether the team can delete monitoring jobs when manageJobs is not set to true.
|
|
165
173
|
*/
|
|
166
174
|
readonly monitoringDeleteJobs: pulumi.Output<boolean | undefined>;
|
|
167
175
|
/**
|
|
168
|
-
* Whether the
|
|
176
|
+
* Whether the team can create, update, and delete monitoring jobs.
|
|
169
177
|
*/
|
|
170
178
|
readonly monitoringManageJobs: pulumi.Output<boolean | undefined>;
|
|
171
179
|
/**
|
|
@@ -173,7 +181,7 @@ export declare class Team extends pulumi.CustomResource {
|
|
|
173
181
|
*/
|
|
174
182
|
readonly monitoringManageLists: pulumi.Output<boolean | undefined>;
|
|
175
183
|
/**
|
|
176
|
-
* Whether the
|
|
184
|
+
* Whether the team can update monitoring jobs when manageJobs is not set to true.
|
|
177
185
|
*/
|
|
178
186
|
readonly monitoringUpdateJobs: pulumi.Output<boolean | undefined>;
|
|
179
187
|
/**
|
|
@@ -185,12 +193,11 @@ export declare class Team extends pulumi.CustomResource {
|
|
|
185
193
|
*/
|
|
186
194
|
readonly name: pulumi.Output<string>;
|
|
187
195
|
/**
|
|
188
|
-
* Whether the
|
|
189
|
-
* Only relevant for the DDI product.
|
|
196
|
+
* Whether the team can manage redirects.
|
|
190
197
|
*/
|
|
191
198
|
readonly redirectsManageRedirects: pulumi.Output<boolean | undefined>;
|
|
192
199
|
/**
|
|
193
|
-
* Whether the team can manage global active directory.
|
|
200
|
+
* Whether the team can manage global active directory. Only relevant for the DDI product.
|
|
194
201
|
*/
|
|
195
202
|
readonly securityManageActiveDirectory: pulumi.Output<boolean | undefined>;
|
|
196
203
|
/**
|
|
@@ -288,20 +295,28 @@ export interface TeamState {
|
|
|
288
295
|
* List of zones that the team may not access.
|
|
289
296
|
*/
|
|
290
297
|
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
298
|
+
/**
|
|
299
|
+
* Whether the team can manage DNS insights.
|
|
300
|
+
*/
|
|
301
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
302
|
+
/**
|
|
303
|
+
* Whether the team can view DNS insights.
|
|
304
|
+
*/
|
|
305
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
291
306
|
/**
|
|
292
307
|
* Array of IP addresses objects to chich to grant the team access. Each object includes a **name** (string), and **values** (array of strings) associated to each "allow" list.
|
|
293
308
|
*/
|
|
294
309
|
ipWhitelists?: pulumi.Input<pulumi.Input<inputs.TeamIpWhitelist>[]>;
|
|
295
310
|
/**
|
|
296
|
-
* Whether the
|
|
311
|
+
* Whether the team can create monitoring jobs when manageJobs is not set to true.
|
|
297
312
|
*/
|
|
298
313
|
monitoringCreateJobs?: pulumi.Input<boolean>;
|
|
299
314
|
/**
|
|
300
|
-
* Whether the
|
|
315
|
+
* Whether the team can delete monitoring jobs when manageJobs is not set to true.
|
|
301
316
|
*/
|
|
302
317
|
monitoringDeleteJobs?: pulumi.Input<boolean>;
|
|
303
318
|
/**
|
|
304
|
-
* Whether the
|
|
319
|
+
* Whether the team can create, update, and delete monitoring jobs.
|
|
305
320
|
*/
|
|
306
321
|
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
307
322
|
/**
|
|
@@ -309,7 +324,7 @@ export interface TeamState {
|
|
|
309
324
|
*/
|
|
310
325
|
monitoringManageLists?: pulumi.Input<boolean>;
|
|
311
326
|
/**
|
|
312
|
-
* Whether the
|
|
327
|
+
* Whether the team can update monitoring jobs when manageJobs is not set to true.
|
|
313
328
|
*/
|
|
314
329
|
monitoringUpdateJobs?: pulumi.Input<boolean>;
|
|
315
330
|
/**
|
|
@@ -321,12 +336,11 @@ export interface TeamState {
|
|
|
321
336
|
*/
|
|
322
337
|
name?: pulumi.Input<string>;
|
|
323
338
|
/**
|
|
324
|
-
* Whether the
|
|
325
|
-
* Only relevant for the DDI product.
|
|
339
|
+
* Whether the team can manage redirects.
|
|
326
340
|
*/
|
|
327
341
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
328
342
|
/**
|
|
329
|
-
* Whether the team can manage global active directory.
|
|
343
|
+
* Whether the team can manage global active directory. Only relevant for the DDI product.
|
|
330
344
|
*/
|
|
331
345
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
332
346
|
/**
|
|
@@ -416,20 +430,28 @@ export interface TeamArgs {
|
|
|
416
430
|
* List of zones that the team may not access.
|
|
417
431
|
*/
|
|
418
432
|
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
433
|
+
/**
|
|
434
|
+
* Whether the team can manage DNS insights.
|
|
435
|
+
*/
|
|
436
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
437
|
+
/**
|
|
438
|
+
* Whether the team can view DNS insights.
|
|
439
|
+
*/
|
|
440
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
419
441
|
/**
|
|
420
442
|
* Array of IP addresses objects to chich to grant the team access. Each object includes a **name** (string), and **values** (array of strings) associated to each "allow" list.
|
|
421
443
|
*/
|
|
422
444
|
ipWhitelists?: pulumi.Input<pulumi.Input<inputs.TeamIpWhitelist>[]>;
|
|
423
445
|
/**
|
|
424
|
-
* Whether the
|
|
446
|
+
* Whether the team can create monitoring jobs when manageJobs is not set to true.
|
|
425
447
|
*/
|
|
426
448
|
monitoringCreateJobs?: pulumi.Input<boolean>;
|
|
427
449
|
/**
|
|
428
|
-
* Whether the
|
|
450
|
+
* Whether the team can delete monitoring jobs when manageJobs is not set to true.
|
|
429
451
|
*/
|
|
430
452
|
monitoringDeleteJobs?: pulumi.Input<boolean>;
|
|
431
453
|
/**
|
|
432
|
-
* Whether the
|
|
454
|
+
* Whether the team can create, update, and delete monitoring jobs.
|
|
433
455
|
*/
|
|
434
456
|
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
435
457
|
/**
|
|
@@ -437,7 +459,7 @@ export interface TeamArgs {
|
|
|
437
459
|
*/
|
|
438
460
|
monitoringManageLists?: pulumi.Input<boolean>;
|
|
439
461
|
/**
|
|
440
|
-
* Whether the
|
|
462
|
+
* Whether the team can update monitoring jobs when manageJobs is not set to true.
|
|
441
463
|
*/
|
|
442
464
|
monitoringUpdateJobs?: pulumi.Input<boolean>;
|
|
443
465
|
/**
|
|
@@ -449,12 +471,11 @@ export interface TeamArgs {
|
|
|
449
471
|
*/
|
|
450
472
|
name?: pulumi.Input<string>;
|
|
451
473
|
/**
|
|
452
|
-
* Whether the
|
|
453
|
-
* Only relevant for the DDI product.
|
|
474
|
+
* Whether the team can manage redirects.
|
|
454
475
|
*/
|
|
455
476
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
456
477
|
/**
|
|
457
|
-
* Whether the team can manage global active directory.
|
|
478
|
+
* Whether the team can manage global active directory. Only relevant for the DDI product.
|
|
458
479
|
*/
|
|
459
480
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
460
481
|
/**
|
package/team.js
CHANGED
|
@@ -109,6 +109,8 @@ class Team extends pulumi.CustomResource {
|
|
|
109
109
|
resourceInputs["dnsZonesAllowByDefault"] = state?.dnsZonesAllowByDefault;
|
|
110
110
|
resourceInputs["dnsZonesAllows"] = state?.dnsZonesAllows;
|
|
111
111
|
resourceInputs["dnsZonesDenies"] = state?.dnsZonesDenies;
|
|
112
|
+
resourceInputs["insightsManageInsights"] = state?.insightsManageInsights;
|
|
113
|
+
resourceInputs["insightsViewInsights"] = state?.insightsViewInsights;
|
|
112
114
|
resourceInputs["ipWhitelists"] = state?.ipWhitelists;
|
|
113
115
|
resourceInputs["monitoringCreateJobs"] = state?.monitoringCreateJobs;
|
|
114
116
|
resourceInputs["monitoringDeleteJobs"] = state?.monitoringDeleteJobs;
|
|
@@ -142,6 +144,8 @@ class Team extends pulumi.CustomResource {
|
|
|
142
144
|
resourceInputs["dnsZonesAllowByDefault"] = args?.dnsZonesAllowByDefault;
|
|
143
145
|
resourceInputs["dnsZonesAllows"] = args?.dnsZonesAllows;
|
|
144
146
|
resourceInputs["dnsZonesDenies"] = args?.dnsZonesDenies;
|
|
147
|
+
resourceInputs["insightsManageInsights"] = args?.insightsManageInsights;
|
|
148
|
+
resourceInputs["insightsViewInsights"] = args?.insightsViewInsights;
|
|
145
149
|
resourceInputs["ipWhitelists"] = args?.ipWhitelists;
|
|
146
150
|
resourceInputs["monitoringCreateJobs"] = args?.monitoringCreateJobs;
|
|
147
151
|
resourceInputs["monitoringDeleteJobs"] = args?.monitoringDeleteJobs;
|
package/team.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team.js","sourceRoot":"","sources":["../team.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"team.js","sourceRoot":"","sources":["../team.ts"],"names":[],"mappings":"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"}
|
package/user.d.ts
CHANGED
|
@@ -125,7 +125,13 @@ export declare class User extends pulumi.CustomResource {
|
|
|
125
125
|
* Whether the user can modify the accounts zones.
|
|
126
126
|
*/
|
|
127
127
|
readonly dnsManageZones: pulumi.Output<boolean | undefined>;
|
|
128
|
+
/**
|
|
129
|
+
* List of records that the user may access.
|
|
130
|
+
*/
|
|
128
131
|
readonly dnsRecordsAllows: pulumi.Output<outputs.UserDnsRecordsAllow[] | undefined>;
|
|
132
|
+
/**
|
|
133
|
+
* List of records that the user may not access.
|
|
134
|
+
*/
|
|
129
135
|
readonly dnsRecordsDenies: pulumi.Output<outputs.UserDnsRecordsDeny[] | undefined>;
|
|
130
136
|
/**
|
|
131
137
|
* Whether the user can view the accounts zones.
|
|
@@ -147,6 +153,14 @@ export declare class User extends pulumi.CustomResource {
|
|
|
147
153
|
* The email address of the user.
|
|
148
154
|
*/
|
|
149
155
|
readonly email: pulumi.Output<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Whether the user can manage DNS insights.
|
|
158
|
+
*/
|
|
159
|
+
readonly insightsManageInsights: pulumi.Output<boolean | undefined>;
|
|
160
|
+
/**
|
|
161
|
+
* Whether the user can view DNS insights.
|
|
162
|
+
*/
|
|
163
|
+
readonly insightsViewInsights: pulumi.Output<boolean | undefined>;
|
|
150
164
|
/**
|
|
151
165
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
152
166
|
*/
|
|
@@ -193,11 +207,10 @@ export declare class User extends pulumi.CustomResource {
|
|
|
193
207
|
}>;
|
|
194
208
|
/**
|
|
195
209
|
* Whether the user can manage redirects.
|
|
196
|
-
* Only relevant for the DDI product.
|
|
197
210
|
*/
|
|
198
211
|
readonly redirectsManageRedirects: pulumi.Output<boolean | undefined>;
|
|
199
212
|
/**
|
|
200
|
-
* Whether the user can manage global active directory.
|
|
213
|
+
* Whether the user can manage global active directory. Only relevant for the DDI product.
|
|
201
214
|
*/
|
|
202
215
|
readonly securityManageActiveDirectory: pulumi.Output<boolean | undefined>;
|
|
203
216
|
/**
|
|
@@ -279,7 +292,13 @@ export interface UserState {
|
|
|
279
292
|
* Whether the user can modify the accounts zones.
|
|
280
293
|
*/
|
|
281
294
|
dnsManageZones?: pulumi.Input<boolean>;
|
|
295
|
+
/**
|
|
296
|
+
* List of records that the user may access.
|
|
297
|
+
*/
|
|
282
298
|
dnsRecordsAllows?: pulumi.Input<pulumi.Input<inputs.UserDnsRecordsAllow>[]>;
|
|
299
|
+
/**
|
|
300
|
+
* List of records that the user may not access.
|
|
301
|
+
*/
|
|
283
302
|
dnsRecordsDenies?: pulumi.Input<pulumi.Input<inputs.UserDnsRecordsDeny>[]>;
|
|
284
303
|
/**
|
|
285
304
|
* Whether the user can view the accounts zones.
|
|
@@ -301,6 +320,14 @@ export interface UserState {
|
|
|
301
320
|
* The email address of the user.
|
|
302
321
|
*/
|
|
303
322
|
email?: pulumi.Input<string>;
|
|
323
|
+
/**
|
|
324
|
+
* Whether the user can manage DNS insights.
|
|
325
|
+
*/
|
|
326
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
327
|
+
/**
|
|
328
|
+
* Whether the user can view DNS insights.
|
|
329
|
+
*/
|
|
330
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
304
331
|
/**
|
|
305
332
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
306
333
|
*/
|
|
@@ -347,11 +374,10 @@ export interface UserState {
|
|
|
347
374
|
}>;
|
|
348
375
|
/**
|
|
349
376
|
* Whether the user can manage redirects.
|
|
350
|
-
* Only relevant for the DDI product.
|
|
351
377
|
*/
|
|
352
378
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
353
379
|
/**
|
|
354
|
-
* Whether the user can manage global active directory.
|
|
380
|
+
* Whether the user can manage global active directory. Only relevant for the DDI product.
|
|
355
381
|
*/
|
|
356
382
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
357
383
|
/**
|
|
@@ -425,7 +451,13 @@ export interface UserArgs {
|
|
|
425
451
|
* Whether the user can modify the accounts zones.
|
|
426
452
|
*/
|
|
427
453
|
dnsManageZones?: pulumi.Input<boolean>;
|
|
454
|
+
/**
|
|
455
|
+
* List of records that the user may access.
|
|
456
|
+
*/
|
|
428
457
|
dnsRecordsAllows?: pulumi.Input<pulumi.Input<inputs.UserDnsRecordsAllow>[]>;
|
|
458
|
+
/**
|
|
459
|
+
* List of records that the user may not access.
|
|
460
|
+
*/
|
|
429
461
|
dnsRecordsDenies?: pulumi.Input<pulumi.Input<inputs.UserDnsRecordsDeny>[]>;
|
|
430
462
|
/**
|
|
431
463
|
* Whether the user can view the accounts zones.
|
|
@@ -447,6 +479,14 @@ export interface UserArgs {
|
|
|
447
479
|
* The email address of the user.
|
|
448
480
|
*/
|
|
449
481
|
email: pulumi.Input<string>;
|
|
482
|
+
/**
|
|
483
|
+
* Whether the user can manage DNS insights.
|
|
484
|
+
*/
|
|
485
|
+
insightsManageInsights?: pulumi.Input<boolean>;
|
|
486
|
+
/**
|
|
487
|
+
* Whether the user can view DNS insights.
|
|
488
|
+
*/
|
|
489
|
+
insightsViewInsights?: pulumi.Input<boolean>;
|
|
450
490
|
/**
|
|
451
491
|
* Set to true to restrict access to only those IP addresses and networks listed in the **ip_whitelist** field.
|
|
452
492
|
*/
|
|
@@ -493,11 +533,10 @@ export interface UserArgs {
|
|
|
493
533
|
}>;
|
|
494
534
|
/**
|
|
495
535
|
* Whether the user can manage redirects.
|
|
496
|
-
* Only relevant for the DDI product.
|
|
497
536
|
*/
|
|
498
537
|
redirectsManageRedirects?: pulumi.Input<boolean>;
|
|
499
538
|
/**
|
|
500
|
-
* Whether the user can manage global active directory.
|
|
539
|
+
* Whether the user can manage global active directory. Only relevant for the DDI product.
|
|
501
540
|
*/
|
|
502
541
|
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
503
542
|
/**
|
package/user.js
CHANGED
|
@@ -107,6 +107,8 @@ class User extends pulumi.CustomResource {
|
|
|
107
107
|
resourceInputs["dnsZonesAllows"] = state?.dnsZonesAllows;
|
|
108
108
|
resourceInputs["dnsZonesDenies"] = state?.dnsZonesDenies;
|
|
109
109
|
resourceInputs["email"] = state?.email;
|
|
110
|
+
resourceInputs["insightsManageInsights"] = state?.insightsManageInsights;
|
|
111
|
+
resourceInputs["insightsViewInsights"] = state?.insightsViewInsights;
|
|
110
112
|
resourceInputs["ipWhitelistStrict"] = state?.ipWhitelistStrict;
|
|
111
113
|
resourceInputs["ipWhitelists"] = state?.ipWhitelists;
|
|
112
114
|
resourceInputs["monitoringCreateJobs"] = state?.monitoringCreateJobs;
|
|
@@ -151,6 +153,8 @@ class User extends pulumi.CustomResource {
|
|
|
151
153
|
resourceInputs["dnsZonesAllows"] = args?.dnsZonesAllows;
|
|
152
154
|
resourceInputs["dnsZonesDenies"] = args?.dnsZonesDenies;
|
|
153
155
|
resourceInputs["email"] = args?.email;
|
|
156
|
+
resourceInputs["insightsManageInsights"] = args?.insightsManageInsights;
|
|
157
|
+
resourceInputs["insightsViewInsights"] = args?.insightsViewInsights;
|
|
154
158
|
resourceInputs["ipWhitelistStrict"] = args?.ipWhitelistStrict;
|
|
155
159
|
resourceInputs["ipWhitelists"] = args?.ipWhitelists;
|
|
156
160
|
resourceInputs["monitoringCreateJobs"] = args?.monitoringCreateJobs;
|
package/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":"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"}
|