pulumi-ns1 3.7.0a1752905838__py3-none-any.whl → 3.7.0a1753397901__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/outputs.py CHANGED
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -73,33 +72,33 @@ class APIKeyDnsRecordsAllow(dict):
73
72
  return super().get(key, default)
74
73
 
75
74
  def __init__(__self__, *,
76
- domain: builtins.str,
77
- include_subdomains: builtins.bool,
78
- type: builtins.str,
79
- zone: builtins.str):
75
+ domain: _builtins.str,
76
+ include_subdomains: _builtins.bool,
77
+ type: _builtins.str,
78
+ zone: _builtins.str):
80
79
  pulumi.set(__self__, "domain", domain)
81
80
  pulumi.set(__self__, "include_subdomains", include_subdomains)
82
81
  pulumi.set(__self__, "type", type)
83
82
  pulumi.set(__self__, "zone", zone)
84
83
 
85
- @property
84
+ @_builtins.property
86
85
  @pulumi.getter
87
- def domain(self) -> builtins.str:
86
+ def domain(self) -> _builtins.str:
88
87
  return pulumi.get(self, "domain")
89
88
 
90
- @property
89
+ @_builtins.property
91
90
  @pulumi.getter(name="includeSubdomains")
92
- def include_subdomains(self) -> builtins.bool:
91
+ def include_subdomains(self) -> _builtins.bool:
93
92
  return pulumi.get(self, "include_subdomains")
94
93
 
95
- @property
94
+ @_builtins.property
96
95
  @pulumi.getter
97
- def type(self) -> builtins.str:
96
+ def type(self) -> _builtins.str:
98
97
  return pulumi.get(self, "type")
99
98
 
100
- @property
99
+ @_builtins.property
101
100
  @pulumi.getter
102
- def zone(self) -> builtins.str:
101
+ def zone(self) -> _builtins.str:
103
102
  return pulumi.get(self, "zone")
104
103
 
105
104
 
@@ -123,33 +122,33 @@ class APIKeyDnsRecordsDeny(dict):
123
122
  return super().get(key, default)
124
123
 
125
124
  def __init__(__self__, *,
126
- domain: builtins.str,
127
- include_subdomains: builtins.bool,
128
- type: builtins.str,
129
- zone: builtins.str):
125
+ domain: _builtins.str,
126
+ include_subdomains: _builtins.bool,
127
+ type: _builtins.str,
128
+ zone: _builtins.str):
130
129
  pulumi.set(__self__, "domain", domain)
131
130
  pulumi.set(__self__, "include_subdomains", include_subdomains)
132
131
  pulumi.set(__self__, "type", type)
133
132
  pulumi.set(__self__, "zone", zone)
134
133
 
135
- @property
134
+ @_builtins.property
136
135
  @pulumi.getter
137
- def domain(self) -> builtins.str:
136
+ def domain(self) -> _builtins.str:
138
137
  return pulumi.get(self, "domain")
139
138
 
140
- @property
139
+ @_builtins.property
141
140
  @pulumi.getter(name="includeSubdomains")
142
- def include_subdomains(self) -> builtins.bool:
141
+ def include_subdomains(self) -> _builtins.bool:
143
142
  return pulumi.get(self, "include_subdomains")
144
143
 
145
- @property
144
+ @_builtins.property
146
145
  @pulumi.getter
147
- def type(self) -> builtins.str:
146
+ def type(self) -> _builtins.str:
148
147
  return pulumi.get(self, "type")
149
148
 
150
- @property
149
+ @_builtins.property
151
150
  @pulumi.getter
152
- def zone(self) -> builtins.str:
151
+ def zone(self) -> _builtins.str:
153
152
  return pulumi.get(self, "zone")
154
153
 
155
154
 
@@ -179,20 +178,20 @@ class ApplicationDefaultConfig(dict):
179
178
  return super().get(key, default)
180
179
 
181
180
  def __init__(__self__, *,
182
- http: builtins.bool,
183
- https: Optional[builtins.bool] = None,
184
- job_timeout_millis: Optional[builtins.int] = None,
185
- request_timeout_millis: Optional[builtins.int] = None,
186
- static_values: Optional[builtins.bool] = None,
187
- use_xhr: Optional[builtins.bool] = None):
188
- """
189
- :param builtins.bool http: Indicates whether or not to use HTTP in measurements.
190
- :param builtins.bool https: Indicates whether or not to use HTTPS in measurements.
191
- :param builtins.int job_timeout_millis: Maximum timeout per job
181
+ http: _builtins.bool,
182
+ https: Optional[_builtins.bool] = None,
183
+ job_timeout_millis: Optional[_builtins.int] = None,
184
+ request_timeout_millis: Optional[_builtins.int] = None,
185
+ static_values: Optional[_builtins.bool] = None,
186
+ use_xhr: Optional[_builtins.bool] = None):
187
+ """
188
+ :param _builtins.bool http: Indicates whether or not to use HTTP in measurements.
189
+ :param _builtins.bool https: Indicates whether or not to use HTTPS in measurements.
190
+ :param _builtins.int job_timeout_millis: Maximum timeout per job
192
191
  0, the primary NSONE Global Network. Normally, you should not have to worry about this.
193
- :param builtins.int request_timeout_millis: Maximum timeout per request.
194
- :param builtins.bool static_values: Indicates whether or not to skip aggregation for this job's measurements
195
- :param builtins.bool use_xhr: Whether to use XMLHttpRequest (XHR) when taking measurements.
192
+ :param _builtins.int request_timeout_millis: Maximum timeout per request.
193
+ :param _builtins.bool static_values: Indicates whether or not to skip aggregation for this job's measurements
194
+ :param _builtins.bool use_xhr: Whether to use XMLHttpRequest (XHR) when taking measurements.
196
195
  """
197
196
  pulumi.set(__self__, "http", http)
198
197
  if https is not None:
@@ -206,50 +205,50 @@ class ApplicationDefaultConfig(dict):
206
205
  if use_xhr is not None:
207
206
  pulumi.set(__self__, "use_xhr", use_xhr)
208
207
 
209
- @property
208
+ @_builtins.property
210
209
  @pulumi.getter
211
- def http(self) -> builtins.bool:
210
+ def http(self) -> _builtins.bool:
212
211
  """
213
212
  Indicates whether or not to use HTTP in measurements.
214
213
  """
215
214
  return pulumi.get(self, "http")
216
215
 
217
- @property
216
+ @_builtins.property
218
217
  @pulumi.getter
219
- def https(self) -> Optional[builtins.bool]:
218
+ def https(self) -> Optional[_builtins.bool]:
220
219
  """
221
220
  Indicates whether or not to use HTTPS in measurements.
222
221
  """
223
222
  return pulumi.get(self, "https")
224
223
 
225
- @property
224
+ @_builtins.property
226
225
  @pulumi.getter(name="jobTimeoutMillis")
227
- def job_timeout_millis(self) -> Optional[builtins.int]:
226
+ def job_timeout_millis(self) -> Optional[_builtins.int]:
228
227
  """
229
228
  Maximum timeout per job
230
229
  0, the primary NSONE Global Network. Normally, you should not have to worry about this.
231
230
  """
232
231
  return pulumi.get(self, "job_timeout_millis")
233
232
 
234
- @property
233
+ @_builtins.property
235
234
  @pulumi.getter(name="requestTimeoutMillis")
236
- def request_timeout_millis(self) -> Optional[builtins.int]:
235
+ def request_timeout_millis(self) -> Optional[_builtins.int]:
237
236
  """
238
237
  Maximum timeout per request.
239
238
  """
240
239
  return pulumi.get(self, "request_timeout_millis")
241
240
 
242
- @property
241
+ @_builtins.property
243
242
  @pulumi.getter(name="staticValues")
244
- def static_values(self) -> Optional[builtins.bool]:
243
+ def static_values(self) -> Optional[_builtins.bool]:
245
244
  """
246
245
  Indicates whether or not to skip aggregation for this job's measurements
247
246
  """
248
247
  return pulumi.get(self, "static_values")
249
248
 
250
- @property
249
+ @_builtins.property
251
250
  @pulumi.getter(name="useXhr")
252
- def use_xhr(self) -> Optional[builtins.bool]:
251
+ def use_xhr(self) -> Optional[_builtins.bool]:
253
252
  """
254
253
  Whether to use XMLHttpRequest (XHR) when taking measurements.
