pulumi-ns1 3.2.0a1698127169__py3-none-any.whl → 3.2.0a1698202392__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/_inputs.py +200 -56
- pulumi_ns1/_utilities.py +19 -0
- pulumi_ns1/account_whitelist.py +9 -3
- pulumi_ns1/api_key.py +126 -2
- pulumi_ns1/application.py +19 -7
- pulumi_ns1/data_feed.py +13 -3
- pulumi_ns1/data_source.py +9 -3
- pulumi_ns1/dnsview.py +18 -2
- pulumi_ns1/monitoring_job.py +46 -6
- pulumi_ns1/notify_list.py +6 -2
- pulumi_ns1/outputs.py +334 -98
- pulumi_ns1/provider.py +13 -1
- pulumi_ns1/pulsar_job.py +28 -14
- pulumi_ns1/record.py +31 -5
- pulumi_ns1/subnet.py +30 -2
- pulumi_ns1/team.py +122 -2
- pulumi_ns1/tsigkey.py +12 -4
- pulumi_ns1/user.py +132 -4
- pulumi_ns1/zone.py +31 -3
- {pulumi_ns1-3.2.0a1698127169.dist-info → pulumi_ns1-3.2.0a1698202392.dist-info}/METADATA +1 -1
- pulumi_ns1-3.2.0a1698202392.dist-info/RECORD +32 -0
- pulumi_ns1-3.2.0a1698127169.dist-info/RECORD +0 -32
- {pulumi_ns1-3.2.0a1698127169.dist-info → pulumi_ns1-3.2.0a1698202392.dist-info}/WHEEL +0 -0
- {pulumi_ns1-3.2.0a1698127169.dist-info → pulumi_ns1-3.2.0a1698202392.dist-info}/top_level.txt +0 -0
pulumi_ns1/pulsar_job.py
CHANGED
@@ -41,15 +41,27 @@ class PulsarJobArgs:
|
|
41
41
|
@staticmethod
|
42
42
|
def _configure(
|
43
43
|
_setter: Callable[[Any, Any], None],
|
44
|
-
app_id: pulumi.Input[str],
|
45
|
-
type_id: pulumi.Input[str],
|
44
|
+
app_id: Optional[pulumi.Input[str]] = None,
|
45
|
+
type_id: Optional[pulumi.Input[str]] = None,
|
46
46
|
active: Optional[pulumi.Input[bool]] = None,
|
47
47
|
blend_metric_weights: Optional[pulumi.Input['PulsarJobBlendMetricWeightsArgs']] = None,
|
48
48
|
config: Optional[pulumi.Input['PulsarJobConfigArgs']] = None,
|
49
49
|
name: Optional[pulumi.Input[str]] = None,
|
50
50
|
shared: Optional[pulumi.Input[bool]] = None,
|
51
51
|
weights: Optional[pulumi.Input[Sequence[pulumi.Input['PulsarJobWeightArgs']]]] = None,
|
52
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
52
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
53
|
+
**kwargs):
|
54
|
+
if app_id is None and 'appId' in kwargs:
|
55
|
+
app_id = kwargs['appId']
|
56
|
+
if app_id is None:
|
57
|
+
raise TypeError("Missing 'app_id' argument")
|
58
|
+
if type_id is None and 'typeId' in kwargs:
|
59
|
+
type_id = kwargs['typeId']
|
60
|
+
if type_id is None:
|
61
|
+
raise TypeError("Missing 'type_id' argument")
|
62
|
+
if blend_metric_weights is None and 'blendMetricWeights' in kwargs:
|
63
|
+
blend_metric_weights = kwargs['blendMetricWeights']
|
64
|
+
|
53
65
|
_setter("app_id", app_id)
|
54
66
|
_setter("type_id", type_id)
|
55
67
|
if active is not None:
|
@@ -183,7 +195,17 @@ class _PulsarJobState:
|
|
183
195
|
shared: Optional[pulumi.Input[bool]] = None,
|
184
196
|
type_id: Optional[pulumi.Input[str]] = None,
|
185
197
|
weights: Optional[pulumi.Input[Sequence[pulumi.Input['PulsarJobWeightArgs']]]] = None,
|
186
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
198
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
199
|
+
**kwargs):
|
200
|
+
if app_id is None and 'appId' in kwargs:
|
201
|
+
app_id = kwargs['appId']
|
202
|
+
if blend_metric_weights is None and 'blendMetricWeights' in kwargs:
|
203
|
+
blend_metric_weights = kwargs['blendMetricWeights']
|
204
|
+
if job_id is None and 'jobId' in kwargs:
|
205
|
+
job_id = kwargs['jobId']
|
206
|
+
if type_id is None and 'typeId' in kwargs:
|
207
|
+
type_id = kwargs['typeId']
|
208
|
+
|
187
209
|
if active is not None:
|
188
210
|
_setter("active", active)
|
189
211
|
if app_id is not None:
|
@@ -374,17 +396,9 @@ class PulsarJob(pulumi.CustomResource):
|
|
374
396
|
if app_id is None and not opts.urn:
|
375
397
|
raise TypeError("Missing required property 'app_id'")
|
376
398
|
__props__.__dict__["app_id"] = app_id
|
377
|
-
|
378
|
-
blend_metric_weights = blend_metric_weights or {}
|
379
|
-
def _setter(key, value):
|
380
|
-
blend_metric_weights[key] = value
|
381
|
-
PulsarJobBlendMetricWeightsArgs._configure(_setter, **blend_metric_weights)
|
399
|
+
blend_metric_weights = _utilities.configure(blend_metric_weights, PulsarJobBlendMetricWeightsArgs, True)
|
382
400
|
__props__.__dict__["blend_metric_weights"] = blend_metric_weights
|
383
|
-
|
384
|
-
config = config or {}
|
385
|
-
def _setter(key, value):
|
386
|
-
config[key] = value
|
387
|
-
PulsarJobConfigArgs._configure(_setter, **config)
|
401
|
+
config = _utilities.configure(config, PulsarJobConfigArgs, True)
|
388
402
|
__props__.__dict__["config"] = config
|
389
403
|
__props__.__dict__["name"] = name
|
390
404
|
__props__.__dict__["shared"] = shared
|
pulumi_ns1/record.py
CHANGED
@@ -73,9 +73,9 @@ class RecordArgs:
|
|
73
73
|
@staticmethod
|
74
74
|
def _configure(
|
75
75
|
_setter: Callable[[Any, Any], None],
|
76
|
-
domain: pulumi.Input[str],
|
77
|
-
type: pulumi.Input[str],
|
78
|
-
zone: pulumi.Input[str],
|
76
|
+
domain: Optional[pulumi.Input[str]] = None,
|
77
|
+
type: Optional[pulumi.Input[str]] = None,
|
78
|
+
zone: Optional[pulumi.Input[str]] = None,
|
79
79
|
answers: Optional[pulumi.Input[Sequence[pulumi.Input['RecordAnswerArgs']]]] = None,
|
80
80
|
blocked_tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
81
81
|
filters: Optional[pulumi.Input[Sequence[pulumi.Input['RecordFilterArgs']]]] = None,
|
@@ -87,7 +87,23 @@ class RecordArgs:
|
|
87
87
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
88
88
|
ttl: Optional[pulumi.Input[int]] = None,
|
89
89
|
use_client_subnet: Optional[pulumi.Input[bool]] = None,
|
90
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
90
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
91
|
+
**kwargs):
|
92
|
+
if domain is None:
|
93
|
+
raise TypeError("Missing 'domain' argument")
|
94
|
+
if type is None:
|
95
|
+
raise TypeError("Missing 'type' argument")
|
96
|
+
if zone is None:
|
97
|
+
raise TypeError("Missing 'zone' argument")
|
98
|
+
if blocked_tags is None and 'blockedTags' in kwargs:
|
99
|
+
blocked_tags = kwargs['blockedTags']
|
100
|
+
if override_ttl is None and 'overrideTtl' in kwargs:
|
101
|
+
override_ttl = kwargs['overrideTtl']
|
102
|
+
if short_answers is None and 'shortAnswers' in kwargs:
|
103
|
+
short_answers = kwargs['shortAnswers']
|
104
|
+
if use_client_subnet is None and 'useClientSubnet' in kwargs:
|
105
|
+
use_client_subnet = kwargs['useClientSubnet']
|
106
|
+
|
91
107
|
_setter("domain", domain)
|
92
108
|
_setter("type", type)
|
93
109
|
_setter("zone", zone)
|
@@ -359,7 +375,17 @@ class _RecordState:
|
|
359
375
|
type: Optional[pulumi.Input[str]] = None,
|
360
376
|
use_client_subnet: Optional[pulumi.Input[bool]] = None,
|
361
377
|
zone: Optional[pulumi.Input[str]] = None,
|
362
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
378
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
379
|
+
**kwargs):
|
380
|
+
if blocked_tags is None and 'blockedTags' in kwargs:
|
381
|
+
blocked_tags = kwargs['blockedTags']
|
382
|
+
if override_ttl is None and 'overrideTtl' in kwargs:
|
383
|
+
override_ttl = kwargs['overrideTtl']
|
384
|
+
if short_answers is None and 'shortAnswers' in kwargs:
|
385
|
+
short_answers = kwargs['shortAnswers']
|
386
|
+
if use_client_subnet is None and 'useClientSubnet' in kwargs:
|
387
|
+
use_client_subnet = kwargs['useClientSubnet']
|
388
|
+
|
363
389
|
if answers is not None:
|
364
390
|
_setter("answers", answers)
|
365
391
|
if blocked_tags is not None:
|
pulumi_ns1/subnet.py
CHANGED
@@ -59,7 +59,21 @@ class SubnetArgs:
|
|
59
59
|
tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
60
60
|
total_addresses: Optional[pulumi.Input[str]] = None,
|
61
61
|
used_addresses: Optional[pulumi.Input[str]] = None,
|
62
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
62
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
63
|
+
**kwargs):
|
64
|
+
if dhcp_scoped is None and 'dhcpScoped' in kwargs:
|
65
|
+
dhcp_scoped = kwargs['dhcpScoped']
|
66
|
+
if free_addresses is None and 'freeAddresses' in kwargs:
|
67
|
+
free_addresses = kwargs['freeAddresses']
|
68
|
+
if network_id is None and 'networkId' in kwargs:
|
69
|
+
network_id = kwargs['networkId']
|
70
|
+
if parent_id is None and 'parentId' in kwargs:
|
71
|
+
parent_id = kwargs['parentId']
|
72
|
+
if total_addresses is None and 'totalAddresses' in kwargs:
|
73
|
+
total_addresses = kwargs['totalAddresses']
|
74
|
+
if used_addresses is None and 'usedAddresses' in kwargs:
|
75
|
+
used_addresses = kwargs['usedAddresses']
|
76
|
+
|
63
77
|
if children is not None:
|
64
78
|
_setter("children", children)
|
65
79
|
if desc is not None:
|
@@ -242,7 +256,21 @@ class _SubnetState:
|
|
242
256
|
tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
243
257
|
total_addresses: Optional[pulumi.Input[str]] = None,
|
244
258
|
used_addresses: Optional[pulumi.Input[str]] = None,
|
245
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
259
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
260
|
+
**kwargs):
|
261
|
+
if dhcp_scoped is None and 'dhcpScoped' in kwargs:
|
262
|
+
dhcp_scoped = kwargs['dhcpScoped']
|
263
|
+
if free_addresses is None and 'freeAddresses' in kwargs:
|
264
|
+
free_addresses = kwargs['freeAddresses']
|
265
|
+
if network_id is None and 'networkId' in kwargs:
|
266
|
+
network_id = kwargs['networkId']
|
267
|
+
if parent_id is None and 'parentId' in kwargs:
|
268
|
+
parent_id = kwargs['parentId']
|
269
|
+
if total_addresses is None and 'totalAddresses' in kwargs:
|
270
|
+
total_addresses = kwargs['totalAddresses']
|
271
|
+
if used_addresses is None and 'usedAddresses' in kwargs:
|
272
|
+
used_addresses = kwargs['usedAddresses']
|
273
|
+
|
246
274
|
if children is not None:
|
247
275
|
_setter("children", children)
|
248
276
|
if desc is not None:
|
pulumi_ns1/team.py
CHANGED
@@ -150,7 +150,67 @@ class TeamArgs:
|
|
150
150
|
name: Optional[pulumi.Input[str]] = None,
|
151
151
|
security_manage_active_directory: Optional[pulumi.Input[bool]] = None,
|
152
152
|
security_manage_global2fa: Optional[pulumi.Input[bool]] = None,
|
153
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
153
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
154
|
+
**kwargs):
|
155
|
+
if account_manage_account_settings is None and 'accountManageAccountSettings' in kwargs:
|
156
|
+
account_manage_account_settings = kwargs['accountManageAccountSettings']
|
157
|
+
if account_manage_apikeys is None and 'accountManageApikeys' in kwargs:
|
158
|
+
account_manage_apikeys = kwargs['accountManageApikeys']
|
159
|
+
if account_manage_ip_whitelist is None and 'accountManageIpWhitelist' in kwargs:
|
160
|
+
account_manage_ip_whitelist = kwargs['accountManageIpWhitelist']
|
161
|
+
if account_manage_payment_methods is None and 'accountManagePaymentMethods' in kwargs:
|
162
|
+
account_manage_payment_methods = kwargs['accountManagePaymentMethods']
|
163
|
+
if account_manage_plan is None and 'accountManagePlan' in kwargs:
|
164
|
+
account_manage_plan = kwargs['accountManagePlan']
|
165
|
+
if account_manage_teams is None and 'accountManageTeams' in kwargs:
|
166
|
+
account_manage_teams = kwargs['accountManageTeams']
|
167
|
+
if account_manage_users is None and 'accountManageUsers' in kwargs:
|
168
|
+
account_manage_users = kwargs['accountManageUsers']
|
169
|
+
if account_view_activity_log is None and 'accountViewActivityLog' in kwargs:
|
170
|
+
account_view_activity_log = kwargs['accountViewActivityLog']
|
171
|
+
if account_view_invoices is None and 'accountViewInvoices' in kwargs:
|
172
|
+
account_view_invoices = kwargs['accountViewInvoices']
|
173
|
+
if data_manage_datafeeds is None and 'dataManageDatafeeds' in kwargs:
|
174
|
+
data_manage_datafeeds = kwargs['dataManageDatafeeds']
|
175
|
+
if data_manage_datasources is None and 'dataManageDatasources' in kwargs:
|
176
|
+
data_manage_datasources = kwargs['dataManageDatasources']
|
177
|
+
if data_push_to_datafeeds is None and 'dataPushToDatafeeds' in kwargs:
|
178
|
+
data_push_to_datafeeds = kwargs['dataPushToDatafeeds']
|
179
|
+
if dhcp_manage_dhcp is None and 'dhcpManageDhcp' in kwargs:
|
180
|
+
dhcp_manage_dhcp = kwargs['dhcpManageDhcp']
|
181
|
+
if dhcp_view_dhcp is None and 'dhcpViewDhcp' in kwargs:
|
182
|
+
dhcp_view_dhcp = kwargs['dhcpViewDhcp']
|
183
|
+
if dns_manage_zones is None and 'dnsManageZones' in kwargs:
|
184
|
+
dns_manage_zones = kwargs['dnsManageZones']
|
185
|
+
if dns_records_allows is None and 'dnsRecordsAllows' in kwargs:
|
186
|
+
dns_records_allows = kwargs['dnsRecordsAllows']
|
187
|
+
if dns_records_denies is None and 'dnsRecordsDenies' in kwargs:
|
188
|
+
dns_records_denies = kwargs['dnsRecordsDenies']
|
189
|
+
if dns_view_zones is None and 'dnsViewZones' in kwargs:
|
190
|
+
dns_view_zones = kwargs['dnsViewZones']
|
191
|
+
if dns_zones_allow_by_default is None and 'dnsZonesAllowByDefault' in kwargs:
|
192
|
+
dns_zones_allow_by_default = kwargs['dnsZonesAllowByDefault']
|
193
|
+
if dns_zones_allows is None and 'dnsZonesAllows' in kwargs:
|
194
|
+
dns_zones_allows = kwargs['dnsZonesAllows']
|
195
|
+
if dns_zones_denies is None and 'dnsZonesDenies' in kwargs:
|
196
|
+
dns_zones_denies = kwargs['dnsZonesDenies']
|
197
|
+
if ip_whitelists is None and 'ipWhitelists' in kwargs:
|
198
|
+
ip_whitelists = kwargs['ipWhitelists']
|
199
|
+
if ipam_manage_ipam is None and 'ipamManageIpam' in kwargs:
|
200
|
+
ipam_manage_ipam = kwargs['ipamManageIpam']
|
201
|
+
if ipam_view_ipam is None and 'ipamViewIpam' in kwargs:
|
202
|
+
ipam_view_ipam = kwargs['ipamViewIpam']
|
203
|
+
if monitoring_manage_jobs is None and 'monitoringManageJobs' in kwargs:
|
204
|
+
monitoring_manage_jobs = kwargs['monitoringManageJobs']
|
205
|
+
if monitoring_manage_lists is None and 'monitoringManageLists' in kwargs:
|
206
|
+
monitoring_manage_lists = kwargs['monitoringManageLists']
|
207
|
+
if monitoring_view_jobs is None and 'monitoringViewJobs' in kwargs:
|
208
|
+
monitoring_view_jobs = kwargs['monitoringViewJobs']
|
209
|
+
if security_manage_active_directory is None and 'securityManageActiveDirectory' in kwargs:
|
210
|
+
security_manage_active_directory = kwargs['securityManageActiveDirectory']
|
211
|
+
if security_manage_global2fa is None and 'securityManageGlobal2fa' in kwargs:
|
212
|
+
security_manage_global2fa = kwargs['securityManageGlobal2fa']
|
213
|
+
|
154
214
|
if account_manage_account_settings is not None:
|
155
215
|
_setter("account_manage_account_settings", account_manage_account_settings)
|
156
216
|
if account_manage_apikeys is not None:
|
@@ -721,7 +781,67 @@ class _TeamState:
|
|
721
781
|
name: Optional[pulumi.Input[str]] = None,
|
722
782
|
security_manage_active_directory: Optional[pulumi.Input[bool]] = None,
|
723
783
|
security_manage_global2fa: Optional[pulumi.Input[bool]] = None,
|
724
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
784
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
785
|
+
**kwargs):
|
786
|
+
if account_manage_account_settings is None and 'accountManageAccountSettings' in kwargs:
|
787
|
+
account_manage_account_settings = kwargs['accountManageAccountSettings']
|
788
|
+
if account_manage_apikeys is None and 'accountManageApikeys' in kwargs:
|
789
|
+
account_manage_apikeys = kwargs['accountManageApikeys']
|
790
|
+
if account_manage_ip_whitelist is None and 'accountManageIpWhitelist' in kwargs:
|
791
|
+
account_manage_ip_whitelist = kwargs['accountManageIpWhitelist']
|
792
|
+
if account_manage_payment_methods is None and 'accountManagePaymentMethods' in kwargs:
|
793
|
+
account_manage_payment_methods = kwargs['accountManagePaymentMethods']
|
794
|
+
if account_manage_plan is None and 'accountManagePlan' in kwargs:
|
795
|
+
account_manage_plan = kwargs['accountManagePlan']
|
796
|
+
if account_manage_teams is None and 'accountManageTeams' in kwargs:
|
797
|
+
account_manage_teams = kwargs['accountManageTeams']
|
798
|
+
if account_manage_users is None and 'accountManageUsers' in kwargs:
|
799
|
+
account_manage_users = kwargs['accountManageUsers']
|
800
|
+
if account_view_activity_log is None and 'accountViewActivityLog' in kwargs:
|
801
|
+
account_view_activity_log = kwargs['accountViewActivityLog']
|
802
|
+
if account_view_invoices is None and 'accountViewInvoices' in kwargs:
|
803
|
+
account_view_invoices = kwargs['accountViewInvoices']
|
804
|
+
if data_manage_datafeeds is None and 'dataManageDatafeeds' in kwargs:
|
805
|
+
data_manage_datafeeds = kwargs['dataManageDatafeeds']
|
806
|
+
if data_manage_datasources is None and 'dataManageDatasources' in kwargs:
|
807
|
+
data_manage_datasources = kwargs['dataManageDatasources']
|
808
|
+
if data_push_to_datafeeds is None and 'dataPushToDatafeeds' in kwargs:
|
809
|
+
data_push_to_datafeeds = kwargs['dataPushToDatafeeds']
|
810
|
+
if dhcp_manage_dhcp is None and 'dhcpManageDhcp' in kwargs:
|
811
|
+
dhcp_manage_dhcp = kwargs['dhcpManageDhcp']
|
812
|
+
if dhcp_view_dhcp is None and 'dhcpViewDhcp' in kwargs:
|
813
|
+
dhcp_view_dhcp = kwargs['dhcpViewDhcp']
|
814
|
+
if dns_manage_zones is None and 'dnsManageZones' in kwargs:
|
815
|
+
dns_manage_zones = kwargs['dnsManageZones']
|
816
|
+
if dns_records_allows is None and 'dnsRecordsAllows' in kwargs:
|
817
|
+
dns_records_allows = kwargs['dnsRecordsAllows']
|
818
|
+
if dns_records_denies is None and 'dnsRecordsDenies' in kwargs:
|
819
|
+
dns_records_denies = kwargs['dnsRecordsDenies']
|
820
|
+
if dns_view_zones is None and 'dnsViewZones' in kwargs:
|
821
|
+
dns_view_zones = kwargs['dnsViewZones']
|
822
|
+
if dns_zones_allow_by_default is None and 'dnsZonesAllowByDefault' in kwargs:
|
823
|
+
dns_zones_allow_by_default = kwargs['dnsZonesAllowByDefault']
|
824
|
+
if dns_zones_allows is None and 'dnsZonesAllows' in kwargs:
|
825
|
+
dns_zones_allows = kwargs['dnsZonesAllows']
|
826
|
+
if dns_zones_denies is None and 'dnsZonesDenies' in kwargs:
|
827
|
+
dns_zones_denies = kwargs['dnsZonesDenies']
|
828
|
+
if ip_whitelists is None and 'ipWhitelists' in kwargs:
|
829
|
+
ip_whitelists = kwargs['ipWhitelists']
|
830
|
+
if ipam_manage_ipam is None and 'ipamManageIpam' in kwargs:
|
831
|
+
ipam_manage_ipam = kwargs['ipamManageIpam']
|
832
|
+
if ipam_view_ipam is None and 'ipamViewIpam' in kwargs:
|
833
|
+
ipam_view_ipam = kwargs['ipamViewIpam']
|
834
|
+
if monitoring_manage_jobs is None and 'monitoringManageJobs' in kwargs:
|
835
|
+
monitoring_manage_jobs = kwargs['monitoringManageJobs']
|
836
|
+
if monitoring_manage_lists is None and 'monitoringManageLists' in kwargs:
|
837
|
+
monitoring_manage_lists = kwargs['monitoringManageLists']
|
838
|
+
if monitoring_view_jobs is None and 'monitoringViewJobs' in kwargs:
|
839
|
+
monitoring_view_jobs = kwargs['monitoringViewJobs']
|
840
|
+
if security_manage_active_directory is None and 'securityManageActiveDirectory' in kwargs:
|
841
|
+
security_manage_active_directory = kwargs['securityManageActiveDirectory']
|
842
|
+
if security_manage_global2fa is None and 'securityManageGlobal2fa' in kwargs:
|
843
|
+
security_manage_global2fa = kwargs['securityManageGlobal2fa']
|
844
|
+
|
725
845
|
if account_manage_account_settings is not None:
|
726
846
|
_setter("account_manage_account_settings", account_manage_account_settings)
|
727
847
|
if account_manage_apikeys is not None:
|
pulumi_ns1/tsigkey.py
CHANGED
@@ -32,10 +32,16 @@ class TsigkeyArgs:
|
|
32
32
|
@staticmethod
|
33
33
|
def _configure(
|
34
34
|
_setter: Callable[[Any, Any], None],
|
35
|
-
algorithm: pulumi.Input[str],
|
36
|
-
secret: pulumi.Input[str],
|
35
|
+
algorithm: Optional[pulumi.Input[str]] = None,
|
36
|
+
secret: Optional[pulumi.Input[str]] = None,
|
37
37
|
name: Optional[pulumi.Input[str]] = None,
|
38
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
38
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
39
|
+
**kwargs):
|
40
|
+
if algorithm is None:
|
41
|
+
raise TypeError("Missing 'algorithm' argument")
|
42
|
+
if secret is None:
|
43
|
+
raise TypeError("Missing 'secret' argument")
|
44
|
+
|
39
45
|
_setter("algorithm", algorithm)
|
40
46
|
_setter("secret", secret)
|
41
47
|
if name is not None:
|
@@ -102,7 +108,9 @@ class _TsigkeyState:
|
|
102
108
|
algorithm: Optional[pulumi.Input[str]] = None,
|
103
109
|
name: Optional[pulumi.Input[str]] = None,
|
104
110
|
secret: Optional[pulumi.Input[str]] = None,
|
105
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
111
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
112
|
+
**kwargs):
|
113
|
+
|
106
114
|
if algorithm is not None:
|
107
115
|
_setter("algorithm", algorithm)
|
108
116
|
if name is not None:
|
pulumi_ns1/user.py
CHANGED
@@ -131,8 +131,8 @@ class UserArgs:
|
|
131
131
|
@staticmethod
|
132
132
|
def _configure(
|
133
133
|
_setter: Callable[[Any, Any], None],
|
134
|
-
email: pulumi.Input[str],
|
135
|
-
username: pulumi.Input[str],
|
134
|
+
email: Optional[pulumi.Input[str]] = None,
|
135
|
+
username: Optional[pulumi.Input[str]] = None,
|
136
136
|
account_manage_account_settings: Optional[pulumi.Input[bool]] = None,
|
137
137
|
account_manage_apikeys: Optional[pulumi.Input[bool]] = None,
|
138
138
|
account_manage_ip_whitelist: Optional[pulumi.Input[bool]] = None,
|
@@ -166,7 +166,73 @@ class UserArgs:
|
|
166
166
|
security_manage_active_directory: Optional[pulumi.Input[bool]] = None,
|
167
167
|
security_manage_global2fa: Optional[pulumi.Input[bool]] = None,
|
168
168
|
teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
169
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
169
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
170
|
+
**kwargs):
|
171
|
+
if email is None:
|
172
|
+
raise TypeError("Missing 'email' argument")
|
173
|
+
if username is None:
|
174
|
+
raise TypeError("Missing 'username' argument")
|
175
|
+
if account_manage_account_settings is None and 'accountManageAccountSettings' in kwargs:
|
176
|
+
account_manage_account_settings = kwargs['accountManageAccountSettings']
|
177
|
+
if account_manage_apikeys is None and 'accountManageApikeys' in kwargs:
|
178
|
+
account_manage_apikeys = kwargs['accountManageApikeys']
|
179
|
+
if account_manage_ip_whitelist is None and 'accountManageIpWhitelist' in kwargs:
|
180
|
+
account_manage_ip_whitelist = kwargs['accountManageIpWhitelist']
|
181
|
+
if account_manage_payment_methods is None and 'accountManagePaymentMethods' in kwargs:
|
182
|
+
account_manage_payment_methods = kwargs['accountManagePaymentMethods']
|
183
|
+
if account_manage_plan is None and 'accountManagePlan' in kwargs:
|
184
|
+
account_manage_plan = kwargs['accountManagePlan']
|
185
|
+
if account_manage_teams is None and 'accountManageTeams' in kwargs:
|
186
|
+
account_manage_teams = kwargs['accountManageTeams']
|
187
|
+
if account_manage_users is None and 'accountManageUsers' in kwargs:
|
188
|
+
account_manage_users = kwargs['accountManageUsers']
|
189
|
+
if account_view_activity_log is None and 'accountViewActivityLog' in kwargs:
|
190
|
+
account_view_activity_log = kwargs['accountViewActivityLog']
|
191
|
+
if account_view_invoices is None and 'accountViewInvoices' in kwargs:
|
192
|
+
account_view_invoices = kwargs['accountViewInvoices']
|
193
|
+
if data_manage_datafeeds is None and 'dataManageDatafeeds' in kwargs:
|
194
|
+
data_manage_datafeeds = kwargs['dataManageDatafeeds']
|
195
|
+
if data_manage_datasources is None and 'dataManageDatasources' in kwargs:
|
196
|
+
data_manage_datasources = kwargs['dataManageDatasources']
|
197
|
+
if data_push_to_datafeeds is None and 'dataPushToDatafeeds' in kwargs:
|
198
|
+
data_push_to_datafeeds = kwargs['dataPushToDatafeeds']
|
199
|
+
if dhcp_manage_dhcp is None and 'dhcpManageDhcp' in kwargs:
|
200
|
+
dhcp_manage_dhcp = kwargs['dhcpManageDhcp']
|
201
|
+
if dhcp_view_dhcp is None and 'dhcpViewDhcp' in kwargs:
|
202
|
+
dhcp_view_dhcp = kwargs['dhcpViewDhcp']
|
203
|
+
if dns_manage_zones is None and 'dnsManageZones' in kwargs:
|
204
|
+
dns_manage_zones = kwargs['dnsManageZones']
|
205
|
+
if dns_records_allows is None and 'dnsRecordsAllows' in kwargs:
|
206
|
+
dns_records_allows = kwargs['dnsRecordsAllows']
|
207
|
+
if dns_records_denies is None and 'dnsRecordsDenies' in kwargs:
|
208
|
+
dns_records_denies = kwargs['dnsRecordsDenies']
|
209
|
+
if dns_view_zones is None and 'dnsViewZones' in kwargs:
|
210
|
+
dns_view_zones = kwargs['dnsViewZones']
|
211
|
+
if dns_zones_allow_by_default is None and 'dnsZonesAllowByDefault' in kwargs:
|
212
|
+
dns_zones_allow_by_default = kwargs['dnsZonesAllowByDefault']
|
213
|
+
if dns_zones_allows is None and 'dnsZonesAllows' in kwargs:
|
214
|
+
dns_zones_allows = kwargs['dnsZonesAllows']
|
215
|
+
if dns_zones_denies is None and 'dnsZonesDenies' in kwargs:
|
216
|
+
dns_zones_denies = kwargs['dnsZonesDenies']
|
217
|
+
if ip_whitelist_strict is None and 'ipWhitelistStrict' in kwargs:
|
218
|
+
ip_whitelist_strict = kwargs['ipWhitelistStrict']
|
219
|
+
if ip_whitelists is None and 'ipWhitelists' in kwargs:
|
220
|
+
ip_whitelists = kwargs['ipWhitelists']
|
221
|
+
if ipam_manage_ipam is None and 'ipamManageIpam' in kwargs:
|
222
|
+
ipam_manage_ipam = kwargs['ipamManageIpam']
|
223
|
+
if ipam_view_ipam is None and 'ipamViewIpam' in kwargs:
|
224
|
+
ipam_view_ipam = kwargs['ipamViewIpam']
|
225
|
+
if monitoring_manage_jobs is None and 'monitoringManageJobs' in kwargs:
|
226
|
+
monitoring_manage_jobs = kwargs['monitoringManageJobs']
|
227
|
+
if monitoring_manage_lists is None and 'monitoringManageLists' in kwargs:
|
228
|
+
monitoring_manage_lists = kwargs['monitoringManageLists']
|
229
|
+
if monitoring_view_jobs is None and 'monitoringViewJobs' in kwargs:
|
230
|
+
monitoring_view_jobs = kwargs['monitoringViewJobs']
|
231
|
+
if security_manage_active_directory is None and 'securityManageActiveDirectory' in kwargs:
|
232
|
+
security_manage_active_directory = kwargs['securityManageActiveDirectory']
|
233
|
+
if security_manage_global2fa is None and 'securityManageGlobal2fa' in kwargs:
|
234
|
+
security_manage_global2fa = kwargs['securityManageGlobal2fa']
|
235
|
+
|
170
236
|
_setter("email", email)
|
171
237
|
_setter("username", username)
|
172
238
|
if account_manage_account_settings is not None:
|
@@ -811,7 +877,69 @@ class _UserState:
|
|
811
877
|
security_manage_global2fa: Optional[pulumi.Input[bool]] = None,
|
812
878
|
teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
813
879
|
username: Optional[pulumi.Input[str]] = None,
|
814
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
880
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
881
|
+
**kwargs):
|
882
|
+
if account_manage_account_settings is None and 'accountManageAccountSettings' in kwargs:
|
883
|
+
account_manage_account_settings = kwargs['accountManageAccountSettings']
|
884
|
+
if account_manage_apikeys is None and 'accountManageApikeys' in kwargs:
|
885
|
+
account_manage_apikeys = kwargs['accountManageApikeys']
|
886
|
+
if account_manage_ip_whitelist is None and 'accountManageIpWhitelist' in kwargs:
|
887
|
+
account_manage_ip_whitelist = kwargs['accountManageIpWhitelist']
|
888
|
+
if account_manage_payment_methods is None and 'accountManagePaymentMethods' in kwargs:
|
889
|
+
account_manage_payment_methods = kwargs['accountManagePaymentMethods']
|
890
|
+
if account_manage_plan is None and 'accountManagePlan' in kwargs:
|
891
|
+
account_manage_plan = kwargs['accountManagePlan']
|
892
|
+
if account_manage_teams is None and 'accountManageTeams' in kwargs:
|
893
|
+
account_manage_teams = kwargs['accountManageTeams']
|
894
|
+
if account_manage_users is None and 'accountManageUsers' in kwargs:
|
895
|
+
account_manage_users = kwargs['accountManageUsers']
|
896
|
+
if account_view_activity_log is None and 'accountViewActivityLog' in kwargs:
|
897
|
+
account_view_activity_log = kwargs['accountViewActivityLog']
|
898
|
+
if account_view_invoices is None and 'accountViewInvoices' in kwargs:
|
899
|
+
account_view_invoices = kwargs['accountViewInvoices']
|
900
|
+
if data_manage_datafeeds is None and 'dataManageDatafeeds' in kwargs:
|
901
|
+
data_manage_datafeeds = kwargs['dataManageDatafeeds']
|
902
|
+
if data_manage_datasources is None and 'dataManageDatasources' in kwargs:
|
903
|
+
data_manage_datasources = kwargs['dataManageDatasources']
|
904
|
+
if data_push_to_datafeeds is None and 'dataPushToDatafeeds' in kwargs:
|
905
|
+
data_push_to_datafeeds = kwargs['dataPushToDatafeeds']
|
906
|
+
if dhcp_manage_dhcp is None and 'dhcpManageDhcp' in kwargs:
|
907
|
+
dhcp_manage_dhcp = kwargs['dhcpManageDhcp']
|
908
|
+
if dhcp_view_dhcp is None and 'dhcpViewDhcp' in kwargs:
|
909
|
+
dhcp_view_dhcp = kwargs['dhcpViewDhcp']
|
910
|
+
if dns_manage_zones is None and 'dnsManageZones' in kwargs:
|
911
|
+
dns_manage_zones = kwargs['dnsManageZones']
|
912
|
+
if dns_records_allows is None and 'dnsRecordsAllows' in kwargs:
|
913
|
+
dns_records_allows = kwargs['dnsRecordsAllows']
|
914
|
+
if dns_records_denies is None and 'dnsRecordsDenies' in kwargs:
|
915
|
+
dns_records_denies = kwargs['dnsRecordsDenies']
|
916
|
+
if dns_view_zones is None and 'dnsViewZones' in kwargs:
|
917
|
+
dns_view_zones = kwargs['dnsViewZones']
|
918
|
+
if dns_zones_allow_by_default is None and 'dnsZonesAllowByDefault' in kwargs:
|
919
|
+
dns_zones_allow_by_default = kwargs['dnsZonesAllowByDefault']
|
920
|
+
if dns_zones_allows is None and 'dnsZonesAllows' in kwargs:
|
921
|
+
dns_zones_allows = kwargs['dnsZonesAllows']
|
922
|
+
if dns_zones_denies is None and 'dnsZonesDenies' in kwargs:
|
923
|
+
dns_zones_denies = kwargs['dnsZonesDenies']
|
924
|
+
if ip_whitelist_strict is None and 'ipWhitelistStrict' in kwargs:
|
925
|
+
ip_whitelist_strict = kwargs['ipWhitelistStrict']
|
926
|
+
if ip_whitelists is None and 'ipWhitelists' in kwargs:
|
927
|
+
ip_whitelists = kwargs['ipWhitelists']
|
928
|
+
if ipam_manage_ipam is None and 'ipamManageIpam' in kwargs:
|
929
|
+
ipam_manage_ipam = kwargs['ipamManageIpam']
|
930
|
+
if ipam_view_ipam is None and 'ipamViewIpam' in kwargs:
|
931
|
+
ipam_view_ipam = kwargs['ipamViewIpam']
|
932
|
+
if monitoring_manage_jobs is None and 'monitoringManageJobs' in kwargs:
|
933
|
+
monitoring_manage_jobs = kwargs['monitoringManageJobs']
|
934
|
+
if monitoring_manage_lists is None and 'monitoringManageLists' in kwargs:
|
935
|
+
monitoring_manage_lists = kwargs['monitoringManageLists']
|
936
|
+
if monitoring_view_jobs is None and 'monitoringViewJobs' in kwargs:
|
937
|
+
monitoring_view_jobs = kwargs['monitoringViewJobs']
|
938
|
+
if security_manage_active_directory is None and 'securityManageActiveDirectory' in kwargs:
|
939
|
+
security_manage_active_directory = kwargs['securityManageActiveDirectory']
|
940
|
+
if security_manage_global2fa is None and 'securityManageGlobal2fa' in kwargs:
|
941
|
+
security_manage_global2fa = kwargs['securityManageGlobal2fa']
|
942
|
+
|
815
943
|
if account_manage_account_settings is not None:
|
816
944
|
_setter("account_manage_account_settings", account_manage_account_settings)
|
817
945
|
if account_manage_apikeys is not None:
|
pulumi_ns1/zone.py
CHANGED
@@ -87,7 +87,7 @@ class ZoneArgs:
|
|
87
87
|
@staticmethod
|
88
88
|
def _configure(
|
89
89
|
_setter: Callable[[Any, Any], None],
|
90
|
-
zone: pulumi.Input[str],
|
90
|
+
zone: Optional[pulumi.Input[str]] = None,
|
91
91
|
additional_ports: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
92
92
|
additional_primaries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
93
93
|
autogenerate_ns_record: Optional[pulumi.Input[bool]] = None,
|
@@ -105,7 +105,21 @@ class ZoneArgs:
|
|
105
105
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
106
106
|
tsig: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
107
107
|
ttl: Optional[pulumi.Input[int]] = None,
|
108
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
108
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
109
|
+
**kwargs):
|
110
|
+
if zone is None:
|
111
|
+
raise TypeError("Missing 'zone' argument")
|
112
|
+
if additional_ports is None and 'additionalPorts' in kwargs:
|
113
|
+
additional_ports = kwargs['additionalPorts']
|
114
|
+
if additional_primaries is None and 'additionalPrimaries' in kwargs:
|
115
|
+
additional_primaries = kwargs['additionalPrimaries']
|
116
|
+
if autogenerate_ns_record is None and 'autogenerateNsRecord' in kwargs:
|
117
|
+
autogenerate_ns_record = kwargs['autogenerateNsRecord']
|
118
|
+
if nx_ttl is None and 'nxTtl' in kwargs:
|
119
|
+
nx_ttl = kwargs['nxTtl']
|
120
|
+
if primary_port is None and 'primaryPort' in kwargs:
|
121
|
+
primary_port = kwargs['primaryPort']
|
122
|
+
|
109
123
|
_setter("zone", zone)
|
110
124
|
if additional_ports is not None:
|
111
125
|
_setter("additional_ports", additional_ports)
|
@@ -455,7 +469,21 @@ class _ZoneState:
|
|
455
469
|
tsig: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
456
470
|
ttl: Optional[pulumi.Input[int]] = None,
|
457
471
|
zone: Optional[pulumi.Input[str]] = None,
|
458
|
-
opts: Optional[pulumi.ResourceOptions]=None
|
472
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
473
|
+
**kwargs):
|
474
|
+
if additional_ports is None and 'additionalPorts' in kwargs:
|
475
|
+
additional_ports = kwargs['additionalPorts']
|
476
|
+
if additional_primaries is None and 'additionalPrimaries' in kwargs:
|
477
|
+
additional_primaries = kwargs['additionalPrimaries']
|
478
|
+
if autogenerate_ns_record is None and 'autogenerateNsRecord' in kwargs:
|
479
|
+
autogenerate_ns_record = kwargs['autogenerateNsRecord']
|
480
|
+
if dns_servers is None and 'dnsServers' in kwargs:
|
481
|
+
dns_servers = kwargs['dnsServers']
|
482
|
+
if nx_ttl is None and 'nxTtl' in kwargs:
|
483
|
+
nx_ttl = kwargs['nxTtl']
|
484
|
+
if primary_port is None and 'primaryPort' in kwargs:
|
485
|
+
primary_port = kwargs['primaryPort']
|
486
|
+
|
459
487
|
if additional_ports is not None:
|
460
488
|
_setter("additional_ports", additional_ports)
|
461
489
|
if additional_primaries is not None:
|
@@ -0,0 +1,32 @@
|
|
1
|
+
pulumi_ns1/__init__.py,sha256=8lpy_p-jVCOp2UOPbcTMwi58R1KEpXU-oZWj8L1LEdY,3244
|
2
|
+
pulumi_ns1/_inputs.py,sha256=W8v8BctBMjaumBkJtRcQAvVyxugPgyYjrMkouTfN3cQ,46398
|
3
|
+
pulumi_ns1/_utilities.py,sha256=gEJgwmfYYqdEGeUJsGQtt67DByZiBW4wytye4oezFWY,8705
|
4
|
+
pulumi_ns1/account_whitelist.py,sha256=WLa_C6GEkYrAAFhZ3p2Rbe1cH1E9DkzRYTfs6qVlKqM,10094
|
5
|
+
pulumi_ns1/api_key.py,sha256=4nH6RXvI8_Im0-w-e8a3Ri1LontSijfWR0FKfKK65tg,104106
|
6
|
+
pulumi_ns1/application.py,sha256=Qlp9dM2qw5s7fM0nEcEba7004xvoGewG7ao8pk-mOlo,20314
|
7
|
+
pulumi_ns1/data_feed.py,sha256=WDyVElvT9COkMUg9qOVyPKoEkyI5ZMVibjrzHwPwo2Q,13806
|
8
|
+
pulumi_ns1/data_source.py,sha256=yZIyatXUE0gAJYzUgzh7O9Ic3tHLSfgq39Izu7S7Kpk,12322
|
9
|
+
pulumi_ns1/dnsview.py,sha256=TW0TOQJPJ-pyrpOod3f5qe-IJk5uXINc7wFKUaswirI,16245
|
10
|
+
pulumi_ns1/get_dns_sec.py,sha256=85-0aHUyb6eM9_Pcp4FiYp_N3lajU8bLFNxg0khIiAE,4101
|
11
|
+
pulumi_ns1/get_networks.py,sha256=H5F3leftZNkabR4qHrPua0pyBSYxN0TifuEzHc8yef4,2966
|
12
|
+
pulumi_ns1/get_record.py,sha256=as_n_pw6QGyhh7URpQPTuNjd7ir4JvrHfgMtH0UzsoM,8817
|
13
|
+
pulumi_ns1/get_zone.py,sha256=VQemi8A161c6aw29jdtrRPghOCKhXxSL8eWzjWQqVKA,11258
|
14
|
+
pulumi_ns1/monitoring_job.py,sha256=ltpAPR4mVcAE9Am2mpo0SVJxPXYPe0KXZ_B-K4pEXBA,51067
|
15
|
+
pulumi_ns1/notify_list.py,sha256=Z9WJeJaNrZohSZ367LKhoUyI4SqJXV258Xu83ghs0-c,12025
|
16
|
+
pulumi_ns1/outputs.py,sha256=A3EeWUByA4qzy7YfbUFeogDsdYYjXX83_SvxkYX00eI,61402
|
17
|
+
pulumi_ns1/provider.py,sha256=R_9FSVcyis-mrowxGLQvw4qZ5v6IsqkM5v8r3V8eNv0,12193
|
18
|
+
pulumi_ns1/pulsar_job.py,sha256=-kUJ8BhmHcK8xAx2vp6kA9wncgww7H7ucIBEYEWOObc,20504
|
19
|
+
pulumi_ns1/pulumi-plugin.json,sha256=U1IwjH61SXsxMo8_PRJwqdmvSF-6MsDFM_LRS0M9Pow,40
|
20
|
+
pulumi_ns1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
+
pulumi_ns1/record.py,sha256=CB84LCadXd3kOKJoNm9D6Cp0T08UdZhhyjdv4YGyd6U,41295
|
22
|
+
pulumi_ns1/subnet.py,sha256=MOVz_MdCmru1EWt0Pzs5EOpmQtE8AHL8byLcpbnJCiQ,23229
|
23
|
+
pulumi_ns1/team.py,sha256=HV3CbPQPd4hCZ1MREtsW9TVniL9-IRCt2Nczi1j5VIY,97772
|
24
|
+
pulumi_ns1/tsigkey.py,sha256=lddHSP3-vs8_s1ljQ8H1atn7HsPchs-vMh7gr-H-bsM,11309
|
25
|
+
pulumi_ns1/user.py,sha256=cN3HluOL448oiHnMPBlYcv16rdHNnRssSP4EzXL_oX0,106600
|
26
|
+
pulumi_ns1/zone.py,sha256=Oo2EsxpxSk2OmbrL7O7Eg6Lt6LCIE7dDyOSpz0zDbCE,48254
|
27
|
+
pulumi_ns1/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
28
|
+
pulumi_ns1/config/vars.py,sha256=jUHXTUgyrU_kiOzQNvb7QrLkhkhK9ZBln9SPGKN2Kms,1684
|
29
|
+
pulumi_ns1-3.2.0a1698202392.dist-info/METADATA,sha256=YcbSS-XiiyZg7YBSwpIthkOXhGXH59TQNVlqQQMLa5I,3047
|
30
|
+
pulumi_ns1-3.2.0a1698202392.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
31
|
+
pulumi_ns1-3.2.0a1698202392.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
|
32
|
+
pulumi_ns1-3.2.0a1698202392.dist-info/RECORD,,
|
@@ -1,32 +0,0 @@
|
|
1
|
-
pulumi_ns1/__init__.py,sha256=8lpy_p-jVCOp2UOPbcTMwi58R1KEpXU-oZWj8L1LEdY,3244
|
2
|
-
pulumi_ns1/_inputs.py,sha256=NZJqAvtTC7YvV-wYRUkzwO6-x_2SSX6EeOqKkC_Zf7I,39949
|
3
|
-
pulumi_ns1/_utilities.py,sha256=fRvpCIKutW049SlpPUAoouFyjnSSk1J-OY0b8SDzJaE,8081
|
4
|
-
pulumi_ns1/account_whitelist.py,sha256=YTgs-LWi-RK72b3fA0GRyF0Pk77bvh6P8y1n6Kl91Ow,9941
|
5
|
-
pulumi_ns1/api_key.py,sha256=mDdFEb81Uclj1eHQ5NL23qgHNQWwFBnysnsT-SVmzkA,95530
|
6
|
-
pulumi_ns1/application.py,sha256=tbgG_V6dFTzt4vVzPLF2ZRRgCHQw7LAAoECPxHzGvq4,19706
|
7
|
-
pulumi_ns1/data_feed.py,sha256=mEmfHcXgr8LBFivJqj8fgpizS02ByAdWCOWNQ2BnAhk,13451
|
8
|
-
pulumi_ns1/data_source.py,sha256=X1ei4jtlFciRp7KnPRHFDCY_5SYBvGquaJ119pFe_zo,12161
|
9
|
-
pulumi_ns1/dnsview.py,sha256=gmlrOxXiVbGohcrl-Ub5cif2qym0QuB-NUqfoeWjk8s,15581
|
10
|
-
pulumi_ns1/get_dns_sec.py,sha256=85-0aHUyb6eM9_Pcp4FiYp_N3lajU8bLFNxg0khIiAE,4101
|
11
|
-
pulumi_ns1/get_networks.py,sha256=H5F3leftZNkabR4qHrPua0pyBSYxN0TifuEzHc8yef4,2966
|
12
|
-
pulumi_ns1/get_record.py,sha256=as_n_pw6QGyhh7URpQPTuNjd7ir4JvrHfgMtH0UzsoM,8817
|
13
|
-
pulumi_ns1/get_zone.py,sha256=VQemi8A161c6aw29jdtrRPghOCKhXxSL8eWzjWQqVKA,11258
|
14
|
-
pulumi_ns1/monitoring_job.py,sha256=RiY64tKlgo1dF_JzF1rQJQra1tyX3pBBfSjxmkNb9ec,49035
|
15
|
-
pulumi_ns1/notify_list.py,sha256=09KG1DJQoN6TwJ0cVmEsYxQWceFq8-Hf7U3vkyHD-pk,11973
|
16
|
-
pulumi_ns1/outputs.py,sha256=_ev-bvI0pmrLzvylqNj_4SRoM4Q1QBEkttqEqFO_VGY,51035
|
17
|
-
pulumi_ns1/provider.py,sha256=TfwHkiyEPsHJV1Q-BJnNRi2nXqRj4MQ4zszWOOnPTrM,11615
|
18
|
-
pulumi_ns1/pulsar_job.py,sha256=jcb1JakNWOKHCPc3dP8EvJDeKpnbmw1Yif5Jvoq6kCY,19980
|
19
|
-
pulumi_ns1/pulumi-plugin.json,sha256=U1IwjH61SXsxMo8_PRJwqdmvSF-6MsDFM_LRS0M9Pow,40
|
20
|
-
pulumi_ns1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
-
pulumi_ns1/record.py,sha256=XKMz7ff37qe1MQJGCQaoXSgnX3OUd2-VhA9ksuUwtHg,40024
|
22
|
-
pulumi_ns1/subnet.py,sha256=vbi8066TyqN7sghvs88dqScB7zm9oTumhqwdwr95EPc,21849
|
23
|
-
pulumi_ns1/team.py,sha256=Z1V9HLgiaieJY8Eq4u-Dhbtl7Zv3VB5jUETsGvYmNpw,89468
|
24
|
-
pulumi_ns1/tsigkey.py,sha256=kUAO9UgnFLVbbeRSWQS8l7FalzuKMTNGiTz7uVU1MFU,11049
|
25
|
-
pulumi_ns1/user.py,sha256=SNA8o3CBL1-q1fQILOfxxwYlLYHQ9_g-q5vH_tjCmnY,97820
|
26
|
-
pulumi_ns1/zone.py,sha256=n1ZGBHpWwDWaLEnvEYqVOGCf0LD6zWD0pr1DOToB6s8,46775
|
27
|
-
pulumi_ns1/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
28
|
-
pulumi_ns1/config/vars.py,sha256=jUHXTUgyrU_kiOzQNvb7QrLkhkhK9ZBln9SPGKN2Kms,1684
|
29
|
-
pulumi_ns1-3.2.0a1698127169.dist-info/METADATA,sha256=46JGa4cBgQsrxxsEK_w9Zovc-08KWrou0GKGqA9Pa0w,3047
|
30
|
-
pulumi_ns1-3.2.0a1698127169.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
31
|
-
pulumi_ns1-3.2.0a1698127169.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
|
32
|
-
pulumi_ns1-3.2.0a1698127169.dist-info/RECORD,,
|
File without changes
|
{pulumi_ns1-3.2.0a1698127169.dist-info → pulumi_ns1-3.2.0a1698202392.dist-info}/top_level.txt
RENAMED
File without changes
|