pulumi-ns1 3.7.0a1753337859__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/__init__.py +1 -1
- pulumi_ns1/_inputs.py +424 -425
- pulumi_ns1/account_whitelist.py +35 -36
- pulumi_ns1/alert.py +139 -140
- pulumi_ns1/api_key.py +526 -527
- pulumi_ns1/application.py +72 -73
- pulumi_ns1/config/__init__.py +1 -1
- pulumi_ns1/config/__init__.pyi +1 -2
- pulumi_ns1/config/vars.py +7 -8
- pulumi_ns1/data_feed.py +52 -53
- pulumi_ns1/data_source.py +52 -53
- pulumi_ns1/dataset.py +51 -52
- pulumi_ns1/dnsview.py +93 -94
- pulumi_ns1/get_billing_usage.py +48 -49
- pulumi_ns1/get_dns_sec.py +11 -12
- pulumi_ns1/get_monitoring_regions.py +4 -5
- pulumi_ns1/get_networks.py +4 -5
- pulumi_ns1/get_record.py +40 -41
- pulumi_ns1/get_zone.py +52 -53
- pulumi_ns1/monitoring_job.py +255 -256
- pulumi_ns1/notify_list.py +21 -22
- pulumi_ns1/outputs.py +414 -415
- pulumi_ns1/provider.py +56 -57
- pulumi_ns1/pulsar_job.py +96 -97
- pulumi_ns1/pulumi-plugin.json +1 -1
- pulumi_ns1/record.py +194 -195
- pulumi_ns1/redirect.py +168 -169
- pulumi_ns1/redirect_certificate.py +49 -50
- pulumi_ns1/team.py +469 -470
- pulumi_ns1/tsigkey.py +52 -53
- pulumi_ns1/user.py +568 -569
- pulumi_ns1/zone.py +329 -330
- {pulumi_ns1-3.7.0a1753337859.dist-info → pulumi_ns1-3.7.0a1753397901.dist-info}/METADATA +1 -1
- pulumi_ns1-3.7.0a1753397901.dist-info/RECORD +38 -0
- pulumi_ns1-3.7.0a1753337859.dist-info/RECORD +0 -38
- {pulumi_ns1-3.7.0a1753337859.dist-info → pulumi_ns1-3.7.0a1753397901.dist-info}/WHEEL +0 -0
- {pulumi_ns1-3.7.0a1753337859.dist-info → pulumi_ns1-3.7.0a1753397901.dist-info}/top_level.txt +0 -0
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:
|
77
|
-
include_subdomains:
|
78
|
-
type:
|
79
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
127
|
-
include_subdomains:
|
128
|
-
type:
|
129
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
183
|
-
https: Optional[
|
184
|
-
job_timeout_millis: Optional[
|
185
|
-
request_timeout_millis: Optional[
|
186
|
-
static_values: Optional[
|
187
|
-
use_xhr: Optional[
|
188
|
-
"""
|
189
|
-
:param
|
190
|
-
:param
|
191
|
-
:param
|
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
|
194
|
-
:param
|
195
|
-
:param
|
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) ->
|
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[
|
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[
|
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[
|
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[
|
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[
|
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,
|
263
|
-
scope:
|
264
|
-
type:
|
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,
|
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) ->
|
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) ->
|
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:
|
308
|
-
repeats_every:
|
309
|
-
start:
|
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) ->
|
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) ->
|
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) ->
|
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[
|
351
|
-
end: Optional[
|
352
|
-
id: Optional[
|
353
|
-
start: Optional[
|
354
|
-
status: Optional[
|
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[
|
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[
|
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[
|
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[
|
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[
|
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:
|
413
|
-
cycles: Optional[
|
414
|
-
from_: Optional[
|
415
|
-
to: Optional[
|
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) ->
|
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[
|
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[
|
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[
|
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:
|
449
|
-
key:
|
450
|
-
value:
|
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) ->
|
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) ->
|
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) ->
|
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,
|
475
|
-
type:
|
473
|
+
config: Mapping[str, _builtins.str],
|
474
|
+
type: _builtins.str):
|
476
475
|
"""
|
477
|
-
:param Mapping[str,
|
478
|
-
:param
|
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,
|
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) ->
|
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:
|
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) ->
|
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[
|
541
|
-
http: Optional[
|
542
|
-
https: Optional[
|
543
|
-
job_timeout_millis: Optional[
|
544
|
-
request_timeout_millis: Optional[
|
545
|
-
static_values: Optional[
|
546
|
-
url_path: Optional[
|
547
|
-
use_xhr: Optional[
|
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[
|
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[
|
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[
|
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[
|
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[
|
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[
|
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[
|
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[
|
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:
|
627
|
-
name:
|
628
|
-
weight:
|
629
|
-
maximize: Optional[
|
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) ->
|
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) ->
|
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) ->
|
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[
|
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[
|
661
|
-
meta: Optional[Mapping[str,
|
662
|
-
region: Optional[
|
659
|
+
answer: Optional[_builtins.str] = None,
|
660
|
+
meta: Optional[Mapping[str, _builtins.str]] = None,
|
661
|
+
region: Optional[_builtins.str] = None):
|
663
662
|
"""
|
664
|
-
:param
|
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
|
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[
|
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,
|
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[
|
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:
|
752
|
-
config: Optional[Mapping[str,
|
753
|
-
disabled: Optional[
|
750
|
+
filter: _builtins.str,
|
751
|
+
config: Optional[Mapping[str, _builtins.str]] = None,
|
752
|
+
disabled: Optional[_builtins.bool] = None):
|
754
753
|
"""
|
755
|
-
:param
|
756
|
-
:param Mapping[str,
|
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
|
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) ->
|
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,
|
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[
|
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:
|
798
|
-
meta: Optional[Mapping[str,
|
796
|
+
name: _builtins.str,
|
797
|
+
meta: Optional[Mapping[str, _builtins.str]] = None):
|
799
798
|
"""
|
800
|
-
:param
|
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) ->
|
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,
|
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:
|
841
|
-
include_subdomains:
|
842
|
-
type:
|
843
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
891
|
-
include_subdomains:
|
892
|
-
type:
|
893
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
924
|
-
values: Sequence[
|
922
|
+
name: _builtins.str,
|
923
|
+
values: Sequence[_builtins.str]):
|
925
924
|
"""
|
926
|
-
:param
|
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) ->
|
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[
|
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:
|
966
|
-
include_subdomains:
|
967
|
-
type:
|
968
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1016
|
-
include_subdomains:
|
1017
|
-
type:
|
1018
|
-
zone:
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1049
|
-
networks: Optional[Sequence[
|
1050
|
-
notify: Optional[
|
1051
|
-
port: Optional[
|
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
|
1054
|
-
:param Sequence[
|
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
|
1056
|
+
:param _builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
|
1058
1057
|
when the zone changes. Default `false`.
|
1059
|
-
:param
|
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) ->
|
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[
|
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[
|
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[
|
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:
|
1109
|
-
clean_queries:
|
1107
|
+
billable_queries: _builtins.int,
|
1108
|
+
clean_queries: _builtins.int,
|
1110
1109
|
dailies: Sequence['outputs.GetBillingUsageByNetworkDailyResult'],
|
1111
|
-
ddos_queries:
|
1112
|
-
network:
|
1113
|
-
nxd_responses:
|
1110
|
+
ddos_queries: _builtins.int,
|
1111
|
+
network: _builtins.int,
|
1112
|
+
nxd_responses: _builtins.int):
|
1114
1113
|
"""
|
1115
|
-
:param
|
1116
|
-
:param
|
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
|
1119
|
-
:param
|
1120
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1182
|
-
ddos_queries:
|
1183
|
-
nxd_responses:
|
1184
|
-
timestamp:
|
1180
|
+
clean_queries: _builtins.int,
|
1181
|
+
ddos_queries: _builtins.int,
|
1182
|
+
nxd_responses: _builtins.int,
|
1183
|
+
timestamp: _builtins.int):
|
1185
1184
|
"""
|
1186
|
-
:param
|
1187
|
-
:param
|
1188
|
-
:param
|
1189
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
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
|
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) ->
|
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:
|
1273
|
-
flags:
|
1274
|
-
protocol:
|
1275
|
-
public_key:
|
1271
|
+
algorithm: _builtins.str,
|
1272
|
+
flags: _builtins.str,
|
1273
|
+
protocol: _builtins.str,
|
1274
|
+
public_key: _builtins.str):
|
1276
1275
|
"""
|
1277
|
-
:param
|
1278
|
-
:param
|
1279
|
-
:param
|
1280
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1324
|
-
flags:
|
1325
|
-
protocol:
|
1326
|
-
public_key:
|
1322
|
+
algorithm: _builtins.str,
|
1323
|
+
flags: _builtins.str,
|
1324
|
+
protocol: _builtins.str,
|
1325
|
+
public_key: _builtins.str):
|
1327
1326
|
"""
|
1328
|
-
:param
|
1329
|
-
:param
|
1330
|
-
:param
|
1331
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1374
|
+
ttl: _builtins.int):
|
1376
1375
|
"""
|
1377
1376
|
:param Sequence['GetDNSSecKeyDnskeyArgs'] dnskeys: (Computed) List of Keys. Key is documented below.
|
1378
|
-
:param
|
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) ->
|
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:
|
1404
|
-
flags:
|
1405
|
-
protocol:
|
1406
|
-
public_key:
|
1402
|
+
algorithm: _builtins.str,
|
1403
|
+
flags: _builtins.str,
|
1404
|
+
protocol: _builtins.str,
|
1405
|
+
public_key: _builtins.str):
|
1407
1406
|
"""
|
1408
|
-
:param
|
1409
|
-
:param
|
1410
|
-
:param
|
1411
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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) ->
|
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[
|
1455
|
-
name: Optional[
|
1456
|
-
subnets: Optional[Sequence[
|
1453
|
+
code: Optional[_builtins.str] = None,
|
1454
|
+
name: Optional[_builtins.str] = None,
|
1455
|
+
subnets: Optional[Sequence[_builtins.str]] = None):
|
1457
1456
|
"""
|
1458
|
-
:param
|
1459
|
-
:param
|
1460
|
-
:param Sequence[
|
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[
|
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[
|
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[
|
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:
|
1498
|
-
name:
|
1499
|
-
network_id:
|
1496
|
+
label: _builtins.str,
|
1497
|
+
name: _builtins.str,
|
1498
|
+
network_id: _builtins.int):
|
1500
1499
|
"""
|
1501
|
-
:param
|
1502
|
-
:param
|
1503
|
-
:param
|
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) ->
|
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) ->
|
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) ->
|
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:
|
1538
|
-
meta: Mapping[str,
|
1539
|
-
region:
|
1536
|
+
answer: _builtins.str,
|
1537
|
+
meta: Mapping[str, _builtins.str],
|
1538
|
+
region: _builtins.str):
|
1540
1539
|
"""
|
1541
|
-
:param Mapping[str,
|
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) ->
|
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,
|
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) ->
|
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,
|
1570
|
-
disabled:
|
1571
|
-
filter:
|
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,
|
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) ->
|
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) ->
|
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,
|
1596
|
-
name:
|
1594
|
+
meta: Mapping[str, _builtins.str],
|
1595
|
+
name: _builtins.str):
|
1597
1596
|
"""
|
1598
|
-
:param Mapping[str,
|
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,
|
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) ->
|
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:
|
1621
|
-
networks: Sequence[
|
1622
|
-
notify:
|
1623
|
-
port:
|
1619
|
+
ip: _builtins.str,
|
1620
|
+
networks: Sequence[_builtins.int],
|
1621
|
+
notify: _builtins.bool,
|
1622
|
+
port: _builtins.int):
|
1624
1623
|
"""
|
1625
|
-
:param
|
1626
|
-
:param Sequence[
|
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
|
1627
|
+
:param _builtins.bool notify: Whether we send `NOTIFY` messages to the secondary host
|
1629
1628
|
when the zone changes. Default `false`.
|
1630
|
-
:param
|
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) ->
|
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[
|
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) ->
|
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) ->
|
1664
|
+
def port(self) -> _builtins.int:
|
1666
1665
|
"""
|
1667
1666
|
Port of the the secondary server. Default `53`.
|
1668
1667
|
"""
|