255
254
  """
@@ -259,26 +258,26 @@ class ApplicationDefaultConfig(dict):
259
258
  @pulumi.output_type
260
259
  class DatasetDatatype(dict):
261
260
  def __init__(__self__, *,
262
- data: Mapping[str, builtins.str],
263
- scope: builtins.str,
264
- type: builtins.str):
261
+ data: Mapping[str, _builtins.str],
262
+ scope: _builtins.str,
263
+ type: _builtins.str):
265
264
  pulumi.set(__self__, "data", data)
266
265
  pulumi.set(__self__, "scope", scope)
267
266
  pulumi.set(__self__, "type", type)
268
267
 
269
- @property
268
+ @_builtins.property
270
269
  @pulumi.getter
271
- def data(self) -> Mapping[str, builtins.str]:
270
+ def data(self) -> Mapping[str, _builtins.str]:
272
271
  return pulumi.get(self, "data")
273
272
 
274
- @property
273
+ @_builtins.property
275
274
  @pulumi.getter
276
- def scope(self) -> builtins.str:
275
+ def scope(self) -> _builtins.str:
277
276
  return pulumi.get(self, "scope")
278
277
 
279
- @property
278
+ @_builtins.property
280
279
  @pulumi.getter
281
- def type(self) -> builtins.str:
280
+ def type(self) -> _builtins.str:
282
281
  return pulumi.get(self, "type")
283
282
 
284
283
 
@@ -304,26 +303,26 @@ class DatasetRepeat(dict):
304
303
  return super().get(key, default)
305
304
 
306
305
  def __init__(__self__, *,
307
- end_after_n: builtins.int,
308
- repeats_every: builtins.str,
309
- start: builtins.int):
306
+ end_after_n: _builtins.int,
307
+ repeats_every: _builtins.str,
308
+ start: _builtins.int):
310
309
  pulumi.set(__self__, "end_after_n", end_after_n)
311
310
  pulumi.set(__self__, "repeats_every", repeats_every)
312
311
  pulumi.set(__self__, "start", start)
313
312
 
314
- @property
313
+ @_builtins.property
315
314
  @pulumi.getter(name="endAfterN")
316
- def end_after_n(self) -> builtins.int:
315
+ def end_after_n(self) -> _builtins.int:
317
316
  return pulumi.get(self, "end_after_n")
318
317
 
319
- @property
318
+ @_builtins.property
320
319
  @pulumi.getter(name="repeatsEvery")
321
- def repeats_every(self) -> builtins.str:
320
+ def repeats_every(self) -> _builtins.str:
322
321
  return pulumi.get(self, "repeats_every")
323
322
 
324
- @property
323
+ @_builtins.property
325
324
  @pulumi.getter
326
- def start(self) -> builtins.int:
325
+ def start(self) -> _builtins.int:
327
326
  return pulumi.get(self, "start")
328
327
 
329
328
 
@@ -347,11 +346,11 @@ class DatasetReport(dict):
347
346
  return super().get(key, default)
348
347
 
349
348
  def __init__(__self__, *,
350
- created_at: Optional[builtins.int] = None,
351
- end: Optional[builtins.int] = None,
352
- id: Optional[builtins.str] = None,
353
- start: Optional[builtins.int] = None,
354
- status: Optional[builtins.str] = None):
349
+ created_at: Optional[_builtins.int] = None,
350
+ end: Optional[_builtins.int] = None,
351
+ id: Optional[_builtins.str] = None,
352
+ start: Optional[_builtins.int] = None,
353
+ status: Optional[_builtins.str] = None):
355
354
  if created_at is not None:
356
355
  pulumi.set(__self__, "created_at", created_at)
357
356
  if end is not None:
@@ -363,29 +362,29 @@ class DatasetReport(dict):
363
362
  if status is not None:
364
363
  pulumi.set(__self__, "status", status)
365
364
 
366
- @property
365
+ @_builtins.property
367
366
  @pulumi.getter(name="createdAt")
368
- def created_at(self) -> Optional[builtins.int]:
367
+ def created_at(self) -> Optional[_builtins.int]:
369
368
  return pulumi.get(self, "created_at")
370
369
 
371
- @property
370
+ @_builtins.property
372
371
  @pulumi.getter
373
- def end(self) -> Optional[builtins.int]:
372
+ def end(self) -> Optional[_builtins.int]:
374
373
  return pulumi.get(self, "end")
375
374
 
376
- @property
375
+ @_builtins.property
377
376
  @pulumi.getter
378
- def id(self) -> Optional[builtins.str]:
377
+ def id(self) -> Optional[_builtins.str]:
379
378
  return pulumi.get(self, "id")
380
379
 
381
- @property
380
+ @_builtins.property
382
381
  @pulumi.getter
383
- def start(self) -> Optional[builtins.int]:
382
+ def start(self) -> Optional[_builtins.int]:
384
383
  return pulumi.get(self, "start")
385
384
 
386
- @property
385
+ @_builtins.property
387
386
  @pulumi.getter
388
- def status(self) -> Optional[builtins.str]:
387
+ def status(self) -> Optional[_builtins.str]:
389
388
  return pulumi.get(self, "status")
390
389
 
391
390
 
@@ -409,10 +408,10 @@ class DatasetTimeframe(dict):
409
408
  return super().get(key, default)
410
409
 
411
410
  def __init__(__self__, *,
412
- aggregation: builtins.str,
413
- cycles: Optional[builtins.int] = None,
414
- from_: Optional[builtins.int] = None,
415
- to: Optional[builtins.int] = None):
411
+ aggregation: _builtins.str,
412
+ cycles: Optional[_builtins.int] = None,
413
+ from_: Optional[_builtins.int] = None,
414
+ to: Optional[_builtins.int] = None):
416
415
  pulumi.set(__self__, "aggregation", aggregation)
417
416
  if cycles is not None:
418
417
  pulumi.set(__self__, "cycles", cycles)
@@ -421,76 +420,76 @@ class DatasetTimeframe(dict):
421
420
  if to is not None:
422
421
  pulumi.set(__self__, "to", to)
423
422
 
424
- @property
423
+ @_builtins.property
425
424
  @pulumi.getter
426
- def aggregation(self) -> builtins.str:
425
+ def aggregation(self) -> _builtins.str:
427
426
  return pulumi.get(self, "aggregation")
428
427
 
429
- @property
428
+ @_builtins.property
430
429
  @pulumi.getter
431
- def cycles(self) -> Optional[builtins.int]:
430
+ def cycles(self) -> Optional[_builtins.int]:
432
431
  return pulumi.get(self, "cycles")
433
432
 
434
- @property
433
+ @_builtins.property
435
434
  @pulumi.getter(name="from")
436
- def from_(self) -> Optional[builtins.int]:
435
+ def from_(self) -> Optional[_builtins.int]:
437
436
  return pulumi.get(self, "from_")
438
437
 
439
- @property
438
+ @_builtins.property
440
439
  @pulumi.getter
441
- def to(self) -> Optional[builtins.int]:
440
+ def to(self) -> Optional[_builtins.int]:
442
441
  return pulumi.get(self, "to")
443
442
 
444
443
 
445
444
  @pulumi.output_type
446
445
  class MonitoringJobRule(dict):
447
446
  def __init__(__self__, *,
448
- comparison: builtins.str,
449
- key: builtins.str,
450
- value: builtins.str):
447
+ comparison: _builtins.str,
448
+ key: _builtins.str,
449
+ value: _builtins.str):
451
450
  pulumi.set(__self__, "comparison", comparison)
452
451
  pulumi.set(__self__, "key", key)
453
452
  pulumi.set(__self__, "value", value)
454
453
 
455
- @property
454
+ @_builtins.property
456
455
  @pulumi.getter
457
- def comparison(self) -> builtins.str:
456
+ def comparison(self) -> _builtins.str:
458
457
  return pulumi.get(self, "comparison")
459
458
 
460
- @property
459
+ @_builtins.property
461
460
  @pulumi.getter
462
- def key(self) -> builtins.str:
461
+ def key(self) -> _builtins.str:
463
462
  return pulumi.get(self, "key")
464
463
 
465
- @property
464
+ @_builtins.property
466
465
  @pulumi.getter
467
- def value(self) -> builtins.str:
466
+ def value(self) -> _builtins.str:
468
467
  return pulumi.get(self, "value")
469
468
 
470
469
 
471
470
  @pulumi.output_type
472
471
  class NotifyListNotification(dict):
473
472
  def __init__(__self__, *,
474
- config: Mapping[str, builtins.str],
475
- type: builtins.str):
473
+ config: Mapping[str, _builtins.str],
474
+ type: _builtins.str):
476
475
  """
477
- :param Mapping[str, builtins.str] config: Configuration details for the given notifier type.
478
- :param builtins.str type: The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
476
+ :param Mapping[str, _builtins.str] config: Configuration details for the given notifier type.
477
+ :param _builtins.str type: The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
479
478
  """
480
479
  pulumi.set(__self__, "config", config)
481
480
  pulumi.set(__self__, "type", type)
482
481
 
483
- @property
482
+ @_builtins.property
484
483
  @pulumi.getter
485
- def config(self) -> Mapping[str, builtins.str]:
484
+ def config(self) -> Mapping[str, _builtins.str]:
486
485
  """
487
486
  Configuration details for the given notifier type.
488
487
  """
489
488
  return pulumi.get(self, "config")
490
489
 
491
- @property
490
+ @_builtins.property
492
491
  @pulumi.getter
493
- def type(self) -> builtins.str:
492
+ def type(self) -> _builtins.str:
494
493
  """
495
494
  The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
