pulumi-ns1 3.7.0a1752905838__py3-none-any.whl → 3.7.0a1753397901__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_ns1/__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.0a1752905838.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.0a1752905838.dist-info/RECORD +0 -38
- {pulumi_ns1-3.7.0a1752905838.dist-info → pulumi_ns1-3.7.0a1753397901.dist-info}/WHEEL +0 -0
- {pulumi_ns1-3.7.0a1752905838.dist-info → pulumi_ns1-3.7.0a1753397901.dist-info}/top_level.txt +0 -0
pulumi_ns1/get_billing_usage.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
|
@@ -84,7 +83,7 @@ class GetBillingUsageResult:
|
|
84
83
|
raise TypeError("Expected argument 'total_usage' to be a int")
|
85
84
|
pulumi.set(__self__, "total_usage", total_usage)
|
86
85
|
|
87
|
-
@property
|
86
|
+
@_builtins.property
|
88
87
|
@pulumi.getter(name="byNetworks")
|
89
88
|
def by_networks(self) -> Sequence['outputs.GetBillingUsageByNetworkResult']:
|
90
89
|
"""
|
@@ -92,128 +91,128 @@ class GetBillingUsageResult:
|
|
92
91
|
"""
|
93
92
|
return pulumi.get(self, "by_networks")
|
94
93
|
|
95
|
-
@property
|
94
|
+
@_builtins.property
|
96
95
|
@pulumi.getter(name="chinaQueriesLimit")
|
97
|
-
def china_queries_limit(self) ->
|
96
|
+
def china_queries_limit(self) -> _builtins.int:
|
98
97
|
"""
|
99
98
|
(Computed) The queries limit for the China network.
|
100
99
|
"""
|
101
100
|
return pulumi.get(self, "china_queries_limit")
|
102
101
|
|
103
|
-
@property
|
102
|
+
@_builtins.property
|
104
103
|
@pulumi.getter(name="cleanQueries")
|
105
|
-
def clean_queries(self) ->
|
104
|
+
def clean_queries(self) -> _builtins.int:
|
106
105
|
"""
|
107
106
|
Clean queries for this day.
|
108
107
|
"""
|
109
108
|
return pulumi.get(self, "clean_queries")
|
110
109
|
|
111
|
-
@property
|
110
|
+
@_builtins.property
|
112
111
|
@pulumi.getter(name="ddosProtectionEnabled")
|
113
|
-
def ddos_protection_enabled(self) ->
|
112
|
+
def ddos_protection_enabled(self) -> _builtins.bool:
|
114
113
|
"""
|
115
114
|
(Computed) Whether DDoS Protection is enabled.
|
116
115
|
"""
|
117
116
|
return pulumi.get(self, "ddos_protection_enabled")
|
118
117
|
|
119
|
-
@property
|
118
|
+
@_builtins.property
|
120
119
|
@pulumi.getter(name="ddosQueries")
|
121
|
-
def ddos_queries(self) ->
|
120
|
+
def ddos_queries(self) -> _builtins.int:
|
122
121
|
"""
|
123
122
|
DDoS queries for this day.
|
124
123
|
"""
|
125
124
|
return pulumi.get(self, "ddos_queries")
|
126
125
|
|
127
|
-
@property
|
126
|
+
@_builtins.property
|
128
127
|
@pulumi.getter(name="decisionsLimit")
|
129
|
-
def decisions_limit(self) ->
|
128
|
+
def decisions_limit(self) -> _builtins.int:
|
130
129
|
"""
|
131
130
|
(Computed) The RUM decisions limit for this billing cycle.
|
132
131
|
"""
|
133
132
|
return pulumi.get(self, "decisions_limit")
|
134
133
|
|
135
|
-
@property
|
134
|
+
@_builtins.property
|
136
135
|
@pulumi.getter(name="filterChainsLimit")
|
137
|
-
def filter_chains_limit(self) ->
|
136
|
+
def filter_chains_limit(self) -> _builtins.int:
|
138
137
|
"""
|
139
138
|
(Computed) The filter chains limit for this billing cycle.
|
140
139
|
"""
|
141
140
|
return pulumi.get(self, "filter_chains_limit")
|
142
141
|
|
143
|
-
@property
|
142
|
+
@_builtins.property
|
144
143
|
@pulumi.getter(name="from")
|
145
|
-
def from_(self) -> Optional[
|
144
|
+
def from_(self) -> Optional[_builtins.int]:
|
146
145
|
return pulumi.get(self, "from_")
|
147
146
|
|
148
|
-
@property
|
147
|
+
@_builtins.property
|
149
148
|
@pulumi.getter
|
150
|
-
def id(self) ->
|
149
|
+
def id(self) -> _builtins.str:
|
151
150
|
"""
|
152
151
|
The provider-assigned unique ID for this managed resource.
|
153
152
|
"""
|
154
153
|
return pulumi.get(self, "id")
|
155
154
|
|
156
|
-
@property
|
155
|
+
@_builtins.property
|
157
156
|
@pulumi.getter(name="includeDedicatedDnsNetworkInManagedDnsUsage")
|
158
|
-
def include_dedicated_dns_network_in_managed_dns_usage(self) ->
|
157
|
+
def include_dedicated_dns_network_in_managed_dns_usage(self) -> _builtins.bool:
|
159
158
|
"""
|
160
159
|
(Computed) Whether dedicated DNS usage counts towards managed DNS usage.
|
161
160
|
"""
|
162
161
|
return pulumi.get(self, "include_dedicated_dns_network_in_managed_dns_usage")
|
163
162
|
|
164
|
-
@property
|
163
|
+
@_builtins.property
|
165
164
|
@pulumi.getter(name="metricType")
|
166
|
-
def metric_type(self) ->
|
165
|
+
def metric_type(self) -> _builtins.str:
|
167
166
|
return pulumi.get(self, "metric_type")
|
168
167
|
|
169
|
-
@property
|
168
|
+
@_builtins.property
|
170
169
|
@pulumi.getter(name="monitorsLimit")
|
171
|
-
def monitors_limit(self) ->
|
170
|
+
def monitors_limit(self) -> _builtins.int:
|
172
171
|
"""
|
173
172
|
(Computed) The monitoring jobs limit for this billing cycle.
|
174
173
|
"""
|
175
174
|
return pulumi.get(self, "monitors_limit")
|
176
175
|
|
177
|
-
@property
|
176
|
+
@_builtins.property
|
178
177
|
@pulumi.getter(name="nxdProtectionEnabled")
|
179
|
-
def nxd_protection_enabled(self) ->
|
178
|
+
def nxd_protection_enabled(self) -> _builtins.bool:
|
180
179
|
"""
|
181
180
|
(Computed) Whether NXD Protection is enabled.
|
182
181
|
"""
|
183
182
|
return pulumi.get(self, "nxd_protection_enabled")
|
184
183
|
|
185
|
-
@property
|
184
|
+
@_builtins.property
|
186
185
|
@pulumi.getter(name="nxdResponses")
|
187
|
-
def nxd_responses(self) ->
|
186
|
+
def nxd_responses(self) -> _builtins.int:
|
188
187
|
"""
|
189
188
|
NXD responses for this day.
|
190
189
|
"""
|
191
190
|
return pulumi.get(self, "nxd_responses")
|
192
191
|
|
193
|
-
@property
|
192
|
+
@_builtins.property
|
194
193
|
@pulumi.getter(name="queriesLimit")
|
195
|
-
def queries_limit(self) ->
|
194
|
+
def queries_limit(self) -> _builtins.int:
|
196
195
|
"""
|
197
196
|
(Computed) The queries limit for this billing cycle.
|
198
197
|
"""
|
199
198
|
return pulumi.get(self, "queries_limit")
|
200
199
|
|
201
|
-
@property
|
200
|
+
@_builtins.property
|
202
201
|
@pulumi.getter(name="recordsLimit")
|
203
|
-
def records_limit(self) ->
|
202
|
+
def records_limit(self) -> _builtins.int:
|
204
203
|
"""
|
205
204
|
(Computed) The records limit for this billing cycle.
|
206
205
|
"""
|
207
206
|
return pulumi.get(self, "records_limit")
|
208
207
|
|
209
|
-
@property
|
208
|
+
@_builtins.property
|
210
209
|
@pulumi.getter
|
211
|
-
def to(self) -> Optional[
|
210
|
+
def to(self) -> Optional[_builtins.int]:
|
212
211
|
return pulumi.get(self, "to")
|
213
212
|
|
214
|
-
@property
|
213
|
+
@_builtins.property
|
215
214
|
@pulumi.getter(name="totalUsage")
|
216
|
-
def total_usage(self) ->
|
215
|
+
def total_usage(self) -> _builtins.int:
|
217
216
|
"""
|
218
217
|
(Computed) The total usage count for the metric. Available for `decisions`, `filter-chains`, `monitors`, and `records` metrics.
|
219
218
|
"""
|
@@ -246,9 +245,9 @@ class AwaitableGetBillingUsageResult(GetBillingUsageResult):
|
|
246
245
|
total_usage=self.total_usage)
|
247
246
|
|
248
247
|
|
249
|
-
def get_billing_usage(from_: Optional[
|
250
|
-
metric_type: Optional[
|
251
|
-
to: Optional[
|
248
|
+
def get_billing_usage(from_: Optional[_builtins.int] = None,
|
249
|
+
metric_type: Optional[_builtins.str] = None,
|
250
|
+
to: Optional[_builtins.int] = None,
|
252
251
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBillingUsageResult:
|
253
252
|
"""
|
254
253
|
Provides billing usage details about a NS1 account.
|
@@ -292,9 +291,9 @@ def get_billing_usage(from_: Optional[builtins.int] = None,
|
|
292
291
|
```
|
293
292
|
|
294
293
|
|
295
|
-
:param
|
296
|
-
:param
|
297
|
-
:param
|
294
|
+
:param _builtins.int from_: The start timestamp for the data range in Unix epoch format.
|
295
|
+
:param _builtins.str metric_type: The type of billing metric to retrieve. Must be one of: `queries`, `limits`, `decisions`, `filter-chains`, `monitors`, `records`.
|
296
|
+
:param _builtins.int to: The end timestamp for the data range in Unix epoch format.
|
298
297
|
"""
|
299
298
|
__args__ = dict()
|
300
299
|
__args__['from'] = from_
|
@@ -322,9 +321,9 @@ def get_billing_usage(from_: Optional[builtins.int] = None,
|
|
322
321
|
records_limit=pulumi.get(__ret__, 'records_limit'),
|
323
322
|
to=pulumi.get(__ret__, 'to'),
|
324
323
|
total_usage=pulumi.get(__ret__, 'total_usage'))
|
325
|
-
def get_billing_usage_output(from_: Optional[pulumi.Input[Optional[
|
326
|
-
metric_type: Optional[pulumi.Input[
|
327
|
-
to: Optional[pulumi.Input[Optional[
|
324
|
+
def get_billing_usage_output(from_: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
325
|
+
metric_type: Optional[pulumi.Input[_builtins.str]] = None,
|
326
|
+
to: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
328
327
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBillingUsageResult]:
|
329
328
|
"""
|
330
329
|
Provides billing usage details about a NS1 account.
|
@@ -368,9 +367,9 @@ def get_billing_usage_output(from_: Optional[pulumi.Input[Optional[builtins.int]
|
|
368
367
|
```
|
369
368
|
|
370
369
|
|
371
|
-
:param
|
372
|
-
:param
|
373
|
-
:param
|
370
|
+
:param _builtins.int from_: The start timestamp for the data range in Unix epoch format.
|
371
|
+
:param _builtins.str metric_type: The type of billing metric to retrieve. Must be one of: `queries`, `limits`, `decisions`, `filter-chains`, `monitors`, `records`.
|
372
|
+
:param _builtins.int to: The end timestamp for the data range in Unix epoch format.
|
374
373
|
"""
|
375
374
|
__args__ = dict()
|
376
375
|
__args__['from'] = from_
|
pulumi_ns1/get_dns_sec.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
|
@@ -42,7 +41,7 @@ class GetDNSSecResult:
|
|
42
41
|
raise TypeError("Expected argument 'zone' to be a str")
|
43
42
|
pulumi.set(__self__, "zone", zone)
|
44
43
|
|
45
|
-
@property
|
44
|
+
@_builtins.property
|
46
45
|
@pulumi.getter
|
47
46
|
def delegations(self) -> Sequence['outputs.GetDNSSecDelegationResult']:
|
48
47
|
"""
|
@@ -51,15 +50,15 @@ class GetDNSSecResult:
|
|
51
50
|
"""
|
52
51
|
return pulumi.get(self, "delegations")
|
53
52
|
|
54
|
-
@property
|
53
|
+
@_builtins.property
|
55
54
|
@pulumi.getter
|
56
|
-
def id(self) ->
|
55
|
+
def id(self) -> _builtins.str:
|
57
56
|
"""
|
58
57
|
The provider-assigned unique ID for this managed resource.
|
59
58
|
"""
|
60
59
|
return pulumi.get(self, "id")
|
61
60
|
|
62
|
-
@property
|
61
|
+
@_builtins.property
|
63
62
|
@pulumi.getter
|
64
63
|
def keys(self) -> Sequence['outputs.GetDNSSecKeyResult']:
|
65
64
|
"""
|
@@ -67,9 +66,9 @@ class GetDNSSecResult:
|
|
67
66
|
"""
|
68
67
|
return pulumi.get(self, "keys")
|
69
68
|
|
70
|
-
@property
|
69
|
+
@_builtins.property
|
71
70
|
@pulumi.getter
|
72
|
-
def zone(self) ->
|
71
|
+
def zone(self) -> _builtins.str:
|
73
72
|
return pulumi.get(self, "zone")
|
74
73
|
|
75
74
|
|
@@ -85,7 +84,7 @@ class AwaitableGetDNSSecResult(GetDNSSecResult):
|
|
85
84
|
zone=self.zone)
|
86
85
|
|
87
86
|
|
88
|
-
def get_dns_sec(zone: Optional[
|
87
|
+
def get_dns_sec(zone: Optional[_builtins.str] = None,
|
89
88
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDNSSecResult:
|
90
89
|
"""
|
91
90
|
Provides DNSSEC details about a NS1 Zone.
|
@@ -104,7 +103,7 @@ def get_dns_sec(zone: Optional[builtins.str] = None,
|
|
104
103
|
```
|
105
104
|
|
106
105
|
|
107
|
-
:param
|
106
|
+
:param _builtins.str zone: The name of the zone to get DNSSEC details for.
|
108
107
|
"""
|
109
108
|
__args__ = dict()
|
110
109
|
__args__['zone'] = zone
|
@@ -116,7 +115,7 @@ def get_dns_sec(zone: Optional[builtins.str] = None,
|
|
116
115
|
id=pulumi.get(__ret__, 'id'),
|
117
116
|
keys=pulumi.get(__ret__, 'keys'),
|
118
117
|
zone=pulumi.get(__ret__, 'zone'))
|
119
|
-
def get_dns_sec_output(zone: Optional[pulumi.Input[
|
118
|
+
def get_dns_sec_output(zone: Optional[pulumi.Input[_builtins.str]] = None,
|
120
119
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDNSSecResult]:
|
121
120
|
"""
|
122
121
|
Provides DNSSEC details about a NS1 Zone.
|
@@ -135,7 +134,7 @@ def get_dns_sec_output(zone: Optional[pulumi.Input[builtins.str]] = None,
|
|
135
134
|
```
|
136
135
|
|
137
136
|
|
138
|
-
:param
|
137
|
+
:param _builtins.str zone: The name of the zone to get DNSSEC details for.
|
139
138
|
"""
|
140
139
|
__args__ = dict()
|
141
140
|
__args__['zone'] = zone
|
@@ -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
|
@@ -37,15 +36,15 @@ class GetMonitoringRegionsResult:
|
|
37
36
|
raise TypeError("Expected argument 'regions' to be a list")
|
38
37
|
pulumi.set(__self__, "regions", regions)
|
39
38
|
|
40
|
-
@property
|
39
|
+
@_builtins.property
|
41
40
|
@pulumi.getter
|
42
|
-
def id(self) ->
|
41
|
+
def id(self) -> _builtins.str:
|
43
42
|
"""
|
44
43
|
The provider-assigned unique ID for this managed resource.
|
45
44
|
"""
|
46
45
|
return pulumi.get(self, "id")
|
47
46
|
|
48
|
-
@property
|
47
|
+
@_builtins.property
|
49
48
|
@pulumi.getter
|
50
49
|
def regions(self) -> Optional[Sequence['outputs.GetMonitoringRegionsRegionResult']]:
|
51
50
|
"""
|
pulumi_ns1/get_networks.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
|
@@ -36,15 +35,15 @@ class GetNetworksResult:
|
|
36
35
|
raise TypeError("Expected argument 'networks' to be a list")
|
37
36
|
pulumi.set(__self__, "networks", networks)
|
38
37
|
|
39
|
-
@property
|
38
|
+
@_builtins.property
|
40
39
|
@pulumi.getter
|
41
|
-
def id(self) ->
|
40
|
+
def id(self) -> _builtins.str:
|
42
41
|
"""
|
43
42
|
The provider-assigned unique ID for this managed resource.
|
44
43
|
"""
|
45
44
|
return pulumi.get(self, "id")
|
46
45
|
|
47
|
-
@property
|
46
|
+
@_builtins.property
|
48
47
|
@pulumi.getter
|
49
48
|
def networks(self) -> Sequence['outputs.GetNetworksNetworkResult']:
|
50
49
|
"""
|
pulumi_ns1/get_record.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
|
@@ -75,7 +74,7 @@ class GetRecordResult:
|
|
75
74
|
raise TypeError("Expected argument 'zone' to be a str")
|
76
75
|
pulumi.set(__self__, "zone", zone)
|
77
76
|
|
78
|
-
@property
|
77
|
+
@_builtins.property
|
79
78
|
@pulumi.getter
|
80
79
|
def answers(self) -> Sequence['outputs.GetRecordAnswerResult']:
|
81
80
|
"""
|
@@ -83,12 +82,12 @@ class GetRecordResult:
|
|
83
82
|
"""
|
84
83
|
return pulumi.get(self, "answers")
|
85
84
|
|
86
|
-
@property
|
85
|
+
@_builtins.property
|
87
86
|
@pulumi.getter
|
88
|
-
def domain(self) ->
|
87
|
+
def domain(self) -> _builtins.str:
|
89
88
|
return pulumi.get(self, "domain")
|
90
89
|
|
91
|
-
@property
|
90
|
+
@_builtins.property
|
92
91
|
@pulumi.getter
|
93
92
|
def filters(self) -> Sequence['outputs.GetRecordFilterResult']:
|
94
93
|
"""
|
@@ -96,41 +95,41 @@ class GetRecordResult:
|
|
96
95
|
"""
|
97
96
|
return pulumi.get(self, "filters")
|
98
97
|
|
99
|
-
@property
|
98
|
+
@_builtins.property
|
100
99
|
@pulumi.getter
|
101
|
-
def id(self) ->
|
100
|
+
def id(self) -> _builtins.str:
|
102
101
|
"""
|
103
102
|
The provider-assigned unique ID for this managed resource.
|
104
103
|
"""
|
105
104
|
return pulumi.get(self, "id")
|
106
105
|
|
107
|
-
@property
|
106
|
+
@_builtins.property
|
108
107
|
@pulumi.getter
|
109
|
-
def link(self) ->
|
108
|
+
def link(self) -> _builtins.str:
|
110
109
|
"""
|
111
110
|
The target record this links to.
|
112
111
|
"""
|
113
112
|
return pulumi.get(self, "link")
|
114
113
|
|
115
|
-
@property
|
114
|
+
@_builtins.property
|
116
115
|
@pulumi.getter
|
117
|
-
def meta(self) -> Mapping[str,
|
116
|
+
def meta(self) -> Mapping[str, _builtins.str]:
|
118
117
|
"""
|
119
118
|
Map of metadata
|
120
119
|
"""
|
121
120
|
return pulumi.get(self, "meta")
|
122
121
|
|
123
|
-
@property
|
122
|
+
@_builtins.property
|
124
123
|
@pulumi.getter(name="overrideAddressRecords")
|
125
|
-
def override_address_records(self) ->
|
124
|
+
def override_address_records(self) -> _builtins.bool:
|
126
125
|
return pulumi.get(self, "override_address_records")
|
127
126
|
|
128
|
-
@property
|
127
|
+
@_builtins.property
|
129
128
|
@pulumi.getter(name="overrideTtl")
|
130
|
-
def override_ttl(self) ->
|
129
|
+
def override_ttl(self) -> _builtins.bool:
|
131
130
|
return pulumi.get(self, "override_ttl")
|
132
131
|
|
133
|
-
@property
|
132
|
+
@_builtins.property
|
134
133
|
@pulumi.getter
|
135
134
|
def regions(self) -> Sequence['outputs.GetRecordRegionResult']:
|
136
135
|
"""
|
@@ -138,40 +137,40 @@ class GetRecordResult:
|
|
138
137
|
"""
|
139
138
|
return pulumi.get(self, "regions")
|
140
139
|
|
141
|
-
@property
|
140
|
+
@_builtins.property
|
142
141
|
@pulumi.getter(name="shortAnswers")
|
143
|
-
def short_answers(self) -> Sequence[
|
142
|
+
def short_answers(self) -> Sequence[_builtins.str]:
|
144
143
|
return pulumi.get(self, "short_answers")
|
145
144
|
|
146
|
-
@property
|
145
|
+
@_builtins.property
|
147
146
|
@pulumi.getter
|
148
|
-
def tags(self) -> Mapping[str,
|
147
|
+
def tags(self) -> Mapping[str, _builtins.str]:
|
149
148
|
return pulumi.get(self, "tags")
|
150
149
|
|
151
|
-
@property
|
150
|
+
@_builtins.property
|
152
151
|
@pulumi.getter
|
153
|
-
def ttl(self) ->
|
152
|
+
def ttl(self) -> _builtins.int:
|
154
153
|
"""
|
155
154
|
The records' time to live (in seconds).
|
156
155
|
"""
|
157
156
|
return pulumi.get(self, "ttl")
|
158
157
|
|
159
|
-
@property
|
158
|
+
@_builtins.property
|
160
159
|
@pulumi.getter
|
161
|
-
def type(self) ->
|
160
|
+
def type(self) -> _builtins.str:
|
162
161
|
return pulumi.get(self, "type")
|
163
162
|
|
164
|
-
@property
|
163
|
+
@_builtins.property
|
165
164
|
@pulumi.getter(name="useClientSubnet")
|
166
|
-
def use_client_subnet(self) ->
|
165
|
+
def use_client_subnet(self) -> _builtins.bool:
|
167
166
|
"""
|
168
167
|
Whether to use EDNS client subnet data when available (in filter chain).
|
169
168
|
"""
|
170
169
|
return pulumi.get(self, "use_client_subnet")
|
171
170
|
|
172
|
-
@property
|
171
|
+
@_builtins.property
|
173
172
|
@pulumi.getter
|
174
|
-
def zone(self) ->
|
173
|
+
def zone(self) -> _builtins.str:
|
175
174
|
return pulumi.get(self, "zone")
|
176
175
|
|
177
176
|
|
@@ -198,9 +197,9 @@ class AwaitableGetRecordResult(GetRecordResult):
|
|
198
197
|
zone=self.zone)
|
199
198
|
|
200
199
|
|
201
|
-
def get_record(domain: Optional[
|
202
|
-
type: Optional[
|
203
|
-
zone: Optional[
|
200
|
+
def get_record(domain: Optional[_builtins.str] = None,
|
201
|
+
type: Optional[_builtins.str] = None,
|
202
|
+
zone: Optional[_builtins.str] = None,
|
204
203
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRecordResult:
|
205
204
|
"""
|
206
205
|
Provides details about a NS1 Record. Use this if you would simply like to read
|
@@ -220,9 +219,9 @@ def get_record(domain: Optional[builtins.str] = None,
|
|
220
219
|
```
|
221
220
|
|
222
221
|
|
223
|
-
:param
|
224
|
-
:param
|
225
|
-
:param
|
222
|
+
:param _builtins.str domain: The records' domain.
|
223
|
+
:param _builtins.str type: The records' RR type.
|
224
|
+
:param _builtins.str zone: The zone the record belongs to.
|
226
225
|
"""
|
227
226
|
__args__ = dict()
|
228
227
|
__args__['domain'] = domain
|
@@ -247,9 +246,9 @@ def get_record(domain: Optional[builtins.str] = None,
|
|
247
246
|
type=pulumi.get(__ret__, 'type'),
|
248
247
|
use_client_subnet=pulumi.get(__ret__, 'use_client_subnet'),
|
249
248
|
zone=pulumi.get(__ret__, 'zone'))
|
250
|
-
def get_record_output(domain: Optional[pulumi.Input[
|
251
|
-
type: Optional[pulumi.Input[
|
252
|
-
zone: Optional[pulumi.Input[
|
249
|
+
def get_record_output(domain: Optional[pulumi.Input[_builtins.str]] = None,
|
250
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
251
|
+
zone: Optional[pulumi.Input[_builtins.str]] = None,
|
253
252
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRecordResult]:
|
254
253
|
"""
|
255
254
|
Provides details about a NS1 Record. Use this if you would simply like to read
|
@@ -269,9 +268,9 @@ def get_record_output(domain: Optional[pulumi.Input[builtins.str]] = None,
|
|
269
268
|
```
|
270
269
|
|
271
270
|
|
272
|
-
:param
|
273
|
-
:param
|
274
|
-
:param
|
271
|
+
:param _builtins.str domain: The records' domain.
|
272
|
+
:param _builtins.str type: The records' RR type.
|
273
|
+
:param _builtins.str zone: The zone the record belongs to.
|
275
274
|
"""
|
276
275
|
__args__ = dict()
|
277
276
|
__args__['domain'] = domain
|