pulumi-ns1 3.2.0a1710157241__py3-none-any.whl → 3.6.0a1736834553__py3-none-any.whl
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.
- pulumi_ns1/__init__.py +31 -3
- pulumi_ns1/_inputs.py +584 -14
- pulumi_ns1/_utilities.py +41 -5
- pulumi_ns1/account_whitelist.py +17 -12
- pulumi_ns1/alert.py +549 -0
- pulumi_ns1/api_key.py +157 -235
- pulumi_ns1/application.py +10 -49
- pulumi_ns1/config/__init__.pyi +5 -5
- pulumi_ns1/config/vars.py +5 -7
- pulumi_ns1/data_feed.py +45 -30
- pulumi_ns1/data_source.py +25 -20
- pulumi_ns1/dataset.py +330 -0
- pulumi_ns1/dnsview.py +5 -0
- pulumi_ns1/get_dns_sec.py +23 -17
- pulumi_ns1/get_monitoring_regions.py +119 -0
- pulumi_ns1/get_networks.py +14 -9
- pulumi_ns1/get_record.py +49 -18
- pulumi_ns1/get_zone.py +35 -10
- pulumi_ns1/monitoring_job.py +60 -57
- pulumi_ns1/notify_list.py +38 -33
- pulumi_ns1/outputs.py +257 -18
- pulumi_ns1/provider.py +5 -20
- pulumi_ns1/pulsar_job.py +14 -9
- pulumi_ns1/pulumi-plugin.json +2 -1
- pulumi_ns1/record.py +308 -34
- pulumi_ns1/redirect.py +715 -0
- pulumi_ns1/redirect_certificate.py +236 -0
- pulumi_ns1/team.py +187 -263
- pulumi_ns1/tsigkey.py +7 -4
- pulumi_ns1/user.py +166 -222
- pulumi_ns1/zone.py +23 -5
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.6.0a1736834553.dist-info}/METADATA +7 -6
- pulumi_ns1-3.6.0a1736834553.dist-info/RECORD +37 -0
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.6.0a1736834553.dist-info}/WHEEL +1 -1
- pulumi_ns1/subnet.py +0 -504
- pulumi_ns1-3.2.0a1710157241.dist-info/RECORD +0 -33
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.6.0a1736834553.dist-info}/top_level.txt +0 -0
pulumi_ns1/_inputs.py
CHANGED
@@ -4,31 +4,74 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'APIKeyDnsRecordsAllowArgs',
|
19
|
+
'APIKeyDnsRecordsAllowArgsDict',
|
14
20
|
'APIKeyDnsRecordsDenyArgs',
|
21
|
+
'APIKeyDnsRecordsDenyArgsDict',
|
15
22
|
'ApplicationDefaultConfigArgs',
|
23
|
+
'ApplicationDefaultConfigArgsDict',
|
24
|
+
'DatasetDatatypeArgs',
|
25
|
+
'DatasetDatatypeArgsDict',
|
26
|
+
'DatasetRepeatArgs',
|
27
|
+
'DatasetRepeatArgsDict',
|
28
|
+
'DatasetReportArgs',
|
29
|
+
'DatasetReportArgsDict',
|
30
|
+
'DatasetTimeframeArgs',
|
31
|
+
'DatasetTimeframeArgsDict',
|
16
32
|
'MonitoringJobRuleArgs',
|
33
|
+
'MonitoringJobRuleArgsDict',
|
17
34
|
'NotifyListNotificationArgs',
|
35
|
+
'NotifyListNotificationArgsDict',
|
18
36
|
'PulsarJobBlendMetricWeightsArgs',
|
37
|
+
'PulsarJobBlendMetricWeightsArgsDict',
|
19
38
|
'PulsarJobConfigArgs',
|
39
|
+
'PulsarJobConfigArgsDict',
|
20
40
|
'PulsarJobWeightArgs',
|
41
|
+
'PulsarJobWeightArgsDict',
|
21
42
|
'RecordAnswerArgs',
|
43
|
+
'RecordAnswerArgsDict',
|
22
44
|
'RecordFilterArgs',
|
45
|
+
'RecordFilterArgsDict',
|
23
46
|
'RecordRegionArgs',
|
47
|
+
'RecordRegionArgsDict',
|
24
48
|
'TeamDnsRecordsAllowArgs',
|
49
|
+
'TeamDnsRecordsAllowArgsDict',
|
25
50
|
'TeamDnsRecordsDenyArgs',
|
51
|
+
'TeamDnsRecordsDenyArgsDict',
|
26
52
|
'TeamIpWhitelistArgs',
|
53
|
+
'TeamIpWhitelistArgsDict',
|
27
54
|
'UserDnsRecordsAllowArgs',
|
55
|
+
'UserDnsRecordsAllowArgsDict',
|
28
56
|
'UserDnsRecordsDenyArgs',
|
57
|
+
'UserDnsRecordsDenyArgsDict',
|
29
58
|
'ZoneSecondaryArgs',
|
59
|
+
'ZoneSecondaryArgsDict',
|
60
|
+
'GetMonitoringRegionsRegionArgs',
|
61
|
+
'GetMonitoringRegionsRegionArgsDict',
|
30
62
|
]
|
31
63
|
|
64
|
+
MYPY = False
|
65
|
+
|
66
|
+
if not MYPY:
|
67
|
+
class APIKeyDnsRecordsAllowArgsDict(TypedDict):
|
68
|
+
domain: pulumi.Input[str]
|
69
|
+
include_subdomains: pulumi.Input[bool]
|
70
|
+
type: pulumi.Input[str]
|
71
|
+
zone: pulumi.Input[str]
|
72
|
+
elif False:
|
73
|
+
APIKeyDnsRecordsAllowArgsDict: TypeAlias = Mapping[str, Any]
|
74
|
+
|
32
75
|
@pulumi.input_type
|
33
76
|
class APIKeyDnsRecordsAllowArgs:
|
34
77
|
def __init__(__self__, *,
|
@@ -78,6 +121,15 @@ class APIKeyDnsRecordsAllowArgs:
|
|
78
121
|
pulumi.set(self, "zone", value)
|
79
122
|
|
80
123
|
|
124
|
+
if not MYPY:
|
125
|
+
class APIKeyDnsRecordsDenyArgsDict(TypedDict):
|
126
|
+
domain: pulumi.Input[str]
|
127
|
+
include_subdomains: pulumi.Input[bool]
|
128
|
+
type: pulumi.Input[str]
|
129
|
+
zone: pulumi.Input[str]
|
130
|
+
elif False:
|
131
|
+
APIKeyDnsRecordsDenyArgsDict: TypeAlias = Mapping[str, Any]
|
132
|
+
|
81
133
|
@pulumi.input_type
|
82
134
|
class APIKeyDnsRecordsDenyArgs:
|
83
135
|
def __init__(__self__, *,
|
@@ -127,6 +179,36 @@ class APIKeyDnsRecordsDenyArgs:
|
|
127
179
|
pulumi.set(self, "zone", value)
|
128
180
|
|
129
181
|
|
182
|
+
if not MYPY:
|
183
|
+
class ApplicationDefaultConfigArgsDict(TypedDict):
|
184
|
+
http: pulumi.Input[bool]
|
185
|
+
"""
|
186
|
+
Indicates whether or not to use HTTP in measurements.
|
187
|
+
"""
|
188
|
+
https: NotRequired[pulumi.Input[bool]]
|
189
|
+
"""
|
190
|
+
Indicates whether or not to use HTTPS in measurements.
|
191
|
+
"""
|
192
|
+
job_timeout_millis: NotRequired[pulumi.Input[int]]
|
193
|
+
"""
|
194
|
+
Maximum timeout per job
|
195
|
+
0, the primary NSONE Global Network. Normally, you should not have to worry about this.
|
196
|
+
"""
|
197
|
+
request_timeout_millis: NotRequired[pulumi.Input[int]]
|
198
|
+
"""
|
199
|
+
Maximum timeout per request.
|
200
|
+
"""
|
201
|
+
static_values: NotRequired[pulumi.Input[bool]]
|
202
|
+
"""
|
203
|
+
Indicates whether or not to skip aggregation for this job's measurements
|
204
|
+
"""
|
205
|
+
use_xhr: NotRequired[pulumi.Input[bool]]
|
206
|
+
"""
|
207
|
+
Whether to use XMLHttpRequest (XHR) when taking measurements.
|
208
|
+
"""
|
209
|
+
elif False:
|
210
|
+
ApplicationDefaultConfigArgsDict: TypeAlias = Mapping[str, Any]
|
211
|
+
|
130
212
|
@pulumi.input_type
|
131
213
|
class ApplicationDefaultConfigArgs:
|
132
214
|
def __init__(__self__, *,
|
@@ -231,6 +313,242 @@ class ApplicationDefaultConfigArgs:
|
|
231
313
|
pulumi.set(self, "use_xhr", value)
|
232
314
|
|
233
315
|
|
316
|
+
if not MYPY:
|
317
|
+
class DatasetDatatypeArgsDict(TypedDict):
|
318
|
+
data: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
319
|
+
scope: pulumi.Input[str]
|
320
|
+
type: pulumi.Input[str]
|
321
|
+
elif False:
|
322
|
+
DatasetDatatypeArgsDict: TypeAlias = Mapping[str, Any]
|
323
|
+
|
324
|
+
@pulumi.input_type
|
325
|
+
class DatasetDatatypeArgs:
|
326
|
+
def __init__(__self__, *,
|
327
|
+
data: pulumi.Input[Mapping[str, pulumi.Input[str]]],
|
328
|
+
scope: pulumi.Input[str],
|
329
|
+
type: pulumi.Input[str]):
|
330
|
+
pulumi.set(__self__, "data", data)
|
331
|
+
pulumi.set(__self__, "scope", scope)
|
332
|
+
pulumi.set(__self__, "type", type)
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter
|
336
|
+
def data(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
337
|
+
return pulumi.get(self, "data")
|
338
|
+
|
339
|
+
@data.setter
|
340
|
+
def data(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
|
341
|
+
pulumi.set(self, "data", value)
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter
|
345
|
+
def scope(self) -> pulumi.Input[str]:
|
346
|
+
return pulumi.get(self, "scope")
|
347
|
+
|
348
|
+
@scope.setter
|
349
|
+
def scope(self, value: pulumi.Input[str]):
|
350
|
+
pulumi.set(self, "scope", value)
|
351
|
+
|
352
|
+
@property
|
353
|
+
@pulumi.getter
|
354
|
+
def type(self) -> pulumi.Input[str]:
|
355
|
+
return pulumi.get(self, "type")
|
356
|
+
|
357
|
+
@type.setter
|
358
|
+
def type(self, value: pulumi.Input[str]):
|
359
|
+
pulumi.set(self, "type", value)
|
360
|
+
|
361
|
+
|
362
|
+
if not MYPY:
|
363
|
+
class DatasetRepeatArgsDict(TypedDict):
|
364
|
+
end_after_n: pulumi.Input[int]
|
365
|
+
repeats_every: pulumi.Input[str]
|
366
|
+
start: pulumi.Input[int]
|
367
|
+
elif False:
|
368
|
+
DatasetRepeatArgsDict: TypeAlias = Mapping[str, Any]
|
369
|
+
|
370
|
+
@pulumi.input_type
|
371
|
+
class DatasetRepeatArgs:
|
372
|
+
def __init__(__self__, *,
|
373
|
+
end_after_n: pulumi.Input[int],
|
374
|
+
repeats_every: pulumi.Input[str],
|
375
|
+
start: pulumi.Input[int]):
|
376
|
+
pulumi.set(__self__, "end_after_n", end_after_n)
|
377
|
+
pulumi.set(__self__, "repeats_every", repeats_every)
|
378
|
+
pulumi.set(__self__, "start", start)
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter(name="endAfterN")
|
382
|
+
def end_after_n(self) -> pulumi.Input[int]:
|
383
|
+
return pulumi.get(self, "end_after_n")
|
384
|
+
|
385
|
+
@end_after_n.setter
|
386
|
+
def end_after_n(self, value: pulumi.Input[int]):
|
387
|
+
pulumi.set(self, "end_after_n", value)
|
388
|
+
|
389
|
+
@property
|
390
|
+
@pulumi.getter(name="repeatsEvery")
|
391
|
+
def repeats_every(self) -> pulumi.Input[str]:
|
392
|
+
return pulumi.get(self, "repeats_every")
|
393
|
+
|
394
|
+
@repeats_every.setter
|
395
|
+
def repeats_every(self, value: pulumi.Input[str]):
|
396
|
+
pulumi.set(self, "repeats_every", value)
|
397
|
+
|
398
|
+
@property
|
399
|
+
@pulumi.getter
|
400
|
+
def start(self) -> pulumi.Input[int]:
|
401
|
+
return pulumi.get(self, "start")
|
402
|
+
|
403
|
+
@start.setter
|
404
|
+
def start(self, value: pulumi.Input[int]):
|
405
|
+
pulumi.set(self, "start", value)
|
406
|
+
|
407
|
+
|
408
|
+
if not MYPY:
|
409
|
+
class DatasetReportArgsDict(TypedDict):
|
410
|
+
created_at: NotRequired[pulumi.Input[int]]
|
411
|
+
end: NotRequired[pulumi.Input[int]]
|
412
|
+
id: NotRequired[pulumi.Input[str]]
|
413
|
+
start: NotRequired[pulumi.Input[int]]
|
414
|
+
status: NotRequired[pulumi.Input[str]]
|
415
|
+
elif False:
|
416
|
+
DatasetReportArgsDict: TypeAlias = Mapping[str, Any]
|
417
|
+
|
418
|
+
@pulumi.input_type
|
419
|
+
class DatasetReportArgs:
|
420
|
+
def __init__(__self__, *,
|
421
|
+
created_at: Optional[pulumi.Input[int]] = None,
|
422
|
+
end: Optional[pulumi.Input[int]] = None,
|
423
|
+
id: Optional[pulumi.Input[str]] = None,
|
424
|
+
start: Optional[pulumi.Input[int]] = None,
|
425
|
+
status: Optional[pulumi.Input[str]] = None):
|
426
|
+
if created_at is not None:
|
427
|
+
pulumi.set(__self__, "created_at", created_at)
|
428
|
+
if end is not None:
|
429
|
+
pulumi.set(__self__, "end", end)
|
430
|
+
if id is not None:
|
431
|
+
pulumi.set(__self__, "id", id)
|
432
|
+
if start is not None:
|
433
|
+
pulumi.set(__self__, "start", start)
|
434
|
+
if status is not None:
|
435
|
+
pulumi.set(__self__, "status", status)
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter(name="createdAt")
|
439
|
+
def created_at(self) -> Optional[pulumi.Input[int]]:
|
440
|
+
return pulumi.get(self, "created_at")
|
441
|
+
|
442
|
+
@created_at.setter
|
443
|
+
def created_at(self, value: Optional[pulumi.Input[int]]):
|
444
|
+
pulumi.set(self, "created_at", value)
|
445
|
+
|
446
|
+
@property
|
447
|
+
@pulumi.getter
|
448
|
+
def end(self) -> Optional[pulumi.Input[int]]:
|
449
|
+
return pulumi.get(self, "end")
|
450
|
+
|
451
|
+
@end.setter
|
452
|
+
def end(self, value: Optional[pulumi.Input[int]]):
|
453
|
+
pulumi.set(self, "end", value)
|
454
|
+
|
455
|
+
@property
|
456
|
+
@pulumi.getter
|
457
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
458
|
+
return pulumi.get(self, "id")
|
459
|
+
|
460
|
+
@id.setter
|
461
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
462
|
+
pulumi.set(self, "id", value)
|
463
|
+
|
464
|
+
@property
|
465
|
+
@pulumi.getter
|
466
|
+
def start(self) -> Optional[pulumi.Input[int]]:
|
467
|
+
return pulumi.get(self, "start")
|
468
|
+
|
469
|
+
@start.setter
|
470
|
+
def start(self, value: Optional[pulumi.Input[int]]):
|
471
|
+
pulumi.set(self, "start", value)
|
472
|
+
|
473
|
+
@property
|
474
|
+
@pulumi.getter
|
475
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
476
|
+
return pulumi.get(self, "status")
|
477
|
+
|
478
|
+
@status.setter
|
479
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
480
|
+
pulumi.set(self, "status", value)
|
481
|
+
|
482
|
+
|
483
|
+
if not MYPY:
|
484
|
+
class DatasetTimeframeArgsDict(TypedDict):
|
485
|
+
aggregation: pulumi.Input[str]
|
486
|
+
cycles: NotRequired[pulumi.Input[int]]
|
487
|
+
from_: NotRequired[pulumi.Input[int]]
|
488
|
+
to: NotRequired[pulumi.Input[int]]
|
489
|
+
elif False:
|
490
|
+
DatasetTimeframeArgsDict: TypeAlias = Mapping[str, Any]
|
491
|
+
|
492
|
+
@pulumi.input_type
|
493
|
+
class DatasetTimeframeArgs:
|
494
|
+
def __init__(__self__, *,
|
495
|
+
aggregation: pulumi.Input[str],
|
496
|
+
cycles: Optional[pulumi.Input[int]] = None,
|
497
|
+
from_: Optional[pulumi.Input[int]] = None,
|
498
|
+
to: Optional[pulumi.Input[int]] = None):
|
499
|
+
pulumi.set(__self__, "aggregation", aggregation)
|
500
|
+
if cycles is not None:
|
501
|
+
pulumi.set(__self__, "cycles", cycles)
|
502
|
+
if from_ is not None:
|
503
|
+
pulumi.set(__self__, "from_", from_)
|
504
|
+
if to is not None:
|
505
|
+
pulumi.set(__self__, "to", to)
|
506
|
+
|
507
|
+
@property
|
508
|
+
@pulumi.getter
|
509
|
+
def aggregation(self) -> pulumi.Input[str]:
|
510
|
+
return pulumi.get(self, "aggregation")
|
511
|
+
|
512
|
+
@aggregation.setter
|
513
|
+
def aggregation(self, value: pulumi.Input[str]):
|
514
|
+
pulumi.set(self, "aggregation", value)
|
515
|
+
|
516
|
+
@property
|
517
|
+
@pulumi.getter
|
518
|
+
def cycles(self) -> Optional[pulumi.Input[int]]:
|
519
|
+
return pulumi.get(self, "cycles")
|
520
|
+
|
521
|
+
@cycles.setter
|
522
|
+
def cycles(self, value: Optional[pulumi.Input[int]]):
|
523
|
+
pulumi.set(self, "cycles", value)
|
524
|
+
|
525
|
+
@property
|
526
|
+
@pulumi.getter(name="from")
|
527
|
+
def from_(self) -> Optional[pulumi.Input[int]]:
|
528
|
+
return pulumi.get(self, "from_")
|
529
|
+
|
530
|
+
@from_.setter
|
531
|
+
def from_(self, value: Optional[pulumi.Input[int]]):
|
532
|
+
pulumi.set(self, "from_", value)
|
533
|
+
|
534
|
+
@property
|
535
|
+
@pulumi.getter
|
536
|
+
def to(self) -> Optional[pulumi.Input[int]]:
|
537
|
+
return pulumi.get(self, "to")
|
538
|
+
|
539
|
+
@to.setter
|
540
|
+
def to(self, value: Optional[pulumi.Input[int]]):
|
541
|
+
pulumi.set(self, "to", value)
|
542
|
+
|
543
|
+
|
544
|
+
if not MYPY:
|
545
|
+
class MonitoringJobRuleArgsDict(TypedDict):
|
546
|
+
comparison: pulumi.Input[str]
|
547
|
+
key: pulumi.Input[str]
|
548
|
+
value: pulumi.Input[str]
|
549
|
+
elif False:
|
550
|
+
MonitoringJobRuleArgsDict: TypeAlias = Mapping[str, Any]
|
551
|
+
|
234
552
|
@pulumi.input_type
|
235
553
|
class MonitoringJobRuleArgs:
|
236
554
|
def __init__(__self__, *,
|
@@ -269,13 +587,26 @@ class MonitoringJobRuleArgs:
|
|
269
587
|
pulumi.set(self, "value", value)
|
270
588
|
|
271
589
|
|
590
|
+
if not MYPY:
|
591
|
+
class NotifyListNotificationArgsDict(TypedDict):
|
592
|
+
config: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
593
|
+
"""
|
594
|
+
Configuration details for the given notifier type.
|
595
|
+
"""
|
596
|
+
type: pulumi.Input[str]
|
597
|
+
"""
|
598
|
+
The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
|
599
|
+
"""
|
600
|
+
elif False:
|
601
|
+
NotifyListNotificationArgsDict: TypeAlias = Mapping[str, Any]
|
602
|
+
|
272
603
|
@pulumi.input_type
|
273
604
|
class NotifyListNotificationArgs:
|
274
605
|
def __init__(__self__, *,
|
275
|
-
config: pulumi.Input[Mapping[str,
|
606
|
+
config: pulumi.Input[Mapping[str, pulumi.Input[str]]],
|
276
607
|
type: pulumi.Input[str]):
|
277
608
|
"""
|
278
|
-
:param pulumi.Input[Mapping[str,
|
609
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: Configuration details for the given notifier type.
|
279
610
|
:param pulumi.Input[str] type: The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
|
280
611
|
"""
|
281
612
|
pulumi.set(__self__, "config", config)
|
@@ -283,14 +614,14 @@ class NotifyListNotificationArgs:
|
|
283
614
|
|
284
615
|
@property
|
285
616
|
@pulumi.getter
|
286
|
-
def config(self) -> pulumi.Input[Mapping[str,
|
617
|
+
def config(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
287
618
|
"""
|
288
619
|
Configuration details for the given notifier type.
|
289
620
|
"""
|
290
621
|
return pulumi.get(self, "config")
|
291
622
|
|
292
623
|
@config.setter
|
293
|
-
def config(self, value: pulumi.Input[Mapping[str,
|
624
|
+
def config(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
|
294
625
|
pulumi.set(self, "config", value)
|
295
626
|
|
296
627
|
@property
|
@@ -306,6 +637,12 @@ class NotifyListNotificationArgs:
|
|
306
637
|
pulumi.set(self, "type", value)
|
307
638
|
|
308
639
|
|
640
|
+
if not MYPY:
|
641
|
+
class PulsarJobBlendMetricWeightsArgsDict(TypedDict):
|
642
|
+
timestamp: pulumi.Input[int]
|
643
|
+
elif False:
|
644
|
+
PulsarJobBlendMetricWeightsArgsDict: TypeAlias = Mapping[str, Any]
|
645
|
+
|
309
646
|
@pulumi.input_type
|
310
647
|
class PulsarJobBlendMetricWeightsArgs:
|
311
648
|
def __init__(__self__, *,
|
@@ -322,6 +659,19 @@ class PulsarJobBlendMetricWeightsArgs:
|
|
322
659
|
pulumi.set(self, "timestamp", value)
|
323
660
|
|
324
661
|
|
662
|
+
if not MYPY:
|
663
|
+
class PulsarJobConfigArgsDict(TypedDict):
|
664
|
+
host: NotRequired[pulumi.Input[str]]
|
665
|
+
http: NotRequired[pulumi.Input[bool]]
|
666
|
+
https: NotRequired[pulumi.Input[bool]]
|
667
|
+
job_timeout_millis: NotRequired[pulumi.Input[int]]
|
668
|
+
request_timeout_millis: NotRequired[pulumi.Input[int]]
|
669
|
+
static_values: NotRequired[pulumi.Input[bool]]
|
670
|
+
url_path: NotRequired[pulumi.Input[str]]
|
671
|
+
use_xhr: NotRequired[pulumi.Input[bool]]
|
672
|
+
elif False:
|
673
|
+
PulsarJobConfigArgsDict: TypeAlias = Mapping[str, Any]
|
674
|
+
|
325
675
|
@pulumi.input_type
|
326
676
|
class PulsarJobConfigArgs:
|
327
677
|
def __init__(__self__, *,
|
@@ -423,6 +773,15 @@ class PulsarJobConfigArgs:
|
|
423
773
|
pulumi.set(self, "use_xhr", value)
|
424
774
|
|
425
775
|
|
776
|
+
if not MYPY:
|
777
|
+
class PulsarJobWeightArgsDict(TypedDict):
|
778
|
+
default_value: pulumi.Input[float]
|
779
|
+
name: pulumi.Input[str]
|
780
|
+
weight: pulumi.Input[int]
|
781
|
+
maximize: NotRequired[pulumi.Input[bool]]
|
782
|
+
elif False:
|
783
|
+
PulsarJobWeightArgsDict: TypeAlias = Mapping[str, Any]
|
784
|
+
|
426
785
|
@pulumi.input_type
|
427
786
|
class PulsarJobWeightArgs:
|
428
787
|
def __init__(__self__, *,
|
@@ -473,11 +832,51 @@ class PulsarJobWeightArgs:
|
|
473
832
|
pulumi.set(self, "maximize", value)
|
474
833
|
|
475
834
|
|
835
|
+
if not MYPY:
|
836
|
+
class RecordAnswerArgsDict(TypedDict):
|
837
|
+
answer: NotRequired[pulumi.Input[str]]
|
838
|
+
"""
|
839
|
+
Space delimited string of RDATA fields dependent on the record type.
|
840
|
+
|
841
|
+
A:
|
842
|
+
|
843
|
+
answer = "1.2.3.4"
|
844
|
+
|
845
|
+
CNAME:
|
846
|
+
|
847
|
+
answer = "www.example.com"
|
848
|
+
|
849
|
+
MX:
|
850
|
+
|
851
|
+
answer = "5 mail.example.com"
|
852
|
+
|
853
|
+
SRV:
|
854
|
+
|
855
|
+
answer = "10 0 2380 node-1.example.com"
|
856
|
+
|
857
|
+
SPF:
|
858
|
+
|
859
|
+
answer = "v=DKIM1; k=rsa; p=XXXXXXXX"
|
860
|
+
"""
|
861
|
+
meta: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
862
|
+
region: NotRequired[pulumi.Input[str]]
|
863
|
+
"""
|
864
|
+
The region (Answer Group really) that this answer
|
865
|
+
belongs to. This should be one of the names specified in `regions`. Only a
|
866
|
+
single `region` per answer is currently supported. If you want an answer in
|
867
|
+
multiple regions, duplicating the answer (including metadata) is the correct
|
868
|
+
approach.
|
869
|
+
* ` meta` - (Optional) meta is supported at the `answer` level. Meta
|
870
|
+
is documented below.
|
871
|
+
"""
|
872
|
+
elif False:
|
873
|
+
RecordAnswerArgsDict: TypeAlias = Mapping[str, Any]
|
874
|
+
|
476
875
|
@pulumi.input_type
|
477
876
|
class RecordAnswerArgs:
|
478
877
|
def __init__(__self__, *,
|
479
878
|
answer: Optional[pulumi.Input[str]] = None,
|
480
|
-
meta: Optional[pulumi.Input[Mapping[str,
|
879
|
+
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
481
880
|
region: Optional[pulumi.Input[str]] = None):
|
482
881
|
"""
|
483
882
|
:param pulumi.Input[str] answer: Space delimited string of RDATA fields dependent on the record type.
|
@@ -550,11 +949,11 @@ class RecordAnswerArgs:
|
|
550
949
|
|
551
950
|
@property
|
552
951
|
@pulumi.getter
|
553
|
-
def meta(self) -> Optional[pulumi.Input[Mapping[str,
|
952
|
+
def meta(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
554
953
|
return pulumi.get(self, "meta")
|
555
954
|
|
556
955
|
@meta.setter
|
557
|
-
def meta(self, value: Optional[pulumi.Input[Mapping[str,
|
956
|
+
def meta(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
558
957
|
pulumi.set(self, "meta", value)
|
559
958
|
|
560
959
|
@property
|
@@ -576,15 +975,34 @@ class RecordAnswerArgs:
|
|
576
975
|
pulumi.set(self, "region", value)
|
577
976
|
|
578
977
|
|
978
|
+
if not MYPY:
|
979
|
+
class RecordFilterArgsDict(TypedDict):
|
980
|
+
filter: pulumi.Input[str]
|
981
|
+
"""
|
982
|
+
The type of filter.
|
983
|
+
"""
|
984
|
+
config: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
985
|
+
"""
|
986
|
+
The filters' configuration. Simple key/value pairs
|
987
|
+
determined by the filter type.
|
988
|
+
"""
|
989
|
+
disabled: NotRequired[pulumi.Input[bool]]
|
990
|
+
"""
|
991
|
+
Determines whether the filter is applied in the
|
992
|
+
filter chain.
|
993
|
+
"""
|
994
|
+
elif False:
|
995
|
+
RecordFilterArgsDict: TypeAlias = Mapping[str, Any]
|
996
|
+
|
579
997
|
@pulumi.input_type
|
580
998
|
class RecordFilterArgs:
|
581
999
|
def __init__(__self__, *,
|
582
1000
|
filter: pulumi.Input[str],
|
583
|
-
config: Optional[pulumi.Input[Mapping[str,
|
1001
|
+
config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
584
1002
|
disabled: Optional[pulumi.Input[bool]] = None):
|
585
1003
|
"""
|
586
1004
|
:param pulumi.Input[str] filter: The type of filter.
|
587
|
-
:param pulumi.Input[Mapping[str,
|
1005
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The filters' configuration. Simple key/value pairs
|
588
1006
|
determined by the filter type.
|
589
1007
|
:param pulumi.Input[bool] disabled: Determines whether the filter is applied in the
|
590
1008
|
filter chain.
|
@@ -609,7 +1027,7 @@ class RecordFilterArgs:
|
|
609
1027
|
|
610
1028
|
@property
|
611
1029
|
@pulumi.getter
|
612
|
-
def config(self) -> Optional[pulumi.Input[Mapping[str,
|
1030
|
+
def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
613
1031
|
"""
|
614
1032
|
The filters' configuration. Simple key/value pairs
|
615
1033
|
determined by the filter type.
|
@@ -617,7 +1035,7 @@ class RecordFilterArgs:
|
|
617
1035
|
return pulumi.get(self, "config")
|
618
1036
|
|
619
1037
|
@config.setter
|
620
|
-
def config(self, value: Optional[pulumi.Input[Mapping[str,
|
1038
|
+
def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
621
1039
|
pulumi.set(self, "config", value)
|
622
1040
|
|
623
1041
|
@property
|
@@ -634,11 +1052,21 @@ class RecordFilterArgs:
|
|
634
1052
|
pulumi.set(self, "disabled", value)
|
635
1053
|
|
636
1054
|
|
1055
|
+
if not MYPY:
|
1056
|
+
class RecordRegionArgsDict(TypedDict):
|
1057
|
+
name: pulumi.Input[str]
|
1058
|
+
"""
|
1059
|
+
Name of the region (or Answer Group).
|
1060
|
+
"""
|
1061
|
+
meta: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1062
|
+
elif False:
|
1063
|
+
RecordRegionArgsDict: TypeAlias = Mapping[str, Any]
|
1064
|
+
|
637
1065
|
@pulumi.input_type
|
638
1066
|
class RecordRegionArgs:
|
639
1067
|
def __init__(__self__, *,
|
640
1068
|
name: pulumi.Input[str],
|
641
|
-
meta: Optional[pulumi.Input[Mapping[str,
|
1069
|
+
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
642
1070
|
"""
|
643
1071
|
:param pulumi.Input[str] name: Name of the region (or Answer Group).
|
644
1072
|
"""
|
@@ -660,14 +1088,23 @@ class RecordRegionArgs:
|
|
660
1088
|
|
661
1089
|
@property
|
662
1090
|
@pulumi.getter
|
663
|
-
def meta(self) -> Optional[pulumi.Input[Mapping[str,
|
1091
|
+
def meta(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
664
1092
|
return pulumi.get(self, "meta")
|
665
1093
|
|
666
1094
|
@meta.setter
|
667
|
-
def meta(self, value: Optional[pulumi.Input[Mapping[str,
|
1095
|
+
def meta(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
668
1096
|
pulumi.set(self, "meta", value)
|
669
1097
|
|
670
1098
|
|
1099
|
+
if not MYPY:
|
1100
|
+
class TeamDnsRecordsAllowArgsDict(TypedDict):
|
1101
|
+
domain: pulumi.Input[str]
|
1102
|
+
include_subdomains: pulumi.Input[bool]
|
1103
|
+
type: pulumi.Input[str]
|
1104
|
+
zone: pulumi.Input[str]
|
1105
|
+
elif False:
|
1106
|
+
TeamDnsRecordsAllowArgsDict: TypeAlias = Mapping[str, Any]
|
1107
|
+
|
671
1108
|
@pulumi.input_type
|
672
1109
|
class TeamDnsRecordsAllowArgs:
|
673
1110
|
def __init__(__self__, *,
|
@@ -717,6 +1154,15 @@ class TeamDnsRecordsAllowArgs:
|
|
717
1154
|
pulumi.set(self, "zone", value)
|
718
1155
|
|
719
1156
|
|
1157
|
+
if not MYPY:
|
1158
|
+
class TeamDnsRecordsDenyArgsDict(TypedDict):
|
1159
|
+
domain: pulumi.Input[str]
|
1160
|
+
include_subdomains: pulumi.Input[bool]
|
1161
|
+
type: pulumi.Input[str]
|
1162
|
+
zone: pulumi.Input[str]
|
1163
|
+
elif False:
|
1164
|
+
TeamDnsRecordsDenyArgsDict: TypeAlias = Mapping[str, Any]
|
1165
|
+
|
720
1166
|
@pulumi.input_type
|
721
1167
|
class TeamDnsRecordsDenyArgs:
|
722
1168
|
def __init__(__self__, *,
|
@@ -766,6 +1212,16 @@ class TeamDnsRecordsDenyArgs:
|
|
766
1212
|
pulumi.set(self, "zone", value)
|
767
1213
|
|
768
1214
|
|
1215
|
+
if not MYPY:
|
1216
|
+
class TeamIpWhitelistArgsDict(TypedDict):
|
1217
|
+
name: pulumi.Input[str]
|
1218
|
+
"""
|
1219
|
+
The free form name of the team.
|
1220
|
+
"""
|
1221
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1222
|
+
elif False:
|
1223
|
+
TeamIpWhitelistArgsDict: TypeAlias = Mapping[str, Any]
|
1224
|
+
|
769
1225
|
@pulumi.input_type
|
770
1226
|
class TeamIpWhitelistArgs:
|
771
1227
|
def __init__(__self__, *,
|
@@ -799,6 +1255,15 @@ class TeamIpWhitelistArgs:
|
|
799
1255
|
pulumi.set(self, "values", value)
|
800
1256
|
|
801
1257
|
|
1258
|
+
if not MYPY:
|
1259
|
+
class UserDnsRecordsAllowArgsDict(TypedDict):
|
1260
|
+
domain: pulumi.Input[str]
|
1261
|
+
include_subdomains: pulumi.Input[bool]
|
1262
|
+
type: pulumi.Input[str]
|
1263
|
+
zone: pulumi.Input[str]
|
1264
|
+
elif False:
|
1265
|
+
UserDnsRecordsAllowArgsDict: TypeAlias = Mapping[str, Any]
|
1266
|
+
|
802
1267
|
@pulumi.input_type
|
803
1268
|
class UserDnsRecordsAllowArgs:
|
804
1269
|
def __init__(__self__, *,
|
@@ -848,6 +1313,15 @@ class UserDnsRecordsAllowArgs:
|
|
848
1313
|
pulumi.set(self, "zone", value)
|
849
1314
|
|
850
1315
|
|
1316
|
+
if not MYPY:
|
1317
|
+
class UserDnsRecordsDenyArgsDict(TypedDict):
|
1318
|
+
domain: pulumi.Input[str]
|
1319
|
+
include_subdomains: pulumi.Input[bool]
|
1320
|
+
type: pulumi.Input[str]
|
1321
|
+
zone: pulumi.Input[str]
|
1322
|
+
elif False:
|
1323
|
+
UserDnsRecordsDenyArgsDict: TypeAlias = Mapping[str, Any]
|
1324
|
+
|
851
1325
|
@pulumi.input_type
|
852
1326
|
class UserDnsRecordsDenyArgs:
|
853
1327
|
def __init__(__self__, *,
|
@@ -897,6 +1371,30 @@ class UserDnsRecordsDenyArgs:
|
|
897
1371
|
pulumi.set(self, "zone", value)
|
898
1372
|
|
899
1373
|
|
1374
|
+
if not MYPY:
|
1375
|
+
class ZoneSecondaryArgsDict(TypedDict):
|
1376
|
+
ip: pulumi.Input[str]
|
1377
|
+
"""
|
1378
|
+
IPv4 address of the secondary server.
|
1379
|
+
"""
|
1380
|
+
networks: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
|
1381
|
+
"""
|
1382
|
+
List of network IDs (`int`) for which the zone
|
1383
|
+
should be made available. Default is network 0, the primary NSONE Global
|
1384
|
+
Network. Normally, you should not have to worry about this.
|
1385
|
+
"""
|
1386
|
+
notify: NotRequired[pulumi.Input[bool]]
|
1387
|
+
"""
|
1388
|
+
Whether we send `NOTIFY` messages to the secondary host
|
1389
|
+
when the zone changes. Default `false`.
|
1390
|
+
"""
|
1391
|
+
port: NotRequired[pulumi.Input[int]]
|
1392
|
+
"""
|
1393
|
+
Port of the the secondary server. Default `53`.
|
1394
|
+
"""
|
1395
|
+
elif False:
|
1396
|
+
ZoneSecondaryArgsDict: TypeAlias = Mapping[str, Any]
|
1397
|
+
|
900
1398
|
@pulumi.input_type
|
901
1399
|
class ZoneSecondaryArgs:
|
902
1400
|
def __init__(__self__, *,
|
@@ -973,3 +1471,75 @@ class ZoneSecondaryArgs:
|
|
973
1471
|
pulumi.set(self, "port", value)
|
974
1472
|
|
975
1473
|
|
1474
|
+
if not MYPY:
|
1475
|
+
class GetMonitoringRegionsRegionArgsDict(TypedDict):
|
1476
|
+
code: NotRequired[str]
|
1477
|
+
"""
|
1478
|
+
3-letter city code identifying the location of the monitor.
|
1479
|
+
"""
|
1480
|
+
name: NotRequired[str]
|
1481
|
+
"""
|
1482
|
+
City name identifying the location of the monitor.
|
1483
|
+
"""
|
1484
|
+
subnets: NotRequired[Sequence[str]]
|
1485
|
+
"""
|
1486
|
+
A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1487
|
+
"""
|
1488
|
+
elif False:
|
1489
|
+
GetMonitoringRegionsRegionArgsDict: TypeAlias = Mapping[str, Any]
|
1490
|
+
|
1491
|
+
@pulumi.input_type
|
1492
|
+
class GetMonitoringRegionsRegionArgs:
|
1493
|
+
def __init__(__self__, *,
|
1494
|
+
code: Optional[str] = None,
|
1495
|
+
name: Optional[str] = None,
|
1496
|
+
subnets: Optional[Sequence[str]] = None):
|
1497
|
+
"""
|
1498
|
+
:param str code: 3-letter city code identifying the location of the monitor.
|
1499
|
+
:param str name: City name identifying the location of the monitor.
|
1500
|
+
:param Sequence[str] subnets: A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1501
|
+
"""
|
1502
|
+
if code is not None:
|
1503
|
+
pulumi.set(__self__, "code", code)
|
1504
|
+
if name is not None:
|
1505
|
+
pulumi.set(__self__, "name", name)
|
1506
|
+
if subnets is not None:
|
1507
|
+
pulumi.set(__self__, "subnets", subnets)
|
1508
|
+
|
1509
|
+
@property
|
1510
|
+
@pulumi.getter
|
1511
|
+
def code(self) -> Optional[str]:
|
1512
|
+
"""
|
1513
|
+
3-letter city code identifying the location of the monitor.
|
1514
|
+
"""
|
1515
|
+
return pulumi.get(self, "code")
|
1516
|
+
|
1517
|
+
@code.setter
|
1518
|
+
def code(self, value: Optional[str]):
|
1519
|
+
pulumi.set(self, "code", value)
|
1520
|
+
|
1521
|
+
@property
|
1522
|
+
@pulumi.getter
|
1523
|
+
def name(self) -> Optional[str]:
|
1524
|
+
"""
|
1525
|
+
City name identifying the location of the monitor.
|
1526
|
+
"""
|
1527
|
+
return pulumi.get(self, "name")
|
1528
|
+
|
1529
|
+
@name.setter
|
1530
|
+
def name(self, value: Optional[str]):
|
1531
|
+
pulumi.set(self, "name", value)
|
1532
|
+
|
1533
|
+
@property
|
1534
|
+
@pulumi.getter
|
1535
|
+
def subnets(self) -> Optional[Sequence[str]]:
|
1536
|
+
"""
|
1537
|
+
A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1538
|
+
"""
|
1539
|
+
return pulumi.get(self, "subnets")
|
1540
|
+
|
1541
|
+
@subnets.setter
|
1542
|
+
def subnets(self, value: Optional[Sequence[str]]):
|
1543
|
+
pulumi.set(self, "subnets", value)
|
1544
|
+
|
1545
|
+
|