496
495
  """
@@ -500,12 +499,12 @@ class NotifyListNotification(dict):
500
499
  @pulumi.output_type
501
500
  class PulsarJobBlendMetricWeights(dict):
502
501
  def __init__(__self__, *,
503
- timestamp: builtins.int):
502
+ timestamp: _builtins.int):
504
503
  pulumi.set(__self__, "timestamp", timestamp)
505
504
 
506
- @property
505
+ @_builtins.property
507
506
  @pulumi.getter
508
- def timestamp(self) -> builtins.int:
507
+ def timestamp(self) -> _builtins.int:
509
508
  return pulumi.get(self, "timestamp")
510
509
 
511
510
 
@@ -537,14 +536,14 @@ class PulsarJobConfig(dict):
537
536
  return super().get(key, default)
538
537
 
539
538
  def __init__(__self__, *,
540
- host: Optional[builtins.str] = None,
541
- http: Optional[builtins.bool] = None,
542
- https: Optional[builtins.bool] = None,
543
- job_timeout_millis: Optional[builtins.int] = None,
544
- request_timeout_millis: Optional[builtins.int] = None,
545
- static_values: Optional[builtins.bool] = None,
546
- url_path: Optional[builtins.str] = None,
547
- use_xhr: Optional[builtins.bool] = None):
539
+ host: Optional[_builtins.str] = None,
540
+ http: Optional[_builtins.bool] = None,
541
+ https: Optional[_builtins.bool] = None,
542
+ job_timeout_millis: Optional[_builtins.int] = None,
543
+ request_timeout_millis: Optional[_builtins.int] = None,
544
+ static_values: Optional[_builtins.bool] = None,
545
+ url_path: Optional[_builtins.str] = None,
546
+ use_xhr: Optional[_builtins.bool] = None):
548
547
  if host is not None:
549
548
  pulumi.set(__self__, "host", host)
550
549
  if http is not None:
@@ -562,44 +561,44 @@ class PulsarJobConfig(dict):
562
561
  if use_xhr is not None:
563
562
  pulumi.set(__self__, "use_xhr", use_xhr)
564
563
 
565
- @property
564
+ @_builtins.property
566
565
  @pulumi.getter
567
- def host(self) -> Optional[builtins.str]:
566
+ def host(self) -> Optional[_builtins.str]:
568
567
  return pulumi.get(self, "host")
569
568
 
570
- @property
569
+ @_builtins.property
571
570
  @pulumi.getter
572
- def http(self) -> Optional[builtins.bool]:
571
+ def http(self) -> Optional[_builtins.bool]:
573
572
  return pulumi.get(self, "http")
574
573
 
575
- @property
574
+ @_builtins.property
576
575
  @pulumi.getter
577
- def https(self) -> Optional[builtins.bool]:
576
+ def https(self) -> Optional[_builtins.bool]:
578
577
  return pulumi.get(self, "https")
579
578
 
580
- @property
579
+ @_builtins.property
581
580
  @pulumi.getter(name="jobTimeoutMillis")
582
- def job_timeout_millis(self) -> Optional[builtins.int]:
581
+ def job_timeout_millis(self) -> Optional[_builtins.int]:
583
582
  return pulumi.get(self, "job_timeout_millis")
584
583
 
585
- @property
584
+ @_builtins.property
586
585
  @pulumi.getter(name="requestTimeoutMillis")
587
- def request_timeout_millis(self) -> Optional[builtins.int]:
586
+ def request_timeout_millis(self) -> Optional[_builtins.int]:
588
587
  return pulumi.get(self, "request_timeout_millis")
589
588
 
590
- @property
589
+ @_builtins.property
591
590
  @pulumi.getter(name="staticValues")
592
- def static_values(self) -> Optional[builtins.bool]:
591
+ def static_values(self) -> Optional[_builtins.bool]:
593
592
  return pulumi.get(self, "static_values")
594
593
 
595
- @property
594
+ @_builtins.property
596
595
  @pulumi.getter(name="urlPath")
597
- def url_path(self) -> Optional[builtins.str]:
596
+ def url_path(self) -> Optional[_builtins.str]:
598
597
  return pulumi.get(self, "url_path")
599
598
 
600
- @property
599
+ @_builtins.property
601
600
  @pulumi.getter(name="useXhr")
602
- def use_xhr(self) -> Optional[builtins.bool]:
601
+ def use_xhr(self) -> Optional[_builtins.bool]:
603
602
  return pulumi.get(self, "use_xhr")
604
603
 
605
604
 
@@ -623,45 +622,45 @@ class PulsarJobWeight(dict):
623
622
  return super().get(key, default)
624
623
 
625
624
  def __init__(__self__, *,
626
- default_value: builtins.float,
627
- name: builtins.str,
628
- weight: builtins.int,
629
- maximize: Optional[builtins.bool] = None):
625
+ default_value: _builtins.float,
626
+ name: _builtins.str,
627
+ weight: _builtins.int,
628
+ maximize: Optional[_builtins.bool] = None):
630
629
  pulumi.set(__self__, "default_value", default_value)
631
630
  pulumi.set(__self__, "name", name)
632
631
  pulumi.set(__self__, "weight", weight)
633
632
  if maximize is not None:
634
633
  pulumi.set(__self__, "maximize", maximize)
635
634
 
636
- @property
635
+ @_builtins.property
637
636
  @pulumi.getter(name="defaultValue")
638
- def default_value(self) -> builtins.float:
637
+ def default_value(self) -> _builtins.float:
639
638
  return pulumi.get(self, "default_value")
640
639
 
641
- @property
640
+ @_builtins.property
642
641
  @pulumi.getter
643
- def name(self) -> builtins.str:
642
+ def name(self) -> _builtins.str:
644
643
  return pulumi.get(self, "name")
645
644
 
646
- @property
645
+ @_builtins.property
647
646
  @pulumi.getter
648
- def weight(self) -> builtins.int:
647
+ def weight(self) -> _builtins.int:
649
648
  return pulumi.get(self, "weight")
650
649
 
651
- @property
650
+ @_builtins.property
652
651
  @pulumi.getter
653
- def maximize(self) -> Optional[builtins.bool]:
652
+ def maximize(self) -> Optional[_builtins.bool]:
654
653
  return pulumi.get(self, "maximize")
655
654
 
656
655
 
657
656
  @pulumi.output_type
658
657
  class RecordAnswer(dict):
659
658
  def __init__(__self__, *,
660
- answer: Optional[builtins.str] = None,
661
- meta: Optional[Mapping[str, builtins.str]] = None,
662
- region: Optional[builtins.str] = None):
659
+ answer: Optional[_builtins.str] = None,
660
+ meta: Optional[Mapping[str, _builtins.str]] = None,
661
+ region: Optional[_builtins.str] = None):
663
662
  """
664
- :param builtins.str answer: Space delimited string of RDATA fields dependent on the record type.
663
+ :param _builtins.str answer: Space delimited string of RDATA fields dependent on the record type.
665
664
 
666
665
  A:
667
666
 
@@ -682,7 +681,7 @@ class RecordAnswer(dict):
682
681
  SPF:
683
682
 
684
683
  answer = "v=DKIM1; k=rsa; p=XXXXXXXX"
685
- :param builtins.str region: The region (Answer Group really) that this answer
684
+ :param _builtins.str region: The region (Answer Group really) that this answer
686
685
  belongs to. This should be one of the names specified in `regions`. Only a
687
686
  single `region` per answer is currently supported. If you want an answer in
688
687
  multiple regions, duplicating the answer (including metadata) is the correct
@@ -697,9 +696,9 @@ class RecordAnswer(dict):
697
696
  if region is not None:
698
697
  pulumi.set(__self__, "region", region)
699
698
 
700
- @property
699
+ @_builtins.property
701
700
  @pulumi.getter
702
- def answer(self) -> Optional[builtins.str]:
701
+ def answer(self) -> Optional[_builtins.str]:
703
702
  """
704
703
  Space delimited string of RDATA fields dependent on the record type.
705
704
 
@@ -725,14 +724,14 @@ class RecordAnswer(dict):
725
724
  """
726
725
  return pulumi.get(self, "answer")
727
726
 
728
- @property
727
+ @_builtins.property
729
728
  @pulumi.getter
730
- def meta(self) -> Optional[Mapping[str, builtins.str]]:
729
+ def meta(self) -> Optional[Mapping[str, _builtins.str]]:
731
730
  return pulumi.get(self, "meta")
732
731
 
733
- @property
732
+ @_builtins.property
734
733
  @pulumi.getter
735
- def region(self) -> Optional[builtins.str]:
734
+ def region(self) -> Optional[_builtins.str]:
736
735
  """
737
736
  The region (Answer Group really) that this answer
738
737
  belongs to. This should be one of the names specified in `regions`. Only a
@@ -748,14 +747,14 @@ class RecordAnswer(dict):
748
747
  @pulumi.output_type
749
748
  class RecordFilter(dict):
750
749
  def __init__(__self__, *,
751
- filter: builtins.str,
752
- config: Optional[Mapping[str, builtins.str]] = None,
753
- disabled: Optional[builtins.bool] = None):
750
+ filter: _builtins.str,
751
+ config: Optional[Mapping[str, _builtins.str]] = None,
752
+ disabled: Optional[_builtins.bool] = None):
754
753
  """
755
- :param builtins.str filter: The type of filter.
756
- :param Mapping[str, builtins.str] config: The filters' configuration. Simple key/value pairs
754
+ :param _builtins.str filter: The type of filter.
755
+ :param Mapping[str, _builtins.str] config: The filters' configuration. Simple key/value pairs
757
756
  determined by the filter type.
758
- :param builtins.bool disabled: Determines whether the filter is applied in the
757
+ :param _builtins.bool disabled: Determines whether the filter is applied in the
759
758
  filter chain.
