pulumi-ns1 3.2.0a1710157241__py3-none-any.whl → 3.2.1__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 +10 -0
- pulumi_ns1/_inputs.py +253 -0
- pulumi_ns1/dataset.py +325 -0
- pulumi_ns1/get_monitoring_regions.py +113 -0
- pulumi_ns1/outputs.py +234 -0
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.2.1.dist-info}/METADATA +1 -1
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.2.1.dist-info}/RECORD +9 -7
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.2.1.dist-info}/WHEEL +1 -1
- {pulumi_ns1-3.2.0a1710157241.dist-info → pulumi_ns1-3.2.1.dist-info}/top_level.txt +0 -0
pulumi_ns1/__init__.py
CHANGED
@@ -10,8 +10,10 @@ from .api_key import *
|
|
10
10
|
from .application import *
|
11
11
|
from .data_feed import *
|
12
12
|
from .data_source import *
|
13
|
+
from .dataset import *
|
13
14
|
from .dnsview import *
|
14
15
|
from .get_dns_sec import *
|
16
|
+
from .get_monitoring_regions import *
|
15
17
|
from .get_networks import *
|
16
18
|
from .get_record import *
|
17
19
|
from .get_zone import *
|
@@ -78,6 +80,14 @@ _utilities.register(
|
|
78
80
|
"ns1:index/dataSource:DataSource": "DataSource"
|
79
81
|
}
|
80
82
|
},
|
83
|
+
{
|
84
|
+
"pkg": "ns1",
|
85
|
+
"mod": "index/dataset",
|
86
|
+
"fqn": "pulumi_ns1",
|
87
|
+
"classes": {
|
88
|
+
"ns1:index/dataset:Dataset": "Dataset"
|
89
|
+
}
|
90
|
+
},
|
81
91
|
{
|
82
92
|
"pkg": "ns1",
|
83
93
|
"mod": "index/dnsview",
|
pulumi_ns1/_inputs.py
CHANGED
@@ -13,6 +13,10 @@ __all__ = [
|
|
13
13
|
'APIKeyDnsRecordsAllowArgs',
|
14
14
|
'APIKeyDnsRecordsDenyArgs',
|
15
15
|
'ApplicationDefaultConfigArgs',
|
16
|
+
'DatasetDatatypeArgs',
|
17
|
+
'DatasetRepeatArgs',
|
18
|
+
'DatasetReportArgs',
|
19
|
+
'DatasetTimeframeArgs',
|
16
20
|
'MonitoringJobRuleArgs',
|
17
21
|
'NotifyListNotificationArgs',
|
18
22
|
'PulsarJobBlendMetricWeightsArgs',
|
@@ -27,6 +31,7 @@ __all__ = [
|
|
27
31
|
'UserDnsRecordsAllowArgs',
|
28
32
|
'UserDnsRecordsDenyArgs',
|
29
33
|
'ZoneSecondaryArgs',
|
34
|
+
'GetMonitoringRegionsRegionArgs',
|
30
35
|
]
|
31
36
|
|
32
37
|
@pulumi.input_type
|
@@ -231,6 +236,199 @@ class ApplicationDefaultConfigArgs:
|
|
231
236
|
pulumi.set(self, "use_xhr", value)
|
232
237
|
|
233
238
|
|
239
|
+
@pulumi.input_type
|
240
|
+
class DatasetDatatypeArgs:
|
241
|
+
def __init__(__self__, *,
|
242
|
+
data: pulumi.Input[Mapping[str, Any]],
|
243
|
+
scope: pulumi.Input[str],
|
244
|
+
type: pulumi.Input[str]):
|
245
|
+
pulumi.set(__self__, "data", data)
|
246
|
+
pulumi.set(__self__, "scope", scope)
|
247
|
+
pulumi.set(__self__, "type", type)
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter
|
251
|
+
def data(self) -> pulumi.Input[Mapping[str, Any]]:
|
252
|
+
return pulumi.get(self, "data")
|
253
|
+
|
254
|
+
@data.setter
|
255
|
+
def data(self, value: pulumi.Input[Mapping[str, Any]]):
|
256
|
+
pulumi.set(self, "data", value)
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter
|
260
|
+
def scope(self) -> pulumi.Input[str]:
|
261
|
+
return pulumi.get(self, "scope")
|
262
|
+
|
263
|
+
@scope.setter
|
264
|
+
def scope(self, value: pulumi.Input[str]):
|
265
|
+
pulumi.set(self, "scope", value)
|
266
|
+
|
267
|
+
@property
|
268
|
+
@pulumi.getter
|
269
|
+
def type(self) -> pulumi.Input[str]:
|
270
|
+
return pulumi.get(self, "type")
|
271
|
+
|
272
|
+
@type.setter
|
273
|
+
def type(self, value: pulumi.Input[str]):
|
274
|
+
pulumi.set(self, "type", value)
|
275
|
+
|
276
|
+
|
277
|
+
@pulumi.input_type
|
278
|
+
class DatasetRepeatArgs:
|
279
|
+
def __init__(__self__, *,
|
280
|
+
end_after_n: pulumi.Input[int],
|
281
|
+
repeats_every: pulumi.Input[str],
|
282
|
+
start: pulumi.Input[int]):
|
283
|
+
pulumi.set(__self__, "end_after_n", end_after_n)
|
284
|
+
pulumi.set(__self__, "repeats_every", repeats_every)
|
285
|
+
pulumi.set(__self__, "start", start)
|
286
|
+
|
287
|
+
@property
|
288
|
+
@pulumi.getter(name="endAfterN")
|
289
|
+
def end_after_n(self) -> pulumi.Input[int]:
|
290
|
+
return pulumi.get(self, "end_after_n")
|
291
|
+
|
292
|
+
@end_after_n.setter
|
293
|
+
def end_after_n(self, value: pulumi.Input[int]):
|
294
|
+
pulumi.set(self, "end_after_n", value)
|
295
|
+
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="repeatsEvery")
|
298
|
+
def repeats_every(self) -> pulumi.Input[str]:
|
299
|
+
return pulumi.get(self, "repeats_every")
|
300
|
+
|
301
|
+
@repeats_every.setter
|
302
|
+
def repeats_every(self, value: pulumi.Input[str]):
|
303
|
+
pulumi.set(self, "repeats_every", value)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter
|
307
|
+
def start(self) -> pulumi.Input[int]:
|
308
|
+
return pulumi.get(self, "start")
|
309
|
+
|
310
|
+
@start.setter
|
311
|
+
def start(self, value: pulumi.Input[int]):
|
312
|
+
pulumi.set(self, "start", value)
|
313
|
+
|
314
|
+
|
315
|
+
@pulumi.input_type
|
316
|
+
class DatasetReportArgs:
|
317
|
+
def __init__(__self__, *,
|
318
|
+
created_at: Optional[pulumi.Input[int]] = None,
|
319
|
+
end: Optional[pulumi.Input[int]] = None,
|
320
|
+
id: Optional[pulumi.Input[str]] = None,
|
321
|
+
start: Optional[pulumi.Input[int]] = None,
|
322
|
+
status: Optional[pulumi.Input[str]] = None):
|
323
|
+
if created_at is not None:
|
324
|
+
pulumi.set(__self__, "created_at", created_at)
|
325
|
+
if end is not None:
|
326
|
+
pulumi.set(__self__, "end", end)
|
327
|
+
if id is not None:
|
328
|
+
pulumi.set(__self__, "id", id)
|
329
|
+
if start is not None:
|
330
|
+
pulumi.set(__self__, "start", start)
|
331
|
+
if status is not None:
|
332
|
+
pulumi.set(__self__, "status", status)
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="createdAt")
|
336
|
+
def created_at(self) -> Optional[pulumi.Input[int]]:
|
337
|
+
return pulumi.get(self, "created_at")
|
338
|
+
|
339
|
+
@created_at.setter
|
340
|
+
def created_at(self, value: Optional[pulumi.Input[int]]):
|
341
|
+
pulumi.set(self, "created_at", value)
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter
|
345
|
+
def end(self) -> Optional[pulumi.Input[int]]:
|
346
|
+
return pulumi.get(self, "end")
|
347
|
+
|
348
|
+
@end.setter
|
349
|
+
def end(self, value: Optional[pulumi.Input[int]]):
|
350
|
+
pulumi.set(self, "end", value)
|
351
|
+
|
352
|
+
@property
|
353
|
+
@pulumi.getter
|
354
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
355
|
+
return pulumi.get(self, "id")
|
356
|
+
|
357
|
+
@id.setter
|
358
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
359
|
+
pulumi.set(self, "id", value)
|
360
|
+
|
361
|
+
@property
|
362
|
+
@pulumi.getter
|
363
|
+
def start(self) -> Optional[pulumi.Input[int]]:
|
364
|
+
return pulumi.get(self, "start")
|
365
|
+
|
366
|
+
@start.setter
|
367
|
+
def start(self, value: Optional[pulumi.Input[int]]):
|
368
|
+
pulumi.set(self, "start", value)
|
369
|
+
|
370
|
+
@property
|
371
|
+
@pulumi.getter
|
372
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
373
|
+
return pulumi.get(self, "status")
|
374
|
+
|
375
|
+
@status.setter
|
376
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
377
|
+
pulumi.set(self, "status", value)
|
378
|
+
|
379
|
+
|
380
|
+
@pulumi.input_type
|
381
|
+
class DatasetTimeframeArgs:
|
382
|
+
def __init__(__self__, *,
|
383
|
+
aggregation: pulumi.Input[str],
|
384
|
+
cycles: Optional[pulumi.Input[int]] = None,
|
385
|
+
from_: Optional[pulumi.Input[int]] = None,
|
386
|
+
to: Optional[pulumi.Input[int]] = None):
|
387
|
+
pulumi.set(__self__, "aggregation", aggregation)
|
388
|
+
if cycles is not None:
|
389
|
+
pulumi.set(__self__, "cycles", cycles)
|
390
|
+
if from_ is not None:
|
391
|
+
pulumi.set(__self__, "from_", from_)
|
392
|
+
if to is not None:
|
393
|
+
pulumi.set(__self__, "to", to)
|
394
|
+
|
395
|
+
@property
|
396
|
+
@pulumi.getter
|
397
|
+
def aggregation(self) -> pulumi.Input[str]:
|
398
|
+
return pulumi.get(self, "aggregation")
|
399
|
+
|
400
|
+
@aggregation.setter
|
401
|
+
def aggregation(self, value: pulumi.Input[str]):
|
402
|
+
pulumi.set(self, "aggregation", value)
|
403
|
+
|
404
|
+
@property
|
405
|
+
@pulumi.getter
|
406
|
+
def cycles(self) -> Optional[pulumi.Input[int]]:
|
407
|
+
return pulumi.get(self, "cycles")
|
408
|
+
|
409
|
+
@cycles.setter
|
410
|
+
def cycles(self, value: Optional[pulumi.Input[int]]):
|
411
|
+
pulumi.set(self, "cycles", value)
|
412
|
+
|
413
|
+
@property
|
414
|
+
@pulumi.getter(name="from")
|
415
|
+
def from_(self) -> Optional[pulumi.Input[int]]:
|
416
|
+
return pulumi.get(self, "from_")
|
417
|
+
|
418
|
+
@from_.setter
|
419
|
+
def from_(self, value: Optional[pulumi.Input[int]]):
|
420
|
+
pulumi.set(self, "from_", value)
|
421
|
+
|
422
|
+
@property
|
423
|
+
@pulumi.getter
|
424
|
+
def to(self) -> Optional[pulumi.Input[int]]:
|
425
|
+
return pulumi.get(self, "to")
|
426
|
+
|
427
|
+
@to.setter
|
428
|
+
def to(self, value: Optional[pulumi.Input[int]]):
|
429
|
+
pulumi.set(self, "to", value)
|
430
|
+
|
431
|
+
|
234
432
|
@pulumi.input_type
|
235
433
|
class MonitoringJobRuleArgs:
|
236
434
|
def __init__(__self__, *,
|
@@ -973,3 +1171,58 @@ class ZoneSecondaryArgs:
|
|
973
1171
|
pulumi.set(self, "port", value)
|
974
1172
|
|
975
1173
|
|
1174
|
+
@pulumi.input_type
|
1175
|
+
class GetMonitoringRegionsRegionArgs:
|
1176
|
+
def __init__(__self__, *,
|
1177
|
+
code: Optional[str] = None,
|
1178
|
+
name: Optional[str] = None,
|
1179
|
+
subnets: Optional[Sequence[str]] = None):
|
1180
|
+
"""
|
1181
|
+
:param str code: 3-letter city code identifying the location of the monitor.
|
1182
|
+
:param str name: City name identifying the location of the monitor.
|
1183
|
+
:param Sequence[str] subnets: A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1184
|
+
"""
|
1185
|
+
if code is not None:
|
1186
|
+
pulumi.set(__self__, "code", code)
|
1187
|
+
if name is not None:
|
1188
|
+
pulumi.set(__self__, "name", name)
|
1189
|
+
if subnets is not None:
|
1190
|
+
pulumi.set(__self__, "subnets", subnets)
|
1191
|
+
|
1192
|
+
@property
|
1193
|
+
@pulumi.getter
|
1194
|
+
def code(self) -> Optional[str]:
|
1195
|
+
"""
|
1196
|
+
3-letter city code identifying the location of the monitor.
|
1197
|
+
"""
|
1198
|
+
return pulumi.get(self, "code")
|
1199
|
+
|
1200
|
+
@code.setter
|
1201
|
+
def code(self, value: Optional[str]):
|
1202
|
+
pulumi.set(self, "code", value)
|
1203
|
+
|
1204
|
+
@property
|
1205
|
+
@pulumi.getter
|
1206
|
+
def name(self) -> Optional[str]:
|
1207
|
+
"""
|
1208
|
+
City name identifying the location of the monitor.
|
1209
|
+
"""
|
1210
|
+
return pulumi.get(self, "name")
|
1211
|
+
|
1212
|
+
@name.setter
|
1213
|
+
def name(self, value: Optional[str]):
|
1214
|
+
pulumi.set(self, "name", value)
|
1215
|
+
|
1216
|
+
@property
|
1217
|
+
@pulumi.getter
|
1218
|
+
def subnets(self) -> Optional[Sequence[str]]:
|
1219
|
+
"""
|
1220
|
+
A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1221
|
+
"""
|
1222
|
+
return pulumi.get(self, "subnets")
|
1223
|
+
|
1224
|
+
@subnets.setter
|
1225
|
+
def subnets(self, value: Optional[Sequence[str]]):
|
1226
|
+
pulumi.set(self, "subnets", value)
|
1227
|
+
|
1228
|
+
|
pulumi_ns1/dataset.py
ADDED
@@ -0,0 +1,325 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from . import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['DatasetArgs', 'Dataset']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class DatasetArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
datatype: pulumi.Input['DatasetDatatypeArgs'],
|
20
|
+
export_type: pulumi.Input[str],
|
21
|
+
timeframe: pulumi.Input['DatasetTimeframeArgs'],
|
22
|
+
name: Optional[pulumi.Input[str]] = None,
|
23
|
+
recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
24
|
+
repeat: Optional[pulumi.Input['DatasetRepeatArgs']] = None):
|
25
|
+
"""
|
26
|
+
The set of arguments for constructing a Dataset resource.
|
27
|
+
"""
|
28
|
+
pulumi.set(__self__, "datatype", datatype)
|
29
|
+
pulumi.set(__self__, "export_type", export_type)
|
30
|
+
pulumi.set(__self__, "timeframe", timeframe)
|
31
|
+
if name is not None:
|
32
|
+
pulumi.set(__self__, "name", name)
|
33
|
+
if recipient_emails is not None:
|
34
|
+
pulumi.set(__self__, "recipient_emails", recipient_emails)
|
35
|
+
if repeat is not None:
|
36
|
+
pulumi.set(__self__, "repeat", repeat)
|
37
|
+
|
38
|
+
@property
|
39
|
+
@pulumi.getter
|
40
|
+
def datatype(self) -> pulumi.Input['DatasetDatatypeArgs']:
|
41
|
+
return pulumi.get(self, "datatype")
|
42
|
+
|
43
|
+
@datatype.setter
|
44
|
+
def datatype(self, value: pulumi.Input['DatasetDatatypeArgs']):
|
45
|
+
pulumi.set(self, "datatype", value)
|
46
|
+
|
47
|
+
@property
|
48
|
+
@pulumi.getter(name="exportType")
|
49
|
+
def export_type(self) -> pulumi.Input[str]:
|
50
|
+
return pulumi.get(self, "export_type")
|
51
|
+
|
52
|
+
@export_type.setter
|
53
|
+
def export_type(self, value: pulumi.Input[str]):
|
54
|
+
pulumi.set(self, "export_type", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter
|
58
|
+
def timeframe(self) -> pulumi.Input['DatasetTimeframeArgs']:
|
59
|
+
return pulumi.get(self, "timeframe")
|
60
|
+
|
61
|
+
@timeframe.setter
|
62
|
+
def timeframe(self, value: pulumi.Input['DatasetTimeframeArgs']):
|
63
|
+
pulumi.set(self, "timeframe", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter
|
67
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
68
|
+
return pulumi.get(self, "name")
|
69
|
+
|
70
|
+
@name.setter
|
71
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
72
|
+
pulumi.set(self, "name", value)
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="recipientEmails")
|
76
|
+
def recipient_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
77
|
+
return pulumi.get(self, "recipient_emails")
|
78
|
+
|
79
|
+
@recipient_emails.setter
|
80
|
+
def recipient_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
81
|
+
pulumi.set(self, "recipient_emails", value)
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter
|
85
|
+
def repeat(self) -> Optional[pulumi.Input['DatasetRepeatArgs']]:
|
86
|
+
return pulumi.get(self, "repeat")
|
87
|
+
|
88
|
+
@repeat.setter
|
89
|
+
def repeat(self, value: Optional[pulumi.Input['DatasetRepeatArgs']]):
|
90
|
+
pulumi.set(self, "repeat", value)
|
91
|
+
|
92
|
+
|
93
|
+
@pulumi.input_type
|
94
|
+
class _DatasetState:
|
95
|
+
def __init__(__self__, *,
|
96
|
+
datatype: Optional[pulumi.Input['DatasetDatatypeArgs']] = None,
|
97
|
+
export_type: Optional[pulumi.Input[str]] = None,
|
98
|
+
name: Optional[pulumi.Input[str]] = None,
|
99
|
+
recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
100
|
+
repeat: Optional[pulumi.Input['DatasetRepeatArgs']] = None,
|
101
|
+
reports: Optional[pulumi.Input[Sequence[pulumi.Input['DatasetReportArgs']]]] = None,
|
102
|
+
timeframe: Optional[pulumi.Input['DatasetTimeframeArgs']] = None):
|
103
|
+
"""
|
104
|
+
Input properties used for looking up and filtering Dataset resources.
|
105
|
+
"""
|
106
|
+
if datatype is not None:
|
107
|
+
pulumi.set(__self__, "datatype", datatype)
|
108
|
+
if export_type is not None:
|
109
|
+
pulumi.set(__self__, "export_type", export_type)
|
110
|
+
if name is not None:
|
111
|
+
pulumi.set(__self__, "name", name)
|
112
|
+
if recipient_emails is not None:
|
113
|
+
pulumi.set(__self__, "recipient_emails", recipient_emails)
|
114
|
+
if repeat is not None:
|
115
|
+
pulumi.set(__self__, "repeat", repeat)
|
116
|
+
if reports is not None:
|
117
|
+
pulumi.set(__self__, "reports", reports)
|
118
|
+
if timeframe is not None:
|
119
|
+
pulumi.set(__self__, "timeframe", timeframe)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def datatype(self) -> Optional[pulumi.Input['DatasetDatatypeArgs']]:
|
124
|
+
return pulumi.get(self, "datatype")
|
125
|
+
|
126
|
+
@datatype.setter
|
127
|
+
def datatype(self, value: Optional[pulumi.Input['DatasetDatatypeArgs']]):
|
128
|
+
pulumi.set(self, "datatype", value)
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="exportType")
|
132
|
+
def export_type(self) -> Optional[pulumi.Input[str]]:
|
133
|
+
return pulumi.get(self, "export_type")
|
134
|
+
|
135
|
+
@export_type.setter
|
136
|
+
def export_type(self, value: Optional[pulumi.Input[str]]):
|
137
|
+
pulumi.set(self, "export_type", value)
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter
|
141
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
142
|
+
return pulumi.get(self, "name")
|
143
|
+
|
144
|
+
@name.setter
|
145
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
146
|
+
pulumi.set(self, "name", value)
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="recipientEmails")
|
150
|
+
def recipient_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
151
|
+
return pulumi.get(self, "recipient_emails")
|
152
|
+
|
153
|
+
@recipient_emails.setter
|
154
|
+
def recipient_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
155
|
+
pulumi.set(self, "recipient_emails", value)
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter
|
159
|
+
def repeat(self) -> Optional[pulumi.Input['DatasetRepeatArgs']]:
|
160
|
+
return pulumi.get(self, "repeat")
|
161
|
+
|
162
|
+
@repeat.setter
|
163
|
+
def repeat(self, value: Optional[pulumi.Input['DatasetRepeatArgs']]):
|
164
|
+
pulumi.set(self, "repeat", value)
|
165
|
+
|
166
|
+
@property
|
167
|
+
@pulumi.getter
|
168
|
+
def reports(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatasetReportArgs']]]]:
|
169
|
+
return pulumi.get(self, "reports")
|
170
|
+
|
171
|
+
@reports.setter
|
172
|
+
def reports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatasetReportArgs']]]]):
|
173
|
+
pulumi.set(self, "reports", value)
|
174
|
+
|
175
|
+
@property
|
176
|
+
@pulumi.getter
|
177
|
+
def timeframe(self) -> Optional[pulumi.Input['DatasetTimeframeArgs']]:
|
178
|
+
return pulumi.get(self, "timeframe")
|
179
|
+
|
180
|
+
@timeframe.setter
|
181
|
+
def timeframe(self, value: Optional[pulumi.Input['DatasetTimeframeArgs']]):
|
182
|
+
pulumi.set(self, "timeframe", value)
|
183
|
+
|
184
|
+
|
185
|
+
class Dataset(pulumi.CustomResource):
|
186
|
+
@overload
|
187
|
+
def __init__(__self__,
|
188
|
+
resource_name: str,
|
189
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
190
|
+
datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
|
191
|
+
export_type: Optional[pulumi.Input[str]] = None,
|
192
|
+
name: Optional[pulumi.Input[str]] = None,
|
193
|
+
recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
194
|
+
repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
|
195
|
+
timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None,
|
196
|
+
__props__=None):
|
197
|
+
"""
|
198
|
+
Create a Dataset resource with the given unique name, props, and options.
|
199
|
+
:param str resource_name: The name of the resource.
|
200
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
201
|
+
"""
|
202
|
+
...
|
203
|
+
@overload
|
204
|
+
def __init__(__self__,
|
205
|
+
resource_name: str,
|
206
|
+
args: DatasetArgs,
|
207
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
208
|
+
"""
|
209
|
+
Create a Dataset resource with the given unique name, props, and options.
|
210
|
+
:param str resource_name: The name of the resource.
|
211
|
+
:param DatasetArgs args: The arguments to use to populate this resource's properties.
|
212
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
213
|
+
"""
|
214
|
+
...
|
215
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
216
|
+
resource_args, opts = _utilities.get_resource_args_opts(DatasetArgs, pulumi.ResourceOptions, *args, **kwargs)
|
217
|
+
if resource_args is not None:
|
218
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
219
|
+
else:
|
220
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
221
|
+
|
222
|
+
def _internal_init(__self__,
|
223
|
+
resource_name: str,
|
224
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
225
|
+
datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
|
226
|
+
export_type: Optional[pulumi.Input[str]] = None,
|
227
|
+
name: Optional[pulumi.Input[str]] = None,
|
228
|
+
recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
229
|
+
repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
|
230
|
+
timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None,
|
231
|
+
__props__=None):
|
232
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
233
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
234
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
235
|
+
if opts.id is None:
|
236
|
+
if __props__ is not None:
|
237
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
238
|
+
__props__ = DatasetArgs.__new__(DatasetArgs)
|
239
|
+
|
240
|
+
if datatype is None and not opts.urn:
|
241
|
+
raise TypeError("Missing required property 'datatype'")
|
242
|
+
__props__.__dict__["datatype"] = datatype
|
243
|
+
if export_type is None and not opts.urn:
|
244
|
+
raise TypeError("Missing required property 'export_type'")
|
245
|
+
__props__.__dict__["export_type"] = export_type
|
246
|
+
__props__.__dict__["name"] = name
|
247
|
+
__props__.__dict__["recipient_emails"] = recipient_emails
|
248
|
+
__props__.__dict__["repeat"] = repeat
|
249
|
+
if timeframe is None and not opts.urn:
|
250
|
+
raise TypeError("Missing required property 'timeframe'")
|
251
|
+
__props__.__dict__["timeframe"] = timeframe
|
252
|
+
__props__.__dict__["reports"] = None
|
253
|
+
super(Dataset, __self__).__init__(
|
254
|
+
'ns1:index/dataset:Dataset',
|
255
|
+
resource_name,
|
256
|
+
__props__,
|
257
|
+
opts)
|
258
|
+
|
259
|
+
@staticmethod
|
260
|
+
def get(resource_name: str,
|
261
|
+
id: pulumi.Input[str],
|
262
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
263
|
+
datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
|
264
|
+
export_type: Optional[pulumi.Input[str]] = None,
|
265
|
+
name: Optional[pulumi.Input[str]] = None,
|
266
|
+
recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
267
|
+
repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
|
268
|
+
reports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DatasetReportArgs']]]]] = None,
|
269
|
+
timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None) -> 'Dataset':
|
270
|
+
"""
|
271
|
+
Get an existing Dataset resource's state with the given name, id, and optional extra
|
272
|
+
properties used to qualify the lookup.
|
273
|
+
|
274
|
+
:param str resource_name: The unique name of the resulting resource.
|
275
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
276
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
277
|
+
"""
|
278
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
279
|
+
|
280
|
+
__props__ = _DatasetState.__new__(_DatasetState)
|
281
|
+
|
282
|
+
__props__.__dict__["datatype"] = datatype
|
283
|
+
__props__.__dict__["export_type"] = export_type
|
284
|
+
__props__.__dict__["name"] = name
|
285
|
+
__props__.__dict__["recipient_emails"] = recipient_emails
|
286
|
+
__props__.__dict__["repeat"] = repeat
|
287
|
+
__props__.__dict__["reports"] = reports
|
288
|
+
__props__.__dict__["timeframe"] = timeframe
|
289
|
+
return Dataset(resource_name, opts=opts, __props__=__props__)
|
290
|
+
|
291
|
+
@property
|
292
|
+
@pulumi.getter
|
293
|
+
def datatype(self) -> pulumi.Output['outputs.DatasetDatatype']:
|
294
|
+
return pulumi.get(self, "datatype")
|
295
|
+
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="exportType")
|
298
|
+
def export_type(self) -> pulumi.Output[str]:
|
299
|
+
return pulumi.get(self, "export_type")
|
300
|
+
|
301
|
+
@property
|
302
|
+
@pulumi.getter
|
303
|
+
def name(self) -> pulumi.Output[str]:
|
304
|
+
return pulumi.get(self, "name")
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter(name="recipientEmails")
|
308
|
+
def recipient_emails(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
309
|
+
return pulumi.get(self, "recipient_emails")
|
310
|
+
|
311
|
+
@property
|
312
|
+
@pulumi.getter
|
313
|
+
def repeat(self) -> pulumi.Output[Optional['outputs.DatasetRepeat']]:
|
314
|
+
return pulumi.get(self, "repeat")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter
|
318
|
+
def reports(self) -> pulumi.Output[Sequence['outputs.DatasetReport']]:
|
319
|
+
return pulumi.get(self, "reports")
|
320
|
+
|
321
|
+
@property
|
322
|
+
@pulumi.getter
|
323
|
+
def timeframe(self) -> pulumi.Output['outputs.DatasetTimeframe']:
|
324
|
+
return pulumi.get(self, "timeframe")
|
325
|
+
|
@@ -0,0 +1,113 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from . import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
'GetMonitoringRegionsResult',
|
16
|
+
'AwaitableGetMonitoringRegionsResult',
|
17
|
+
'get_monitoring_regions',
|
18
|
+
'get_monitoring_regions_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetMonitoringRegionsResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getMonitoringRegions.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, id=None, regions=None):
|
27
|
+
if id and not isinstance(id, str):
|
28
|
+
raise TypeError("Expected argument 'id' to be a str")
|
29
|
+
pulumi.set(__self__, "id", id)
|
30
|
+
if regions and not isinstance(regions, list):
|
31
|
+
raise TypeError("Expected argument 'regions' to be a list")
|
32
|
+
pulumi.set(__self__, "regions", regions)
|
33
|
+
|
34
|
+
@property
|
35
|
+
@pulumi.getter
|
36
|
+
def id(self) -> str:
|
37
|
+
"""
|
38
|
+
The provider-assigned unique ID for this managed resource.
|
39
|
+
"""
|
40
|
+
return pulumi.get(self, "id")
|
41
|
+
|
42
|
+
@property
|
43
|
+
@pulumi.getter
|
44
|
+
def regions(self) -> Optional[Sequence['outputs.GetMonitoringRegionsRegionResult']]:
|
45
|
+
"""
|
46
|
+
A set of the available monitoring regions. Regions is
|
47
|
+
documented below.
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "regions")
|
50
|
+
|
51
|
+
|
52
|
+
class AwaitableGetMonitoringRegionsResult(GetMonitoringRegionsResult):
|
53
|
+
# pylint: disable=using-constant-test
|
54
|
+
def __await__(self):
|
55
|
+
if False:
|
56
|
+
yield self
|
57
|
+
return GetMonitoringRegionsResult(
|
58
|
+
id=self.id,
|
59
|
+
regions=self.regions)
|
60
|
+
|
61
|
+
|
62
|
+
def get_monitoring_regions(regions: Optional[Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']]] = None,
|
63
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMonitoringRegionsResult:
|
64
|
+
"""
|
65
|
+
Provides details of all available monitoring regions.
|
66
|
+
|
67
|
+
## Example Usage
|
68
|
+
|
69
|
+
<!--Start PulumiCodeChooser -->
|
70
|
+
```python
|
71
|
+
import pulumi
|
72
|
+
import pulumi_ns1 as ns1
|
73
|
+
|
74
|
+
example = ns1.get_monitoring_regions()
|
75
|
+
```
|
76
|
+
<!--End PulumiCodeChooser -->
|
77
|
+
|
78
|
+
|
79
|
+
:param Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']] regions: A set of the available monitoring regions. Regions is
|
80
|
+
documented below.
|
81
|
+
"""
|
82
|
+
__args__ = dict()
|
83
|
+
__args__['regions'] = regions
|
84
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
85
|
+
__ret__ = pulumi.runtime.invoke('ns1:index/getMonitoringRegions:getMonitoringRegions', __args__, opts=opts, typ=GetMonitoringRegionsResult).value
|
86
|
+
|
87
|
+
return AwaitableGetMonitoringRegionsResult(
|
88
|
+
id=pulumi.get(__ret__, 'id'),
|
89
|
+
regions=pulumi.get(__ret__, 'regions'))
|
90
|
+
|
91
|
+
|
92
|
+
@_utilities.lift_output_func(get_monitoring_regions)
|
93
|
+
def get_monitoring_regions_output(regions: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']]]]] = None,
|
94
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMonitoringRegionsResult]:
|
95
|
+
"""
|
96
|
+
Provides details of all available monitoring regions.
|
97
|
+
|
98
|
+
## Example Usage
|
99
|
+
|
100
|
+
<!--Start PulumiCodeChooser -->
|
101
|
+
```python
|
102
|
+
import pulumi
|
103
|
+
import pulumi_ns1 as ns1
|
104
|
+
|
105
|
+
example = ns1.get_monitoring_regions()
|
106
|
+
```
|
107
|
+
<!--End PulumiCodeChooser -->
|
108
|
+
|
109
|
+
|
110
|
+
:param Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']] regions: A set of the available monitoring regions. Regions is
|
111
|
+
documented below.
|
112
|
+
"""
|
113
|
+
...
|
pulumi_ns1/outputs.py
CHANGED
@@ -14,6 +14,10 @@ __all__ = [
|
|
14
14
|
'APIKeyDnsRecordsAllow',
|
15
15
|
'APIKeyDnsRecordsDeny',
|
16
16
|
'ApplicationDefaultConfig',
|
17
|
+
'DatasetDatatype',
|
18
|
+
'DatasetRepeat',
|
19
|
+
'DatasetReport',
|
20
|
+
'DatasetTimeframe',
|
17
21
|
'MonitoringJobRule',
|
18
22
|
'NotifyListNotification',
|
19
23
|
'PulsarJobBlendMetricWeights',
|
@@ -33,6 +37,7 @@ __all__ = [
|
|
33
37
|
'GetDNSSecDelegationDnskeyResult',
|
34
38
|
'GetDNSSecKeyResult',
|
35
39
|
'GetDNSSecKeyDnskeyResult',
|
40
|
+
'GetMonitoringRegionsRegionResult',
|
36
41
|
'GetNetworksNetworkResult',
|
37
42
|
'GetRecordAnswerResult',
|
38
43
|
'GetRecordFilterResult',
|
@@ -243,6 +248,192 @@ class ApplicationDefaultConfig(dict):
|
|
243
248
|
return pulumi.get(self, "use_xhr")
|
244
249
|
|
245
250
|
|
251
|
+
@pulumi.output_type
|
252
|
+
class DatasetDatatype(dict):
|
253
|
+
def __init__(__self__, *,
|
254
|
+
data: Mapping[str, Any],
|
255
|
+
scope: str,
|
256
|
+
type: str):
|
257
|
+
pulumi.set(__self__, "data", data)
|
258
|
+
pulumi.set(__self__, "scope", scope)
|
259
|
+
pulumi.set(__self__, "type", type)
|
260
|
+
|
261
|
+
@property
|
262
|
+
@pulumi.getter
|
263
|
+
def data(self) -> Mapping[str, Any]:
|
264
|
+
return pulumi.get(self, "data")
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter
|
268
|
+
def scope(self) -> str:
|
269
|
+
return pulumi.get(self, "scope")
|
270
|
+
|
271
|
+
@property
|
272
|
+
@pulumi.getter
|
273
|
+
def type(self) -> str:
|
274
|
+
return pulumi.get(self, "type")
|
275
|
+
|
276
|
+
|
277
|
+
@pulumi.output_type
|
278
|
+
class DatasetRepeat(dict):
|
279
|
+
@staticmethod
|
280
|
+
def __key_warning(key: str):
|
281
|
+
suggest = None
|
282
|
+
if key == "endAfterN":
|
283
|
+
suggest = "end_after_n"
|
284
|
+
elif key == "repeatsEvery":
|
285
|
+
suggest = "repeats_every"
|
286
|
+
|
287
|
+
if suggest:
|
288
|
+
pulumi.log.warn(f"Key '{key}' not found in DatasetRepeat. Access the value via the '{suggest}' property getter instead.")
|
289
|
+
|
290
|
+
def __getitem__(self, key: str) -> Any:
|
291
|
+
DatasetRepeat.__key_warning(key)
|
292
|
+
return super().__getitem__(key)
|
293
|
+
|
294
|
+
def get(self, key: str, default = None) -> Any:
|
295
|
+
DatasetRepeat.__key_warning(key)
|
296
|
+
return super().get(key, default)
|
297
|
+
|
298
|
+
def __init__(__self__, *,
|
299
|
+
end_after_n: int,
|
300
|
+
repeats_every: str,
|
301
|
+
start: int):
|
302
|
+
pulumi.set(__self__, "end_after_n", end_after_n)
|
303
|
+
pulumi.set(__self__, "repeats_every", repeats_every)
|
304
|
+
pulumi.set(__self__, "start", start)
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter(name="endAfterN")
|
308
|
+
def end_after_n(self) -> int:
|
309
|
+
return pulumi.get(self, "end_after_n")
|
310
|
+
|
311
|
+
@property
|
312
|
+
@pulumi.getter(name="repeatsEvery")
|
313
|
+
def repeats_every(self) -> str:
|
314
|
+
return pulumi.get(self, "repeats_every")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter
|
318
|
+
def start(self) -> int:
|
319
|
+
return pulumi.get(self, "start")
|
320
|
+
|
321
|
+
|
322
|
+
@pulumi.output_type
|
323
|
+
class DatasetReport(dict):
|
324
|
+
@staticmethod
|
325
|
+
def __key_warning(key: str):
|
326
|
+
suggest = None
|
327
|
+
if key == "createdAt":
|
328
|
+
suggest = "created_at"
|
329
|
+
|
330
|
+
if suggest:
|
331
|
+
pulumi.log.warn(f"Key '{key}' not found in DatasetReport. Access the value via the '{suggest}' property getter instead.")
|
332
|
+
|
333
|
+
def __getitem__(self, key: str) -> Any:
|
334
|
+
DatasetReport.__key_warning(key)
|
335
|
+
return super().__getitem__(key)
|
336
|
+
|
337
|
+
def get(self, key: str, default = None) -> Any:
|
338
|
+
DatasetReport.__key_warning(key)
|
339
|
+
return super().get(key, default)
|
340
|
+
|
341
|
+
def __init__(__self__, *,
|
342
|
+
created_at: Optional[int] = None,
|
343
|
+
end: Optional[int] = None,
|
344
|
+
id: Optional[str] = None,
|
345
|
+
start: Optional[int] = None,
|
346
|
+
status: Optional[str] = None):
|
347
|
+
if created_at is not None:
|
348
|
+
pulumi.set(__self__, "created_at", created_at)
|
349
|
+
if end is not None:
|
350
|
+
pulumi.set(__self__, "end", end)
|
351
|
+
if id is not None:
|
352
|
+
pulumi.set(__self__, "id", id)
|
353
|
+
if start is not None:
|
354
|
+
pulumi.set(__self__, "start", start)
|
355
|
+
if status is not None:
|
356
|
+
pulumi.set(__self__, "status", status)
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter(name="createdAt")
|
360
|
+
def created_at(self) -> Optional[int]:
|
361
|
+
return pulumi.get(self, "created_at")
|
362
|
+
|
363
|
+
@property
|
364
|
+
@pulumi.getter
|
365
|
+
def end(self) -> Optional[int]:
|
366
|
+
return pulumi.get(self, "end")
|
367
|
+
|
368
|
+
@property
|
369
|
+
@pulumi.getter
|
370
|
+
def id(self) -> Optional[str]:
|
371
|
+
return pulumi.get(self, "id")
|
372
|
+
|
373
|
+
@property
|
374
|
+
@pulumi.getter
|
375
|
+
def start(self) -> Optional[int]:
|
376
|
+
return pulumi.get(self, "start")
|
377
|
+
|
378
|
+
@property
|
379
|
+
@pulumi.getter
|
380
|
+
def status(self) -> Optional[str]:
|
381
|
+
return pulumi.get(self, "status")
|
382
|
+
|
383
|
+
|
384
|
+
@pulumi.output_type
|
385
|
+
class DatasetTimeframe(dict):
|
386
|
+
@staticmethod
|
387
|
+
def __key_warning(key: str):
|
388
|
+
suggest = None
|
389
|
+
if key == "from":
|
390
|
+
suggest = "from_"
|
391
|
+
|
392
|
+
if suggest:
|
393
|
+
pulumi.log.warn(f"Key '{key}' not found in DatasetTimeframe. Access the value via the '{suggest}' property getter instead.")
|
394
|
+
|
395
|
+
def __getitem__(self, key: str) -> Any:
|
396
|
+
DatasetTimeframe.__key_warning(key)
|
397
|
+
return super().__getitem__(key)
|
398
|
+
|
399
|
+
def get(self, key: str, default = None) -> Any:
|
400
|
+
DatasetTimeframe.__key_warning(key)
|
401
|
+
return super().get(key, default)
|
402
|
+
|
403
|
+
def __init__(__self__, *,
|
404
|
+
aggregation: str,
|
405
|
+
cycles: Optional[int] = None,
|
406
|
+
from_: Optional[int] = None,
|
407
|
+
to: Optional[int] = None):
|
408
|
+
pulumi.set(__self__, "aggregation", aggregation)
|
409
|
+
if cycles is not None:
|
410
|
+
pulumi.set(__self__, "cycles", cycles)
|
411
|
+
if from_ is not None:
|
412
|
+
pulumi.set(__self__, "from_", from_)
|
413
|
+
if to is not None:
|
414
|
+
pulumi.set(__self__, "to", to)
|
415
|
+
|
416
|
+
@property
|
417
|
+
@pulumi.getter
|
418
|
+
def aggregation(self) -> str:
|
419
|
+
return pulumi.get(self, "aggregation")
|
420
|
+
|
421
|
+
@property
|
422
|
+
@pulumi.getter
|
423
|
+
def cycles(self) -> Optional[int]:
|
424
|
+
return pulumi.get(self, "cycles")
|
425
|
+
|
426
|
+
@property
|
427
|
+
@pulumi.getter(name="from")
|
428
|
+
def from_(self) -> Optional[int]:
|
429
|
+
return pulumi.get(self, "from_")
|
430
|
+
|
431
|
+
@property
|
432
|
+
@pulumi.getter
|
433
|
+
def to(self) -> Optional[int]:
|
434
|
+
return pulumi.get(self, "to")
|
435
|
+
|
436
|
+
|
246
437
|
@pulumi.output_type
|
247
438
|
class MonitoringJobRule(dict):
|
248
439
|
def __init__(__self__, *,
|
@@ -1125,6 +1316,49 @@ class GetDNSSecKeyDnskeyResult(dict):
|
|
1125
1316
|
return pulumi.get(self, "public_key")
|
1126
1317
|
|
1127
1318
|
|
1319
|
+
@pulumi.output_type
|
1320
|
+
class GetMonitoringRegionsRegionResult(dict):
|
1321
|
+
def __init__(__self__, *,
|
1322
|
+
code: Optional[str] = None,
|
1323
|
+
name: Optional[str] = None,
|
1324
|
+
subnets: Optional[Sequence[str]] = None):
|
1325
|
+
"""
|
1326
|
+
:param str code: 3-letter city code identifying the location of the monitor.
|
1327
|
+
:param str name: City name identifying the location of the monitor.
|
1328
|
+
:param Sequence[str] subnets: A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1329
|
+
"""
|
1330
|
+
if code is not None:
|
1331
|
+
pulumi.set(__self__, "code", code)
|
1332
|
+
if name is not None:
|
1333
|
+
pulumi.set(__self__, "name", name)
|
1334
|
+
if subnets is not None:
|
1335
|
+
pulumi.set(__self__, "subnets", subnets)
|
1336
|
+
|
1337
|
+
@property
|
1338
|
+
@pulumi.getter
|
1339
|
+
def code(self) -> Optional[str]:
|
1340
|
+
"""
|
1341
|
+
3-letter city code identifying the location of the monitor.
|
1342
|
+
"""
|
1343
|
+
return pulumi.get(self, "code")
|
1344
|
+
|
1345
|
+
@property
|
1346
|
+
@pulumi.getter
|
1347
|
+
def name(self) -> Optional[str]:
|
1348
|
+
"""
|
1349
|
+
City name identifying the location of the monitor.
|
1350
|
+
"""
|
1351
|
+
return pulumi.get(self, "name")
|
1352
|
+
|
1353
|
+
@property
|
1354
|
+
@pulumi.getter
|
1355
|
+
def subnets(self) -> Optional[Sequence[str]]:
|
1356
|
+
"""
|
1357
|
+
A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
1358
|
+
"""
|
1359
|
+
return pulumi.get(self, "subnets")
|
1360
|
+
|
1361
|
+
|
1128
1362
|
@pulumi.output_type
|
1129
1363
|
class GetNetworksNetworkResult(dict):
|
1130
1364
|
def __init__(__self__, *,
|
@@ -1,19 +1,21 @@
|
|
1
|
-
pulumi_ns1/__init__.py,sha256=
|
2
|
-
pulumi_ns1/_inputs.py,sha256=
|
1
|
+
pulumi_ns1/__init__.py,sha256=wNUy5gN6yVX06kifppBkiBFuJrHs5rh3Dzq66Pm8i2o,3438
|
2
|
+
pulumi_ns1/_inputs.py,sha256=8FSj_cd_yoTCKSpENO84hL6nUYMk5nV4TMPiVfmKCLE,38901
|
3
3
|
pulumi_ns1/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
4
|
pulumi_ns1/account_whitelist.py,sha256=PPYX8ErnQ5OLMEWx9svBbhKSlirrjCXSNib8NQDHWLY,9086
|
5
5
|
pulumi_ns1/api_key.py,sha256=39Jp6JTylpVbPuNedVB_e6sTwki_rBT4gUVcyXDQTcg,87352
|
6
6
|
pulumi_ns1/application.py,sha256=BTdXOXuijgCSmq6AZC5L0UNlXEHPabGFACgF9dTtx7w,17869
|
7
7
|
pulumi_ns1/data_feed.py,sha256=7fwC26DyC69HvNmA1xZA-_4ly4jsd3ck6dSwEUcMWcw,12480
|
8
8
|
pulumi_ns1/data_source.py,sha256=jTs1OlOSnP09mNZZAfHZbaygAWgQfbekBGryn5ozgE4,11178
|
9
|
+
pulumi_ns1/dataset.py,sha256=IwYvL6WgRpKF6ZRhFi4pO3Zqj2OymKPbdh3XqWEHdj4,13385
|
9
10
|
pulumi_ns1/dnsview.py,sha256=83riInActsTQC_E-yuaeFxHWYG49UHtrJtjuDsH5ASM,13624
|
10
11
|
pulumi_ns1/get_dns_sec.py,sha256=HIDs_IivkxyC9PasG9kjDAM9tp80zhFV8Rq5w4laA6s,4231
|
12
|
+
pulumi_ns1/get_monitoring_regions.py,sha256=Gfd5bw0HxiEo4CF0QRuqXsk5tBB2XgrbMt0NcekR_VU,3680
|
11
13
|
pulumi_ns1/get_networks.py,sha256=PlDpRvSk6AohEUcNEp2xladWYBjqg0JPQtB9a8gN95g,3096
|
12
14
|
pulumi_ns1/get_record.py,sha256=ngeq5_mn02icCIBFGBcVjzFeHboPtj4wAdVVELF7K64,8947
|
13
15
|
pulumi_ns1/get_zone.py,sha256=HxTroFSB_Svchn3uXQfxrB79Q1E5bvCa3-W0DbNBKaE,11388
|
14
16
|
pulumi_ns1/monitoring_job.py,sha256=CMGf5-Q0VL3k7kTemlzs1Zd4vtBhu_kJy4u83_57pSQ,45856
|
15
17
|
pulumi_ns1/notify_list.py,sha256=_1AYkYviA26HkyddMMSyKdSRKQgS1PuQtCgHZa4OYfk,11027
|
16
|
-
pulumi_ns1/outputs.py,sha256=
|
18
|
+
pulumi_ns1/outputs.py,sha256=Ld_6Lm9hRElF10c_aIewKwbtmsXIJzlZXXI4OqUHt0o,46058
|
17
19
|
pulumi_ns1/provider.py,sha256=5E3JbCjCD3ztCf3HFRYQ_c680oYir0a9h_Fy3nUtHe0,10590
|
18
20
|
pulumi_ns1/pulsar_job.py,sha256=Gk12BJdVCy6QWEqt99Wf5RqvZXEIf8Oub5Qn0x3YfjM,17050
|
19
21
|
pulumi_ns1/pulumi-plugin.json,sha256=U1IwjH61SXsxMo8_PRJwqdmvSF-6MsDFM_LRS0M9Pow,40
|
@@ -27,7 +29,7 @@ pulumi_ns1/zone.py,sha256=uNMTuyIfC-ij8y5iUJNVWp31Q5PInWpgiXNvqhPTZWs,42852
|
|
27
29
|
pulumi_ns1/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
28
30
|
pulumi_ns1/config/__init__.pyi,sha256=gTM1utkGS4KH3on5zyhR_a6AtTg4_jVpEXyQeU7ZpJQ,865
|
29
31
|
pulumi_ns1/config/vars.py,sha256=bQTOWrwMP1x58zYPNlK8g8CTAbOUMF3GyfcevML1frE,1674
|
30
|
-
pulumi_ns1-3.2.
|
31
|
-
pulumi_ns1-3.2.
|
32
|
-
pulumi_ns1-3.2.
|
33
|
-
pulumi_ns1-3.2.
|
32
|
+
pulumi_ns1-3.2.1.dist-info/METADATA,sha256=w1n8jBwBuGb4iizLrzivOQ91N5_Wmxabr3JPt5gYrO0,3036
|
33
|
+
pulumi_ns1-3.2.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
34
|
+
pulumi_ns1-3.2.1.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
|
35
|
+
pulumi_ns1-3.2.1.dist-info/RECORD,,
|
File without changes
|