760
759
  """
761
760
  pulumi.set(__self__, "filter", filter)
@@ -764,26 +763,26 @@ class RecordFilter(dict):
764
763
  if disabled is not None:
765
764
  pulumi.set(__self__, "disabled", disabled)
766
765
 
767
- @property
766
+ @_builtins.property
768
767
  @pulumi.getter
769
- def filter(self) -> builtins.str:
768
+ def filter(self) -> _builtins.str:
770
769
  """
771
770
  The type of filter.
772
771
  """
773
772
  return pulumi.get(self, "filter")
774
773
 
775
- @property
774
+ @_builtins.property
776
775
  @pulumi.getter
777
- def config(self) -> Optional[Mapping[str, builtins.str]]:
776
+ def config(self) -> Optional[Mapping[str, _builtins.str]]:
778
777
  """
779
778
  The filters' configuration. Simple key/value pairs
780
779
  determined by the filter type.
781
780
  """
782
781
  return pulumi.get(self, "config")
783
782
 
784
- @property
783
+ @_builtins.property
785
784
  @pulumi.getter
786
- def disabled(self) -> Optional[builtins.bool]:
785
+ def disabled(self) -> Optional[_builtins.bool]:
787
786
  """
788
787
  Determines whether the filter is applied in the
789
788
  filter chain.
@@ -794,26 +793,26 @@ class RecordFilter(dict):
794
793
  @pulumi.output_type
795
794
  class RecordRegion(dict):
796
795
  def __init__(__self__, *,
797
- name: builtins.str,
798
- meta: Optional[Mapping[str, builtins.str]] = None):
796
+ name: _builtins.str,
797
+ meta: Optional[Mapping[str, _builtins.str]] = None):
799
798
  """
800
- :param builtins.str name: Name of the region (or Answer Group).
799
+ :param _builtins.str name: Name of the region (or Answer Group).
801
800
  """
802
801
  pulumi.set(__self__, "name", name)
803
802
  if meta is not None:
804
803
  pulumi.set(__self__, "meta", meta)
805
804
 
806
- @property
805
+ @_builtins.property
807
806
  @pulumi.getter
808
- def name(self) -> builtins.str:
807
+ def name(self) -> _builtins.str:
809
808
  """
810
809
  Name of the region (or Answer Group).
811
810
  """
812
811
  return pulumi.get(self, "name")
813
812
 
814
- @property
813
+ @_builtins.property
815
814
  @pulumi.getter
816
- def meta(self) -> Optional[Mapping[str, builtins.str]]:
815
+ def meta(self) -> Optional[Mapping[str, _builtins.str]]:
817
816
  return pulumi.get(self, "meta")
818
817
 
819
818
 
@@ -837,33 +836,33 @@ class TeamDnsRecordsAllow(dict):
837
836
  return super().get(key, default)
838
837
 
839
838
  def __init__(__self__, *,
840
- domain: builtins.str,
841
- include_subdomains: builtins.bool,
842
- type: builtins.str,
843
- zone: builtins.str):
839
+ domain: _builtins.str,
840
+ include_subdomains: _builtins.bool,
841
+ type: _builtins.str,
842
+ zone: _builtins.str):
844
843
  pulumi.set(__self__, "domain", domain)
845
844
  pulumi.set(__self__, "include_subdomains", include_subdomains)
846
845
  pulumi.set(__self__, "type", type)
847
846
  pulumi.set(__self__, "zone", zone)
848
847
 
849
- @property
848
+ @_builtins.property
850
849
  @pulumi.getter
851
- def domain(self) -> builtins.str:
850
+ def domain(self) -> _builtins.str:
852
851
  return pulumi.get(self, "domain")
853
852
 
854
- @property
853
+ @_builtins.property
855
854
  @pulumi.getter(name="includeSubdomains")
856
- def include_subdomains(self) -> builtins.bool:
855
+ def include_subdomains(self) -> _builtins.bool:
857
856
  return pulumi.get(self, "include_subdomains")
858
857
 
859
- @property
858
+ @_builtins.property
860
859
  @pulumi.getter
861
- def type(self) -> builtins.str:
860
+ def type(self) -> _builtins.str:
862
861
  return pulumi.get(self, "type")
863
862
 
864
- @property
863
+ @_builtins.property
865
864
  @pulumi.getter
866
- def zone(self) -> builtins.str:
865
+ def zone(self) -> _builtins.str:
867
866
  return pulumi.get(self, "zone")
868
867
 
869
868
 
@@ -887,58 +886,58 @@ class TeamDnsRecordsDeny(dict):
887
886
  return super().get(key, default)
888
887
 
889
888
  def __init__(__self__, *,
890
- domain: builtins.str,
891
- include_subdomains: builtins.bool,
892
- type: builtins.str,
893
- zone: builtins.str):
889
+ domain: _builtins.str,
890
+ include_subdomains: _builtins.bool,
891
+ type: _builtins.str,
892
+ zone: _builtins.str):
894
893
  pulumi.set(__self__, "domain", domain)
895
894
  pulumi.set(__self__, "include_subdomains", include_subdomains)
896
895
  pulumi.set(__self__, "type", type)
897
896
  pulumi.set(__self__, "zone", zone)
898
897
 
899
- @property
898
+ @_builtins.property
900
899
  @pulumi.getter
901
- def domain(self) -> builtins.str:
900
+ def domain(self) -> _builtins.str:
902
901
  return pulumi.get(self, "domain")
903
902
 
904
- @property
903
+ @_builtins.property
905
904
  @pulumi.getter(name="includeSubdomains")
906
- def include_subdomains(self) -> builtins.bool:
905
+ def include_subdomains(self) -> _builtins.bool:
907
906
  return pulumi.get(self, "include_subdomains")
908
907
 
909
- @property
908
+ @_builtins.property
910
909
  @pulumi.getter
911
- def type(self) -> builtins.str:
910
+ def type(self) -> _builtins.str:
912
911
  return pulumi.get(self, "type")
913
912
 
914
- @property
913
+ @_builtins.property
915
914
  @pulumi.getter
916
- def zone(self) -> builtins.str:
915
+ def zone(self) -> _builtins.str:
917
916
  return pulumi.get(self, "zone")
918
917
 
919
918
 
920
919
  @pulumi.output_type
921
920
  class TeamIpWhitelist(dict):
922
921
  def __init__(__self__, *,
923
- name: builtins.str,
924
- values: Sequence[builtins.str]):
922
+ name: _builtins.str,
923
+ values: Sequence[_builtins.str]):
925
924
  """
926
- :param builtins.str name: The free form name of the team.
925
+ :param _builtins.str name: The free form name of the team.
927
926
  """
928
927
  pulumi.set(__self__, "name", name)
929
928
  pulumi.set(__self__, "values", values)
930
929
 
931
- @property
930
+ @_builtins.property
932
931
  @pulumi.getter
933
- def name(self) -> builtins.str:
932
+ def name(self) -> _builtins.str:
934
933
  """
935
934
  The free form name of the team.
936
935
  """
937
936
  return pulumi.get(self, "name")
938
937
 
939
- @property
938
+ @_builtins.property
940
939
  @pulumi.getter
941
- def values(self) -> Sequence[builtins.str]:
940
+ def values(self) -> Sequence[_builtins.str]:
942
941
  return pulumi.get(self, "values")
943
942
 
944
943
 
@@ -962,33 +961,33 @@ class UserDnsRecordsAllow(dict):
962
961
  return super().get(key, default)
963
962
 
964
963
  def __init__(__self__, *,
965
- domain: builtins.str,
966
- include_subdomains: builtins.bool,
967
- type: builtins.str,
968
- zone: builtins.str):
964
+ domain: _builtins.str,
965
+ include_subdomains: _builtins.bool,
966
+ type: _builtins.str,
967
+ zone: _builtins.str):
969
968
  pulumi.set(__self__, "domain", domain)
970
969
  pulumi.set(__self__, "include_subdomains", include_subdomains)
971
970
  pulumi.set(__self__, "type", type)
972
971
  pulumi.set(__self__, "zone", zone)
973
972
 
974
- @property
973
+ @_builtins.property
975
974
  @pulumi.getter
976
- def domain(self) -> builtins.str:
975
+ def domain(self) -> _builtins.str:
977
976
  return pulumi.get(self, "domain")
978
977
 
979
- @property
978
+ @_builtins.property
980
979
  @pulumi.getter(name="includeSubdomains")
981
- def include_subdomains(self) -> builtins.bool:
980
+ def include_subdomains(self) -> _builtins.bool:
982
981
  return pulumi.get(self, "include_subdomains")
983
982
 
984
- @property
983
+ @_builtins.property
985
984
  @pulumi.getter
986
- def type(self) -> builtins.str:
985
+ def type(self) -> _builtins.str:
987
986
  return pulumi.get(self, "type")
988
987
 
989
- @property
988
+ @_builtins.property
990
989
  @pulumi.getter
991
- def zone(self) -> builtins.str:
990
+ def zone(self) -> _builtins.str:
992
991
  return pulumi.get(self, "zone")
993
992
 
994
993
 
@@ -1012,51 +1011,51 @@ class UserDnsRecordsDeny(dict):
1012
1011
  return super().get(key, default)
1013
1012
 
1014
1013
  def __init__(__self__, *,
1015
- domain: builtins.str,
1016
- include_subdomains: builtins.bool,
1017
- type: builtins.str,
1018
- zone: builtins.str):
1014
+ domain: _builtins.str,
1015
+ include_subdomains: _builtins.bool,
1016
+ type: _builtins.str,
1017
+ zone: _builtins.str):
1019
1018
  pulumi.set(__self__, "domain", domain)
1020
1019
  pulumi.set(__self__, "include_subdomains", include_subdomains)
1021
1020
  pulumi.set(__self__, "type", type)
1022
1021
  pulumi.set(__self__, "zone", zone)
1023
1022
 
1024
- @property
1023
+ @_builtins.property
1025
1024
  @pulumi.getter
1026
- def domain(self) -> builtins.str:
1025
+ def domain(self) -> _builtins.str:
1027
1026
  return pulumi.get(self, "domain")
1028
1027
 
1029
- @property
1028
+ @_builtins.property
1030
1029
  @pulumi.getter(name="includeSubdomains")
1031
- def include_subdomains(self) -> builtins.bool:
1030
+ def include_subdomains(self) -> _builtins.bool:
1032
1031
  return pulumi.get(self, "include_subdomains")
1033
1032
 
1034
- @property
1033
+ @_builtins.property
1035
1034
  @pulumi.getter
1036
- def type(self) -> builtins.str:
1035
+ def type(self) -> _builtins.str:
1037
1036
  return pulumi.get(self, "type")
1038
1037
 
1039
- @property
1038
+ @_builtins.property
1040
1039
  @pulumi.getter
1041
- def zone(self) -> builtins.str:
1040
+ def zone(self) -> _builtins.str:
1042
1041
  return pulumi.get(self, "zone")
1043
1042
 
1044
1043
 
1045
1044
  @pulumi.output_type
1046
1045
  class ZoneSecondary(dict):
1047
1046
  def __init__(__self__, *,
1048
- ip: builtins.str,
1049
- networks: Optional[Sequence[builtins.int]] = None,
1050
- notify: Optional[builtins.bool] = None,
1051
- port: Optional[builtins.int] = None):
1047
+ ip: _builtins.str,
1048
+ networks: Optional[Sequence[_builtins.int]] = None,
1049
+ notify: Optional[_builtins.bool] = None,
1050
+ port: Optional[_builtins.int] = None):
1052
1051
  """
1053
- :param builtins.str ip: IPv4 address of the secondary server.
1054
- :param Sequence[builtins.int] networks: List of network IDs (`int`) for which the zone
1052
+ :param _builtins.str ip: IPv4 address of the secondary server.
1053
+ :param Sequence[_builtins.int] networks: List of network IDs (`int`) for which the zone
1055
1054
  should be made available. Default is network 0, the primary NSONE Global
1056
1055
  Network. Normally, you should not have to worry about this.
1057
- :param builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
1056
+ :param _builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
1058
1057
  when the zone changes. Default `false`.
1059
- :param builtins.int port: Port of the the secondary server. Default `53`.
1058
+ :param _builtins.int port: Port of the the secondary server. Default `53`.
1060
1059
  """
1061
1060
  pulumi.set(__self__, "ip", ip)
1062
1061
  if networks is not None:
@@ -1066,17 +1065,17 @@ class ZoneSecondary(dict):
1066
1065
  if port is not None:
1067
1066
  pulumi.set(__self__, "port", port)
1068
1067
 
1069
- @property
1068
+ @_builtins.property
1070
1069
  @pulumi.getter
1071
- def ip(self) -> builtins.str:
1070
+ def ip(self) -> _builtins.str:
1072
1071
  """
1073
1072
  IPv4 address of the secondary server.
1074
1073
  """
1075
1074
  return pulumi.get(self, "ip")
1076
1075
 
1077
- @property
1076
+ @_builtins.property
1078
1077
  @pulumi.getter
1079
- def networks(self) -> Optional[Sequence[builtins.int]]:
1078
+ def networks(self) -> Optional[Sequence[_builtins.int]]:
1080
1079
  """
1081
1080
  List of network IDs (`int`) for which the zone
1082
1081
  should be made available. Default is network 0, the primary NSONE Global
@@ -1084,18 +1083,18 @@ class ZoneSecondary(dict):
1084
1083
  """
1085
1084
  return pulumi.get(self, "networks")
1086
1085
 
1087
- @property
1086
+ @_builtins.property
1088
1087
  @pulumi.getter
1089
- def notify(self) -> Optional[builtins.bool]:
1088
+ def notify(self) -> Optional[_builtins.bool]:
1090
1089
  """
1091
1090
  Whether we send `NOTIFY` messages to the secondary host
1092
1091
  when the zone changes. Default `false`.
1093
1092
  """
1094
1093
  return pulumi.get(self, "notify")
1095
1094
 
1096
- @property
1095
+ @_builtins.property
1097
1096
  @pulumi.getter
1098
- def port(self) -> Optional[builtins.int]:
1097
+ def port(self) -> Optional[_builtins.int]:
1099
1098
  """
1100
1099
  Port of the the secondary server. Default `53`.
1101
1100
  """
@@ -1105,19 +1104,19 @@ class ZoneSecondary(dict):
1105
1104
  @pulumi.output_type
1106
1105
  class GetBillingUsageByNetworkResult(dict):
1107
1106
  def __init__(__self__, *,
1108
- billable_queries: builtins.int,
1109
- clean_queries: builtins.int,
1107
+ billable_queries: _builtins.int,
1108
+ clean_queries: _builtins.int,
1110
1109
  dailies: Sequence['outputs.GetBillingUsageByNetworkDailyResult'],
1111
- ddos_queries: builtins.int,
1112
- network: builtins.int,
1113
- nxd_responses: builtins.int):
1110
+ ddos_queries: _builtins.int,
1111
+ network: _builtins.int,
1112
+ nxd_responses: _builtins.int):
1114
1113
  """
1115
- :param builtins.int billable_queries: Total billable queries for this network.
1116
- :param builtins.int clean_queries: Clean queries for this day.
1114
+ :param _builtins.int billable_queries: Total billable queries for this network.
1115
+ :param _builtins.int clean_queries: Clean queries for this day.
1117
1116
  :param Sequence['GetBillingUsageByNetworkDailyArgs'] dailies: Daily breakdown containing:
1118
- :param builtins.int ddos_queries: DDoS queries for this day.
1119
- :param builtins.int network: The network ID.
1120
- :param builtins.int nxd_responses: NXD responses for this day.
1117
+ :param _builtins.int ddos_queries: DDoS queries for this day.
1118
+ :param _builtins.int network: The network ID.
1119
+ :param _builtins.int nxd_responses: NXD responses for this day.
1121
1120
  """
1122
1121
  pulumi.set(__self__, "billable_queries", billable_queries)
1123
1122
  pulumi.set(__self__, "clean_queries", clean_queries)
@@ -1126,23 +1125,23 @@ class GetBillingUsageByNetworkResult(dict):
1126
1125
  pulumi.set(__self__, "network", network)
1127
1126
  pulumi.set(__self__, "nxd_responses", nxd_responses)
1128
1127
 
1129
- @property
1128
+ @_builtins.property
1130
1129
  @pulumi.getter(name="billableQueries")
1131
- def billable_queries(self) -> builtins.int:
1130
+ def billable_queries(self) -> _builtins.int:
1132
1131
  """
1133
1132
  Total billable queries for this network.
1134
1133
  """
1135
1134
  return pulumi.get(self, "billable_queries")
1136
1135
 
1137
- @property
1136
+ @_builtins.property
1138
1137
  @pulumi.getter(name="cleanQueries")
1139
- def clean_queries(self) -> builtins.int:
1138
+ def clean_queries(self) -> _builtins.int:
1140
1139
  """
1141
1140
  Clean queries for this day.
1142
1141
  """
1143
1142
  return pulumi.get(self, "clean_queries")
1144
1143
 
1145
- @property
1144
+ @_builtins.property
1146
1145
  @pulumi.getter
1147
1146
  def dailies(self) -> Sequence['outputs.GetBillingUsageByNetworkDailyResult']:
1148
1147
  """
@@ -1150,25 +1149,25 @@ class GetBillingUsageByNetworkResult(dict):
1150
1149
  """
1151
1150
  return pulumi.get(self, "dailies")
1152
1151
 
1153
- @property
1152
+ @_builtins.property
1154
1153
  @pulumi.getter(name="ddosQueries")
1155
- def ddos_queries(self) -> builtins.int:
1154
+ def ddos_queries(self) -> _builtins.int:
1156
1155
  """
1157
1156
  DDoS queries for this day.
1158
1157
  """
1159
1158
  return pulumi.get(self, "ddos_queries")
1160
1159
 
1161
- @property
1160
+ @_builtins.property
1162
1161
  @pulumi.getter
1163
- def network(self) -> builtins.int:
1162
+ def network(self) -> _builtins.int:
1164
1163
  """
1165
1164
  The network ID.
1166
1165
  """
1167
1166
  return pulumi.get(self, "network")
1168
1167
 
1169
- @property
1168
+ @_builtins.property
1170
1169
  @pulumi.getter(name="nxdResponses")
1171
- def nxd_responses(self) -> builtins.int:
1170
+ def nxd_responses(self) -> _builtins.int:
1172
1171
  """
1173
1172
  NXD responses for this day.
1174
1173
  """
@@ -1178,48 +1177,48 @@ class GetBillingUsageByNetworkResult(dict):
1178
1177
  @pulumi.output_type
1179
1178
  class GetBillingUsageByNetworkDailyResult(dict):
1180
1179
  def __init__(__self__, *,
1181
- clean_queries: builtins.int,
1182
- ddos_queries: builtins.int,
1183
- nxd_responses: builtins.int,
1184
- timestamp: builtins.int):
1180
+ clean_queries: _builtins.int,
1181
+ ddos_queries: _builtins.int,
1182
+ nxd_responses: _builtins.int,
1183
+ timestamp: _builtins.int):
1185
1184
  """
1186
- :param builtins.int clean_queries: Clean queries for this day.
1187
- :param builtins.int ddos_queries: DDoS queries for this day.
1188
- :param builtins.int nxd_responses: NXD responses for this day.
1189
- :param builtins.int timestamp: The timestamp for the day.
1185
+ :param _builtins.int clean_queries: Clean queries for this day.
1186
+ :param _builtins.int ddos_queries: DDoS queries for this day.
1187
+ :param _builtins.int nxd_responses: NXD responses for this day.
1188
+ :param _builtins.int timestamp: The timestamp for the day.
1190
1189
  """
1191
1190
  pulumi.set(__self__, "clean_queries", clean_queries)
1192
1191
  pulumi.set(__self__, "ddos_queries", ddos_queries)
1193
1192
  pulumi.set(__self__, "nxd_responses", nxd_responses)
1194
1193
  pulumi.set(__self__, "timestamp", timestamp)
1195
1194
 
1196
- @property
1195
+ @_builtins.property
1197
1196
  @pulumi.getter(name="cleanQueries")
1198
- def clean_queries(self) -> builtins.int:
1197
+ def clean_queries(self) -> _builtins.int:
1199
1198
  """
1200
1199
  Clean queries for this day.
1201
1200
  """
1202
1201
  return pulumi.get(self, "clean_queries")
1203
1202
 
1204
- @property
1203
+ @_builtins.property
1205
1204
  @pulumi.getter(name="ddosQueries")
1206
- def ddos_queries(self) -> builtins.int:
1205
+ def ddos_queries(self) -> _builtins.int:
1207
1206
  """
1208
1207
  DDoS queries for this day.
1209
1208
  """
1210
1209
  return pulumi.get(self, "ddos_queries")
1211
1210
 
1212
- @property
1211
+ @_builtins.property
1213
1212
  @pulumi.getter(name="nxdResponses")
1214
- def nxd_responses(self) -> builtins.int:
1213
+ def nxd_responses(self) -> _builtins.int:
1215
1214
  """
1216
1215
  NXD responses for this day.
1217
1216
  """
1218
1217
  return pulumi.get(self, "nxd_responses")
1219
1218
 
1220
- @property
1219
+ @_builtins.property
1221
1220
  @pulumi.getter
1222
- def timestamp(self) -> builtins.int:
1221
+ def timestamp(self) -> _builtins.int:
1223
1222
  """
1224
1223
  The timestamp for the day.
1225
1224
  """
@@ -1231,17 +1230,17 @@ class GetDNSSecDelegationResult(dict):
1231
1230
  def __init__(__self__, *,
1232
1231
  dnskeys: Sequence['outputs.GetDNSSecDelegationDnskeyResult'],
1233
1232
  ds: Sequence['outputs.GetDNSSecDelegationDResult'],
1234
- ttl: builtins.int):
1233
+ ttl: _builtins.int):
1235
1234
  """
1236
1235
  :param Sequence['GetDNSSecDelegationDnskeyArgs'] dnskeys: (Computed) List of Keys. Key is documented below.
1237
1236
  :param Sequence['GetDNSSecDelegationDArgs'] ds: (Computed) List of Keys. Key is documented below.
1238
- :param builtins.int ttl: (Computed) TTL for the Keys (int).
1237
+ :param _builtins.int ttl: (Computed) TTL for the Keys (int).
1239
1238
  """
1240
1239
  pulumi.set(__self__, "dnskeys", dnskeys)
1241
1240
  pulumi.set(__self__, "ds", ds)
1242
1241
  pulumi.set(__self__, "ttl", ttl)
1243
1242
 
1244
- @property
1243
+ @_builtins.property
1245
1244
  @pulumi.getter
1246
1245
  def dnskeys(self) -> Sequence['outputs.GetDNSSecDelegationDnskeyResult']:
1247
1246
  """
@@ -1249,7 +1248,7 @@ class GetDNSSecDelegationResult(dict):
1249
1248
  """
1250
1249
  return pulumi.get(self, "dnskeys")
1251
1250
 
1252
- @property
1251
+ @_builtins.property
1253
1252
  @pulumi.getter
1254
1253
  def ds(self) -> Sequence['outputs.GetDNSSecDelegationDResult']:
1255
1254
  """
@@ -1257,9 +1256,9 @@ class GetDNSSecDelegationResult(dict):
1257
1256
  """
1258
1257
  return pulumi.get(self, "ds")
1259
1258
 
1260
- @property
1259
+ @_builtins.property
1261
1260
  @pulumi.getter
1262
- def ttl(self) -> builtins.int:
1261
+ def ttl(self) -> _builtins.int:
1263
1262
  """
1264
1263
  (Computed) TTL for the Keys (int).
1265
1264
  """
@@ -1269,48 +1268,48 @@ class GetDNSSecDelegationResult(dict):
1269
1268
  @pulumi.output_type
1270
1269
  class GetDNSSecDelegationDResult(dict):
1271
1270
  def __init__(__self__, *,
1272
- algorithm: builtins.str,
1273
- flags: builtins.str,
1274
- protocol: builtins.str,
1275
- public_key: builtins.str):
1271
+ algorithm: _builtins.str,
1272
+ flags: _builtins.str,
1273
+ protocol: _builtins.str,
1274
+ public_key: _builtins.str):
1276
1275
  """
1277
- :param builtins.str algorithm: (Computed) Algorithm of the key.
1278
- :param builtins.str flags: (Computed) Flags for the key.
1279
- :param builtins.str protocol: (Computed) Protocol of the key.
1280
- :param builtins.str public_key: (Computed) Public key for the key.
1276
+ :param _builtins.str algorithm: (Computed) Algorithm of the key.
1277
+ :param _builtins.str flags: (Computed) Flags for the key.
1278
+ :param _builtins.str protocol: (Computed) Protocol of the key.
1279
+ :param _builtins.str public_key: (Computed) Public key for the key.
1281
1280
  """
1282
1281
  pulumi.set(__self__, "algorithm", algorithm)
1283
1282
  pulumi.set(__self__, "flags", flags)
1284
1283
  pulumi.set(__self__, "protocol", protocol)
1285
1284
  pulumi.set(__self__, "public_key", public_key)
1286
1285
 
1287
- @property
1286
+ @_builtins.property
1288
1287
  @pulumi.getter
1289
- def algorithm(self) -> builtins.str:
1288
+ def algorithm(self) -> _builtins.str:
1290
1289
  """
1291
1290
  (Computed) Algorithm of the key.
1292
1291
  """
1293
1292
  return pulumi.get(self, "algorithm")
1294
1293
 
1295
- @property
1294
+ @_builtins.property
1296
1295
  @pulumi.getter
1297
- def flags(self) -> builtins.str:
1296
+ def flags(self) -> _builtins.str:
1298
1297
  """
1299
1298
  (Computed) Flags for the key.
1300
1299
  """
1301
1300
  return pulumi.get(self, "flags")
1302
1301
 
1303
- @property
1302
+ @_builtins.property
1304
1303
  @pulumi.getter
1305
- def protocol(self) -> builtins.str:
1304
+ def protocol(self) -> _builtins.str:
1306
1305
  """
1307
1306
  (Computed) Protocol of the key.
1308
1307
  """
1309
1308
  return pulumi.get(self, "protocol")
1310
1309
 
1311
- @property
1310
+ @_builtins.property
1312
1311
  @pulumi.getter(name="publicKey")
1313
- def public_key(self) -> builtins.str:
1312
+ def public_key(self) -> _builtins.str:
1314
1313
  """
1315
1314
  (Computed) Public key for the key.
1316
1315
  """
@@ -1320,48 +1319,48 @@ class GetDNSSecDelegationDResult(dict):
1320
1319
  @pulumi.output_type
1321
1320
  class GetDNSSecDelegationDnskeyResult(dict):
1322
1321
  def __init__(__self__, *,
1323
- algorithm: builtins.str,
1324
- flags: builtins.str,
1325
- protocol: builtins.str,
1326
- public_key: builtins.str):
1322
+ algorithm: _builtins.str,
1323
+ flags: _builtins.str,
1324
+ protocol: _builtins.str,
1325
+ public_key: _builtins.str):
1327
1326
  """
1328
- :param builtins.str algorithm: (Computed) Algorithm of the key.
1329
- :param builtins.str flags: (Computed) Flags for the key.
1330
- :param builtins.str protocol: (Computed) Protocol of the key.
1331
- :param builtins.str public_key: (Computed) Public key for the key.
1327
+ :param _builtins.str algorithm: (Computed) Algorithm of the key.
1328
+ :param _builtins.str flags: (Computed) Flags for the key.
1329
+ :param _builtins.str protocol: (Computed) Protocol of the key.
1330
+ :param _builtins.str public_key: (Computed) Public key for the key.
1332
1331
  """
1333
1332
  pulumi.set(__self__, "algorithm", algorithm)
1334
1333
  pulumi.set(__self__, "flags", flags)
1335
1334
  pulumi.set(__self__, "protocol", protocol)
1336
1335
  pulumi.set(__self__, "public_key", public_key)
1337
1336
 
1338
- @property
1337
+ @_builtins.property
1339
1338
  @pulumi.getter
1340
- def algorithm(self) -> builtins.str:
1339
+ def algorithm(self) -> _builtins.str:
1341
1340
  """
1342
1341
  (Computed) Algorithm of the key.
1343
1342
  """
1344
1343
  return pulumi.get(self, "algorithm")
1345
1344
 
1346
- @property
1345
+ @_builtins.property
1347
1346
  @pulumi.getter
1348
- def flags(self) -> builtins.str:
1347
+ def flags(self) -> _builtins.str:
1349
1348
  """
1350
1349
  (Computed) Flags for the key.
1351
1350
  """
1352
1351
  return pulumi.get(self, "flags")
1353
1352
 
1354
- @property
1353
+ @_builtins.property
1355
1354
  @pulumi.getter
1356
- def protocol(self) -> builtins.str:
1355
+ def protocol(self) -> _builtins.str:
1357
1356
  """
1358
1357
  (Computed) Protocol of the key.
1359
1358
  """
1360
1359
  return pulumi.get(self, "protocol")
1361
1360
 
1362
- @property
1361
+ @_builtins.property
1363
1362
  @pulumi.getter(name="publicKey")
1364
- def public_key(self) -> builtins.str:
1363
+ def public_key(self) -> _builtins.str:
1365
1364
  """
1366
1365
  (Computed) Public key for the key.
1367
1366
  """
@@ -1372,15 +1371,15 @@ class GetDNSSecDelegationDnskeyResult(dict):
1372
1371
  class GetDNSSecKeyResult(dict):
1373
1372
  def __init__(__self__, *,
1374
1373
  dnskeys: Sequence['outputs.GetDNSSecKeyDnskeyResult'],
1375
- ttl: builtins.int):
1374
+ ttl: _builtins.int):
1376
1375
  """
1377
1376
  :param Sequence['GetDNSSecKeyDnskeyArgs'] dnskeys: (Computed) List of Keys. Key is documented below.
1378
- :param builtins.int ttl: (Computed) TTL for the Keys (int).
1377
+ :param _builtins.int ttl: (Computed) TTL for the Keys (int).
1379
1378
  """
1380
1379
  pulumi.set(__self__, "dnskeys", dnskeys)
1381
1380
  pulumi.set(__self__, "ttl", ttl)
1382
1381
 
1383
- @property
1382
+ @_builtins.property
1384
1383
  @pulumi.getter
1385
1384
  def dnskeys(self) -> Sequence['outputs.GetDNSSecKeyDnskeyResult']:
1386
1385
  """
@@ -1388,9 +1387,9 @@ class GetDNSSecKeyResult(dict):
1388
1387
  """
1389
1388
  return pulumi.get(self, "dnskeys")
1390
1389
 
1391
- @property
1390
+ @_builtins.property
1392
1391
  @pulumi.getter
1393
- def ttl(self) -> builtins.int:
1392
+ def ttl(self) -> _builtins.int:
1394
1393
  """
1395
1394
  (Computed) TTL for the Keys (int).
1396
1395
  """
@@ -1400,48 +1399,48 @@ class GetDNSSecKeyResult(dict):
1400
1399
  @pulumi.output_type
1401
1400
  class GetDNSSecKeyDnskeyResult(dict):
1402
1401
  def __init__(__self__, *,
1403
- algorithm: builtins.str,
1404
- flags: builtins.str,
1405
- protocol: builtins.str,
1406
- public_key: builtins.str):
1402
+ algorithm: _builtins.str,
1403
+ flags: _builtins.str,
1404
+ protocol: _builtins.str,
1405
+ public_key: _builtins.str):
1407
1406
  """
1408
- :param builtins.str algorithm: (Computed) Algorithm of the key.
1409
- :param builtins.str flags: (Computed) Flags for the key.
1410
- :param builtins.str protocol: (Computed) Protocol of the key.
1411
- :param builtins.str public_key: (Computed) Public key for the key.
1407
+ :param _builtins.str algorithm: (Computed) Algorithm of the key.
1408
+ :param _builtins.str flags: (Computed) Flags for the key.
1409
+ :param _builtins.str protocol: (Computed) Protocol of the key.
1410
+ :param _builtins.str public_key: (Computed) Public key for the key.
1412
1411
  """
1413
1412
  pulumi.set(__self__, "algorithm", algorithm)
1414
1413
  pulumi.set(__self__, "flags", flags)
1415
1414
  pulumi.set(__self__, "protocol", protocol)
1416
1415
  pulumi.set(__self__, "public_key", public_key)
1417
1416
 
1418
- @property
1417
+ @_builtins.property
1419
1418
  @pulumi.getter
1420
- def algorithm(self) -> builtins.str:
1419
+ def algorithm(self) -> _builtins.str:
1421
1420
  """
1422
1421
  (Computed) Algorithm of the key.
1423
1422
  """
1424
1423
  return pulumi.get(self, "algorithm")
1425
1424
 
1426
- @property
1425
+ @_builtins.property
1427
1426
  @pulumi.getter
1428
- def flags(self) -> builtins.str:
1427
+ def flags(self) -> _builtins.str:
1429
1428
  """
1430
1429
  (Computed) Flags for the key.
1431
1430
  """
1432
1431
  return pulumi.get(self, "flags")
1433
1432
 
1434
- @property
1433
+ @_builtins.property
1435
1434
  @pulumi.getter
1436
- def protocol(self) -> builtins.str:
1435
+ def protocol(self) -> _builtins.str:
1437
1436
  """
1438
1437
  (Computed) Protocol of the key.
1439
1438
  """
1440
1439
  return pulumi.get(self, "protocol")
1441
1440
 
1442
- @property
1441
+ @_builtins.property
1443
1442
  @pulumi.getter(name="publicKey")
1444
- def public_key(self) -> builtins.str:
1443
+ def public_key(self) -> _builtins.str:
1445
1444
  """
1446
1445
  (Computed) Public key for the key.
1447
1446
  """
@@ -1451,13 +1450,13 @@ class GetDNSSecKeyDnskeyResult(dict):
1451
1450
  @pulumi.output_type
1452
1451
  class GetMonitoringRegionsRegionResult(dict):
1453
1452
  def __init__(__self__, *,
1454
- code: Optional[builtins.str] = None,
1455
- name: Optional[builtins.str] = None,
1456
- subnets: Optional[Sequence[builtins.str]] = None):
1453
+ code: Optional[_builtins.str] = None,
1454
+ name: Optional[_builtins.str] = None,
1455
+ subnets: Optional[Sequence[_builtins.str]] = None):
1457
1456
  """
1458
- :param builtins.str code: 3-letter city code identifying the location of the monitor.
1459
- :param builtins.str name: City name identifying the location of the monitor.
1460
- :param Sequence[builtins.str] subnets: A list of IPv4 and IPv6 subnets the monitor sources requests from.
1457
+ :param _builtins.str code: 3-letter city code identifying the location of the monitor.
1458
+ :param _builtins.str name: City name identifying the location of the monitor.
1459
+ :param Sequence[_builtins.str] subnets: A list of IPv4 and IPv6 subnets the monitor sources requests from.
1461
1460
  """
1462
1461
  if code is not None:
1463
1462
  pulumi.set(__self__, "code", code)
@@ -1466,25 +1465,25 @@ class GetMonitoringRegionsRegionResult(dict):
1466
1465
  if subnets is not None:
1467
1466
  pulumi.set(__self__, "subnets", subnets)
1468
1467
 
1469
- @property
1468
+ @_builtins.property
1470
1469
  @pulumi.getter
1471
- def code(self) -> Optional[builtins.str]:
1470
+ def code(self) -> Optional[_builtins.str]:
1472
1471
  """
1473
1472
  3-letter city code identifying the location of the monitor.
1474
1473
  """
1475
1474
  return pulumi.get(self, "code")
1476
1475
 
1477
- @property
1476
+ @_builtins.property
1478
1477
  @pulumi.getter
1479
- def name(self) -> Optional[builtins.str]:
1478
+ def name(self) -> Optional[_builtins.str]:
1480
1479
  """
1481
1480
  City name identifying the location of the monitor.
1482
1481
  """
1483
1482
  return pulumi.get(self, "name")
1484
1483
 
1485
- @property
1484
+ @_builtins.property
1486
1485
  @pulumi.getter
1487
- def subnets(self) -> Optional[Sequence[builtins.str]]:
1486
+ def subnets(self) -> Optional[Sequence[_builtins.str]]:
1488
1487
  """
1489
1488
  A list of IPv4 and IPv6 subnets the monitor sources requests from.
1490
1489
  """
@@ -1494,37 +1493,37 @@ class GetMonitoringRegionsRegionResult(dict):
1494
1493
  @pulumi.output_type
1495
1494
  class GetNetworksNetworkResult(dict):
1496
1495
  def __init__(__self__, *,
1497
- label: builtins.str,
1498
- name: builtins.str,
1499
- network_id: builtins.int):
1496
+ label: _builtins.str,
1497
+ name: _builtins.str,
1498
+ network_id: _builtins.int):
1500
1499
  """
1501
- :param builtins.str label: Label associated with the network.
1502
- :param builtins.str name: Name of the network.
1503
- :param builtins.int network_id: network ID (`int`). Default is network 0, the primary NS1 Managed DNS Network.
1500
+ :param _builtins.str label: Label associated with the network.
1501
+ :param _builtins.str name: Name of the network.
1502
+ :param _builtins.int network_id: network ID (`int`). Default is network 0, the primary NS1 Managed DNS Network.
1504
1503
  """
1505
1504
  pulumi.set(__self__, "label", label)
1506
1505
  pulumi.set(__self__, "name", name)
1507
1506
  pulumi.set(__self__, "network_id", network_id)
1508
1507
 
1509
- @property
1508
+ @_builtins.property
1510
1509
  @pulumi.getter
1511
- def label(self) -> builtins.str:
1510
+ def label(self) -> _builtins.str:
1512
1511
  """
1513
1512
  Label associated with the network.
1514
1513
  """
1515
1514
  return pulumi.get(self, "label")
1516
1515
 
1517
- @property
1516
+ @_builtins.property
1518
1517
  @pulumi.getter
1519
- def name(self) -> builtins.str:
1518
+ def name(self) -> _builtins.str:
1520
1519
  """
1521
1520
  Name of the network.
1522
1521
  """
1523
1522
  return pulumi.get(self, "name")
1524
1523
 
1525
- @property
1524
+ @_builtins.property
1526
1525
  @pulumi.getter(name="networkId")
1527
- def network_id(self) -> builtins.int:
1526
+ def network_id(self) -> _builtins.int:
1528
1527
  """
1529
1528
  network ID (`int`). Default is network 0, the primary NS1 Managed DNS Network.
1530
1529
  """
@@ -1534,135 +1533,135 @@ class GetNetworksNetworkResult(dict):
1534
1533
  @pulumi.output_type
1535
1534
  class GetRecordAnswerResult(dict):
1536
1535
  def __init__(__self__, *,
1537
- answer: builtins.str,
1538
- meta: Mapping[str, builtins.str],
1539
- region: builtins.str):
1536
+ answer: _builtins.str,
1537
+ meta: Mapping[str, _builtins.str],
1538
+ region: _builtins.str):
1540
1539
  """
1541
- :param Mapping[str, builtins.str] meta: Map of metadata
1540
+ :param Mapping[str, _builtins.str] meta: Map of metadata
1542
1541
  """
1543
1542
  pulumi.set(__self__, "answer", answer)
1544
1543
  pulumi.set(__self__, "meta", meta)
1545
1544
  pulumi.set(__self__, "region", region)
1546
1545
 
1547
- @property
1546
+ @_builtins.property
1548
1547
  @pulumi.getter
1549
- def answer(self) -> builtins.str:
1548
+ def answer(self) -> _builtins.str:
1550
1549
  return pulumi.get(self, "answer")
1551
1550
 
1552
- @property
1551
+ @_builtins.property
1553
1552
  @pulumi.getter
1554
- def meta(self) -> Mapping[str, builtins.str]:
1553
+ def meta(self) -> Mapping[str, _builtins.str]:
1555
1554
  """
1556
1555
  Map of metadata
1557
1556
  """
1558
1557
  return pulumi.get(self, "meta")
1559
1558
 
1560
- @property
1559
+ @_builtins.property
1561
1560
  @pulumi.getter
1562
- def region(self) -> builtins.str:
1561
+ def region(self) -> _builtins.str:
1563
1562
  return pulumi.get(self, "region")
1564
1563
 
1565
1564
 
1566
1565
  @pulumi.output_type
1567
1566
  class GetRecordFilterResult(dict):
1568
1567
  def __init__(__self__, *,
1569
- config: Mapping[str, builtins.str],
1570
- disabled: builtins.bool,
1571
- filter: builtins.str):
1568
+ config: Mapping[str, _builtins.str],
1569
+ disabled: _builtins.bool,
1570
+ filter: _builtins.str):
1572
1571
  pulumi.set(__self__, "config", config)
1573
1572
  pulumi.set(__self__, "disabled", disabled)
1574
1573
  pulumi.set(__self__, "filter", filter)
1575
1574
 
1576
- @property
1575
+ @_builtins.property
1577
1576
  @pulumi.getter
1578
- def config(self) -> Mapping[str, builtins.str]:
1577
+ def config(self) -> Mapping[str, _builtins.str]:
1579
1578
  return pulumi.get(self, "config")
1580
1579
 
1581
- @property
1580
+ @_builtins.property
1582
1581
  @pulumi.getter
1583
- def disabled(self) -> builtins.bool:
1582
+ def disabled(self) -> _builtins.bool:
1584
1583
  return pulumi.get(self, "disabled")
1585
1584
 
1586
- @property
1585
+ @_builtins.property
1587
1586
  @pulumi.getter
1588
- def filter(self) -> builtins.str:
1587
+ def filter(self) -> _builtins.str:
1589
1588
  return pulumi.get(self, "filter")
1590
1589
 
1591
1590
 
1592
1591
  @pulumi.output_type
1593
1592
  class GetRecordRegionResult(dict):
1594
1593
  def __init__(__self__, *,
1595
- meta: Mapping[str, builtins.str],
1596
- name: builtins.str):
1594
+ meta: Mapping[str, _builtins.str],
1595
+ name: _builtins.str):
1597
1596
  """
1598
- :param Mapping[str, builtins.str] meta: Map of metadata
1597
+ :param Mapping[str, _builtins.str] meta: Map of metadata
1599
1598
  """
1600
1599
  pulumi.set(__self__, "meta", meta)
1601
1600
  pulumi.set(__self__, "name", name)
1602
1601
 
1603
- @property
1602
+ @_builtins.property
1604
1603
  @pulumi.getter
1605
- def meta(self) -> Mapping[str, builtins.str]:
1604
+ def meta(self) -> Mapping[str, _builtins.str]:
1606
1605
  """
1607
1606
  Map of metadata
1608
1607
  """
1609
1608
  return pulumi.get(self, "meta")
1610
1609
 
1611
- @property
1610
+ @_builtins.property
1612
1611
  @pulumi.getter
1613
- def name(self) -> builtins.str:
1612
+ def name(self) -> _builtins.str:
1614
1613
  return pulumi.get(self, "name")
1615
1614
 
1616
1615
 
1617
1616
  @pulumi.output_type
1618
1617
  class GetZoneSecondaryResult(dict):
1619
1618
  def __init__(__self__, *,
1620
- ip: builtins.str,
1621
- networks: Sequence[builtins.int],
1622
- notify: builtins.bool,
1623
- port: builtins.int):
1619
+ ip: _builtins.str,
1620
+ networks: Sequence[_builtins.int],
1621
+ notify: _builtins.bool,
1622
+ port: _builtins.int):
1624
1623
  """
1625
- :param builtins.str ip: IPv4 address of the secondary server.
1626
- :param Sequence[builtins.int] networks: List of network IDs (`int`) for which the zone should be made
1624
+ :param _builtins.str ip: IPv4 address of the secondary server.
1625
+ :param Sequence[_builtins.int] networks: List of network IDs (`int`) for which the zone should be made
1627
1626
  available. Default is network 0, the primary NSONE Global Network.
1628
- :param builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
1627
+ :param _builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
1629
1628
  when the zone changes. Default `false`.
1630
- :param builtins.int port: Port of the the secondary server. Default `53`.
1629
+ :param _builtins.int port: Port of the the secondary server. Default `53`.
1631
1630
  """
1632
1631
  pulumi.set(__self__, "ip", ip)
1633
1632
  pulumi.set(__self__, "networks", networks)
1634
1633
  pulumi.set(__self__, "notify", notify)
1635
1634
  pulumi.set(__self__, "port", port)
1636
1635
 
1637
- @property
1636
+ @_builtins.property
1638
1637
  @pulumi.getter
1639
- def ip(self) -> builtins.str:
1638
+ def ip(self) -> _builtins.str:
1640
1639
  """
1641
1640
  IPv4 address of the secondary server.
1642
1641
  """
1643
1642
  return pulumi.get(self, "ip")
1644
1643
 
1645
- @property
1644
+ @_builtins.property
1646
1645
  @pulumi.getter
1647
- def networks(self) -> Sequence[builtins.int]:
1646
+ def networks(self) -> Sequence[_builtins.int]:
1648
1647
  """
1649
1648
  List of network IDs (`int`) for which the zone should be made
1650
1649
  available. Default is network 0, the primary NSONE Global Network.
1651
1650
  """
1652
1651
  return pulumi.get(self, "networks")
1653
1652
 
1654
- @property
1653
+ @_builtins.property
1655
1654
  @pulumi.getter
1656
- def notify(self) -> builtins.bool:
1655
+ def notify(self) -> _builtins.bool:
1657
1656
  """
1658
1657
  Whether we send `NOTIFY` messages to the secondary host
1659
1658
  when the zone changes. Default `false`.
1660
1659
  """
1661
1660
  return pulumi.get(self, "notify")
1662
1661
 
1663
- @property
1662
+ @_builtins.property
1664
1663
  @pulumi.getter
1665
- def port(self) -> builtins.int:
1664
+ def port(self) -> _builtins.int:
1666
1665
  """
1667
1666
  Port of the the secondary server. Default `53`.
1668
1667
  """