pulumi-ns1 3.6.3__py3-none-any.whl → 3.6.4a1750217711__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 CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/_inputs.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/_utilities.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
 
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -96,10 +96,8 @@ class _AccountWhitelistState:
96
96
  pulumi.set(self, "values", value)
97
97
 
98
98
 
99
+ @pulumi.type_token("ns1:index/accountWhitelist:AccountWhitelist")
99
100
  class AccountWhitelist(pulumi.CustomResource):
100
-
101
- pulumi_type = "ns1:index/accountWhitelist:AccountWhitelist"
102
-
103
101
  @overload
104
102
  def __init__(__self__,
105
103
  resource_name: str,
pulumi_ns1/alert.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -287,10 +287,8 @@ class _AlertState:
287
287
  pulumi.set(self, "zone_names", value)
288
288
 
289
289
 
290
+ @pulumi.type_token("ns1:index/alert:Alert")
290
291
  class Alert(pulumi.CustomResource):
291
-
292
- pulumi_type = "ns1:index/alert:Alert"
293
-
294
292
  @overload
295
293
  def __init__(__self__,
296
294
  resource_name: str,
pulumi_ns1/api_key.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -50,6 +50,7 @@ class APIKeyArgs:
50
50
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
51
51
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
52
52
  name: Optional[pulumi.Input[builtins.str]] = None,
53
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
53
54
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
54
55
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
55
56
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
@@ -83,8 +84,9 @@ class APIKeyArgs:
83
84
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
84
85
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the apikey can view monitoring jobs.
85
86
  :param pulumi.Input[builtins.str] name: The free form name of the apikey.
86
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
87
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
87
88
  Only relevant for the DDI product.
89
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
88
90
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the apikey can manage global two factor authentication.
89
91
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the apikey belongs to.
90
92
  """
@@ -147,6 +149,8 @@ class APIKeyArgs:
147
149
  pulumi.set(__self__, "monitoring_view_jobs", monitoring_view_jobs)
148
150
  if name is not None:
149
151
  pulumi.set(__self__, "name", name)
152
+ if redirects_manage_redirects is not None:
153
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
150
154
  if security_manage_active_directory is not None:
151
155
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
152
156
  if security_manage_global2fa is not None:
@@ -491,12 +495,24 @@ class APIKeyArgs:
491
495
  def name(self, value: Optional[pulumi.Input[builtins.str]]):
492
496
  pulumi.set(self, "name", value)
493
497
 
498
+ @property
499
+ @pulumi.getter(name="redirectsManageRedirects")
500
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
501
+ """
502
+ Whether the user can manage redirects.
503
+ Only relevant for the DDI product.
504
+ """
505
+ return pulumi.get(self, "redirects_manage_redirects")
506
+
507
+ @redirects_manage_redirects.setter
508
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
509
+ pulumi.set(self, "redirects_manage_redirects", value)
510
+
494
511
  @property
495
512
  @pulumi.getter(name="securityManageActiveDirectory")
496
513
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
497
514
  """
498
515
  Whether the apikey can manage global active directory.
499
- Only relevant for the DDI product.
500
516
  """
501
517
  return pulumi.get(self, "security_manage_active_directory")
502
518
 
@@ -561,6 +577,7 @@ class _APIKeyState:
561
577
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
562
578
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
563
579
  name: Optional[pulumi.Input[builtins.str]] = None,
580
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
564
581
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
565
582
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
566
583
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
@@ -595,8 +612,9 @@ class _APIKeyState:
595
612
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
596
613
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the apikey can view monitoring jobs.
597
614
  :param pulumi.Input[builtins.str] name: The free form name of the apikey.
598
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
615
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
599
616
  Only relevant for the DDI product.
617
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
600
618
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the apikey can manage global two factor authentication.
601
619
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the apikey belongs to.
602
620
  """
@@ -661,6 +679,8 @@ class _APIKeyState:
661
679
  pulumi.set(__self__, "monitoring_view_jobs", monitoring_view_jobs)
662
680
  if name is not None:
663
681
  pulumi.set(__self__, "name", name)
682
+ if redirects_manage_redirects is not None:
683
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
664
684
  if security_manage_active_directory is not None:
665
685
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
666
686
  if security_manage_global2fa is not None:
@@ -1017,12 +1037,24 @@ class _APIKeyState:
1017
1037
  def name(self, value: Optional[pulumi.Input[builtins.str]]):
1018
1038
  pulumi.set(self, "name", value)
1019
1039
 
1040
+ @property
1041
+ @pulumi.getter(name="redirectsManageRedirects")
1042
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
1043
+ """
1044
+ Whether the user can manage redirects.
1045
+ Only relevant for the DDI product.
1046
+ """
1047
+ return pulumi.get(self, "redirects_manage_redirects")
1048
+
1049
+ @redirects_manage_redirects.setter
1050
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
1051
+ pulumi.set(self, "redirects_manage_redirects", value)
1052
+
1020
1053
  @property
1021
1054
  @pulumi.getter(name="securityManageActiveDirectory")
1022
1055
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
1023
1056
  """
1024
1057
  Whether the apikey can manage global active directory.
1025
- Only relevant for the DDI product.
1026
1058
  """
1027
1059
  return pulumi.get(self, "security_manage_active_directory")
1028
1060
 
@@ -1055,10 +1087,8 @@ class _APIKeyState:
1055
1087
  pulumi.set(self, "teams", value)
1056
1088
 
1057
1089
 
1090
+ @pulumi.type_token("ns1:index/aPIKey:APIKey")
1058
1091
  class APIKey(pulumi.CustomResource):
1059
-
1060
- pulumi_type = "ns1:index/aPIKey:APIKey"
1061
-
1062
1092
  @overload
1063
1093
  def __init__(__self__,
1064
1094
  resource_name: str,
@@ -1091,6 +1121,7 @@ class APIKey(pulumi.CustomResource):
1091
1121
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1092
1122
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1093
1123
  name: Optional[pulumi.Input[builtins.str]] = None,
1124
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1094
1125
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1095
1126
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1096
1127
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1177,8 +1208,9 @@ class APIKey(pulumi.CustomResource):
1177
1208
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
1178
1209
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the apikey can view monitoring jobs.
1179
1210
  :param pulumi.Input[builtins.str] name: The free form name of the apikey.
1180
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
1211
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1181
1212
  Only relevant for the DDI product.
1213
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
1182
1214
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the apikey can manage global two factor authentication.
1183
1215
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the apikey belongs to.
1184
1216
  """
@@ -1283,6 +1315,7 @@ class APIKey(pulumi.CustomResource):
1283
1315
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1284
1316
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1285
1317
  name: Optional[pulumi.Input[builtins.str]] = None,
1318
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1286
1319
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1287
1320
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1288
1321
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1323,6 +1356,7 @@ class APIKey(pulumi.CustomResource):
1323
1356
  __props__.__dict__["monitoring_update_jobs"] = monitoring_update_jobs
1324
1357
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1325
1358
  __props__.__dict__["name"] = name
1359
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1326
1360
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1327
1361
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1328
1362
  __props__.__dict__["teams"] = teams
@@ -1368,6 +1402,7 @@ class APIKey(pulumi.CustomResource):
1368
1402
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1369
1403
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1370
1404
  name: Optional[pulumi.Input[builtins.str]] = None,
1405
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1371
1406
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1372
1407
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1373
1408
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None) -> 'APIKey':
@@ -1407,8 +1442,9 @@ class APIKey(pulumi.CustomResource):
1407
1442
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
1408
1443
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the apikey can view monitoring jobs.
1409
1444
  :param pulumi.Input[builtins.str] name: The free form name of the apikey.
1410
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
1445
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1411
1446
  Only relevant for the DDI product.
1447
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the apikey can manage global active directory.
1412
1448
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the apikey can manage global two factor authentication.
1413
1449
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the apikey belongs to.
1414
1450
  """
@@ -1445,6 +1481,7 @@ class APIKey(pulumi.CustomResource):
1445
1481
  __props__.__dict__["monitoring_update_jobs"] = monitoring_update_jobs
1446
1482
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1447
1483
  __props__.__dict__["name"] = name
1484
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1448
1485
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1449
1486
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1450
1487
  __props__.__dict__["teams"] = teams
@@ -1683,12 +1720,20 @@ class APIKey(pulumi.CustomResource):
1683
1720
  """
1684
1721
  return pulumi.get(self, "name")
1685
1722
 
1723
+ @property
1724
+ @pulumi.getter(name="redirectsManageRedirects")
1725
+ def redirects_manage_redirects(self) -> pulumi.Output[Optional[builtins.bool]]:
1726
+ """
1727
+ Whether the user can manage redirects.
1728
+ Only relevant for the DDI product.
1729
+ """
1730
+ return pulumi.get(self, "redirects_manage_redirects")
1731
+
1686
1732
  @property
1687
1733
  @pulumi.getter(name="securityManageActiveDirectory")
1688
1734
  def security_manage_active_directory(self) -> pulumi.Output[Optional[builtins.bool]]:
1689
1735
  """
1690
1736
  Whether the apikey can manage global active directory.
1691
- Only relevant for the DDI product.
1692
1737
  """
1693
1738
  return pulumi.get(self, "security_manage_active_directory")
1694
1739
 
pulumi_ns1/application.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -207,10 +207,8 @@ class _ApplicationState:
207
207
  pulumi.set(self, "name", value)
208
208
 
209
209
 
210
+ @pulumi.type_token("ns1:index/application:Application")
210
211
  class Application(pulumi.CustomResource):
211
-
212
- pulumi_type = "ns1:index/application:Application"
213
-
214
212
  @overload
215
213
  def __init__(__self__,
216
214
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/config/vars.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/data_feed.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -132,10 +132,8 @@ class _DataFeedState:
132
132
  pulumi.set(self, "source_id", value)
133
133
 
134
134
 
135
+ @pulumi.type_token("ns1:index/dataFeed:DataFeed")
135
136
  class DataFeed(pulumi.CustomResource):
136
-
137
- pulumi_type = "ns1:index/dataFeed:DataFeed"
138
-
139
137
  @overload
140
138
  def __init__(__self__,
141
139
  resource_name: str,
pulumi_ns1/data_source.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -132,10 +132,8 @@ class _DataSourceState:
132
132
  pulumi.set(self, "sourcetype", value)
133
133
 
134
134
 
135
+ @pulumi.type_token("ns1:index/dataSource:DataSource")
135
136
  class DataSource(pulumi.CustomResource):
136
-
137
- pulumi_type = "ns1:index/dataSource:DataSource"
138
-
139
137
  @overload
140
138
  def __init__(__self__,
141
139
  resource_name: str,
pulumi_ns1/dataset.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -188,10 +188,8 @@ class _DatasetState:
188
188
  pulumi.set(self, "timeframe", value)
189
189
 
190
190
 
191
+ @pulumi.type_token("ns1:index/dataset:Dataset")
191
192
  class Dataset(pulumi.CustomResource):
192
-
193
- pulumi_type = "ns1:index/dataset:Dataset"
194
-
195
193
  @overload
196
194
  def __init__(__self__,
197
195
  resource_name: str,
pulumi_ns1/dnsview.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -201,10 +201,8 @@ class _DnsviewState:
201
201
  pulumi.set(self, "zones", value)
202
202
 
203
203
 
204
+ @pulumi.type_token("ns1:index/dnsview:Dnsview")
204
205
  class Dnsview(pulumi.CustomResource):
205
-
206
- pulumi_type = "ns1:index/dnsview:Dnsview"
207
-
208
206
  @overload
209
207
  def __init__(__self__,
210
208
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/get_dns_sec.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/get_record.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/get_zone.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -543,10 +543,8 @@ class _MonitoringJobState:
543
543
  pulumi.set(self, "rules", value)
544
544
 
545
545
 
546
+ @pulumi.type_token("ns1:index/monitoringJob:MonitoringJob")
546
547
  class MonitoringJob(pulumi.CustomResource):
547
-
548
- pulumi_type = "ns1:index/monitoringJob:MonitoringJob"
549
-
550
548
  @overload
551
549
  def __init__(__self__,
552
550
  resource_name: str,
pulumi_ns1/notify_list.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -99,10 +99,8 @@ class _NotifyListState:
99
99
  pulumi.set(self, "notifications", value)
100
100
 
101
101
 
102
+ @pulumi.type_token("ns1:index/notifyList:NotifyList")
102
103
  class NotifyList(pulumi.CustomResource):
103
-
104
- pulumi_type = "ns1:index/notifyList:NotifyList"
105
-
106
104
  @overload
107
105
  def __init__(__self__,
108
106
  resource_name: str,
pulumi_ns1/outputs.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_ns1/provider.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -121,10 +121,8 @@ class ProviderArgs:
121
121
  pulumi.set(self, "user_agent", value)
122
122
 
123
123
 
124
+ @pulumi.type_token("pulumi:providers:ns1")
124
125
  class Provider(pulumi.ProviderResource):
125
-
126
- pulumi_type = "pulumi:providers:ns1"
127
-
128
126
  @overload
129
127
  def __init__(__self__,
130
128
  resource_name: str,
@@ -229,3 +227,23 @@ class Provider(pulumi.ProviderResource):
229
227
  """
230
228
  return pulumi.get(self, "user_agent")
231
229
 
230
+ @pulumi.output_type
231
+ class TerraformConfigResult:
232
+ def __init__(__self__, result=None):
233
+ if result and not isinstance(result, dict):
234
+ raise TypeError("Expected argument 'result' to be a dict")
235
+ pulumi.set(__self__, "result", result)
236
+
237
+ @property
238
+ @pulumi.getter
239
+ def result(self) -> Mapping[str, Any]:
240
+ return pulumi.get(self, "result")
241
+
242
+ def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
243
+ """
244
+ This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
245
+ """
246
+ __args__ = dict()
247
+ __args__['__self__'] = __self__
248
+ return pulumi.runtime.call('pulumi:providers:ns1/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
249
+
pulumi_ns1/pulsar_job.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -261,10 +261,8 @@ class _PulsarJobState:
261
261
  pulumi.set(self, "weights", value)
262
262
 
263
263
 
264
+ @pulumi.type_token("ns1:index/pulsarJob:PulsarJob")
264
265
  class PulsarJob(pulumi.CustomResource):
265
-
266
- pulumi_type = "ns1:index/pulsarJob:PulsarJob"
267
-
268
266
  @overload
269
267
  def __init__(__self__,
270
268
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "ns1",
4
- "version": "3.6.3"
4
+ "version": "3.6.4-alpha.1750217711"
5
5
  }
pulumi_ns1/record.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -524,10 +524,8 @@ class _RecordState:
524
524
  pulumi.set(self, "zone", value)
525
525
 
526
526
 
527
+ @pulumi.type_token("ns1:index/record:Record")
527
528
  class Record(pulumi.CustomResource):
528
-
529
- pulumi_type = "ns1:index/record:Record"
530
-
531
529
  @overload
532
530
  def __init__(__self__,
533
531
  resource_name: str,
pulumi_ns1/redirect.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -386,10 +386,8 @@ class _RedirectState:
386
386
  pulumi.set(self, "target", value)
387
387
 
388
388
 
389
+ @pulumi.type_token("ns1:index/redirect:Redirect")
389
390
  class Redirect(pulumi.CustomResource):
390
-
391
- pulumi_type = "ns1:index/redirect:Redirect"
392
-
393
391
  @overload
394
392
  def __init__(__self__,
395
393
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -116,10 +116,8 @@ class _RedirectCertificateState:
116
116
  pulumi.set(self, "valid_until", value)
117
117
 
118
118
 
119
+ @pulumi.type_token("ns1:index/redirectCertificate:RedirectCertificate")
119
120
  class RedirectCertificate(pulumi.CustomResource):
120
-
121
- pulumi_type = "ns1:index/redirectCertificate:RedirectCertificate"
122
-
123
121
  @overload
124
122
  def __init__(__self__,
125
123
  resource_name: str,
pulumi_ns1/team.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -49,6 +49,7 @@ class TeamArgs:
49
49
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
50
50
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
51
51
  name: Optional[pulumi.Input[builtins.str]] = None,
52
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
52
53
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
53
54
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None):
54
55
  """
@@ -80,8 +81,9 @@ class TeamArgs:
80
81
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
81
82
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the team can view monitoring jobs.
82
83
  :param pulumi.Input[builtins.str] name: The free form name of the team.
83
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
84
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
84
85
  Only relevant for the DDI product.
86
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
85
87
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the team can manage global two factor authentication.
86
88
  """
87
89
  if account_manage_account_settings is not None:
@@ -141,6 +143,8 @@ class TeamArgs:
141
143
  pulumi.set(__self__, "monitoring_view_jobs", monitoring_view_jobs)
142
144
  if name is not None:
143
145
  pulumi.set(__self__, "name", name)
146
+ if redirects_manage_redirects is not None:
147
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
144
148
  if security_manage_active_directory is not None:
145
149
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
146
150
  if security_manage_global2fa is not None:
@@ -471,12 +475,24 @@ class TeamArgs:
471
475
  def name(self, value: Optional[pulumi.Input[builtins.str]]):
472
476
  pulumi.set(self, "name", value)
473
477
 
478
+ @property
479
+ @pulumi.getter(name="redirectsManageRedirects")
480
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
481
+ """
482
+ Whether the user can manage redirects.
483
+ Only relevant for the DDI product.
484
+ """
485
+ return pulumi.get(self, "redirects_manage_redirects")
486
+
487
+ @redirects_manage_redirects.setter
488
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
489
+ pulumi.set(self, "redirects_manage_redirects", value)
490
+
474
491
  @property
475
492
  @pulumi.getter(name="securityManageActiveDirectory")
476
493
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
477
494
  """
478
495
  Whether the team can manage global active directory.
479
- Only relevant for the DDI product.
480
496
  """
481
497
  return pulumi.get(self, "security_manage_active_directory")
482
498
 
@@ -527,6 +543,7 @@ class _TeamState:
527
543
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
528
544
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
529
545
  name: Optional[pulumi.Input[builtins.str]] = None,
546
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
530
547
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
531
548
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None):
532
549
  """
@@ -558,8 +575,9 @@ class _TeamState:
558
575
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
559
576
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the team can view monitoring jobs.
560
577
  :param pulumi.Input[builtins.str] name: The free form name of the team.
561
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
578
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
562
579
  Only relevant for the DDI product.
580
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
563
581
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the team can manage global two factor authentication.
564
582
  """
565
583
  if account_manage_account_settings is not None:
@@ -619,6 +637,8 @@ class _TeamState:
619
637
  pulumi.set(__self__, "monitoring_view_jobs", monitoring_view_jobs)
620
638
  if name is not None:
621
639
  pulumi.set(__self__, "name", name)
640
+ if redirects_manage_redirects is not None:
641
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
622
642
  if security_manage_active_directory is not None:
623
643
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
624
644
  if security_manage_global2fa is not None:
@@ -949,12 +969,24 @@ class _TeamState:
949
969
  def name(self, value: Optional[pulumi.Input[builtins.str]]):
950
970
  pulumi.set(self, "name", value)
951
971
 
972
+ @property
973
+ @pulumi.getter(name="redirectsManageRedirects")
974
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
975
+ """
976
+ Whether the user can manage redirects.
977
+ Only relevant for the DDI product.
978
+ """
979
+ return pulumi.get(self, "redirects_manage_redirects")
980
+
981
+ @redirects_manage_redirects.setter
982
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
983
+ pulumi.set(self, "redirects_manage_redirects", value)
984
+
952
985
  @property
953
986
  @pulumi.getter(name="securityManageActiveDirectory")
954
987
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
955
988
  """
956
989
  Whether the team can manage global active directory.
957
- Only relevant for the DDI product.
958
990
  """
959
991
  return pulumi.get(self, "security_manage_active_directory")
960
992
 
@@ -975,10 +1007,8 @@ class _TeamState:
975
1007
  pulumi.set(self, "security_manage_global2fa", value)
976
1008
 
977
1009
 
1010
+ @pulumi.type_token("ns1:index/team:Team")
978
1011
  class Team(pulumi.CustomResource):
979
-
980
- pulumi_type = "ns1:index/team:Team"
981
-
982
1012
  @overload
983
1013
  def __init__(__self__,
984
1014
  resource_name: str,
@@ -1010,6 +1040,7 @@ class Team(pulumi.CustomResource):
1010
1040
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1011
1041
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1012
1042
  name: Optional[pulumi.Input[builtins.str]] = None,
1043
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1013
1044
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1014
1045
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1015
1046
  __props__=None):
@@ -1099,8 +1130,9 @@ class Team(pulumi.CustomResource):
1099
1130
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
1100
1131
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the team can view monitoring jobs.
1101
1132
  :param pulumi.Input[builtins.str] name: The free form name of the team.
1102
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
1133
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1103
1134
  Only relevant for the DDI product.
1135
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
1104
1136
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the team can manage global two factor authentication.
1105
1137
  """
1106
1138
  ...
@@ -1208,6 +1240,7 @@ class Team(pulumi.CustomResource):
1208
1240
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1209
1241
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1210
1242
  name: Optional[pulumi.Input[builtins.str]] = None,
1243
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1211
1244
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1212
1245
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1213
1246
  __props__=None):
@@ -1246,6 +1279,7 @@ class Team(pulumi.CustomResource):
1246
1279
  __props__.__dict__["monitoring_update_jobs"] = monitoring_update_jobs
1247
1280
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1248
1281
  __props__.__dict__["name"] = name
1282
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1249
1283
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1250
1284
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1251
1285
  super(Team, __self__).__init__(
@@ -1285,6 +1319,7 @@ class Team(pulumi.CustomResource):
1285
1319
  monitoring_update_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1286
1320
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1287
1321
  name: Optional[pulumi.Input[builtins.str]] = None,
1322
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1288
1323
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1289
1324
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None) -> 'Team':
1290
1325
  """
@@ -1321,8 +1356,9 @@ class Team(pulumi.CustomResource):
1321
1356
  :param pulumi.Input[builtins.bool] monitoring_update_jobs: Whether the user can update monitoring jobs when manage_jobs is not set to true.
1322
1357
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the team can view monitoring jobs.
1323
1358
  :param pulumi.Input[builtins.str] name: The free form name of the team.
1324
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
1359
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1325
1360
  Only relevant for the DDI product.
1361
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the team can manage global active directory.
1326
1362
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the team can manage global two factor authentication.
1327
1363
  """
1328
1364
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1356,6 +1392,7 @@ class Team(pulumi.CustomResource):
1356
1392
  __props__.__dict__["monitoring_update_jobs"] = monitoring_update_jobs
1357
1393
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1358
1394
  __props__.__dict__["name"] = name
1395
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1359
1396
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1360
1397
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1361
1398
  return Team(resource_name, opts=opts, __props__=__props__)
@@ -1577,12 +1614,20 @@ class Team(pulumi.CustomResource):
1577
1614
  """
1578
1615
  return pulumi.get(self, "name")
1579
1616
 
1617
+ @property
1618
+ @pulumi.getter(name="redirectsManageRedirects")
1619
+ def redirects_manage_redirects(self) -> pulumi.Output[Optional[builtins.bool]]:
1620
+ """
1621
+ Whether the user can manage redirects.
1622
+ Only relevant for the DDI product.
1623
+ """
1624
+ return pulumi.get(self, "redirects_manage_redirects")
1625
+
1580
1626
  @property
1581
1627
  @pulumi.getter(name="securityManageActiveDirectory")
1582
1628
  def security_manage_active_directory(self) -> pulumi.Output[Optional[builtins.bool]]:
1583
1629
  """
1584
1630
  Whether the team can manage global active directory.
1585
- Only relevant for the DDI product.
1586
1631
  """
1587
1632
  return pulumi.get(self, "security_manage_active_directory")
1588
1633
 
pulumi_ns1/tsigkey.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -127,10 +127,8 @@ class _TsigkeyState:
127
127
  pulumi.set(self, "secret", value)
128
128
 
129
129
 
130
+ @pulumi.type_token("ns1:index/tsigkey:Tsigkey")
130
131
  class Tsigkey(pulumi.CustomResource):
131
-
132
- pulumi_type = "ns1:index/tsigkey:Tsigkey"
133
-
134
132
  @overload
135
133
  def __init__(__self__,
136
134
  resource_name: str,
pulumi_ns1/user.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -53,6 +53,7 @@ class UserArgs:
53
53
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
54
54
  name: Optional[pulumi.Input[builtins.str]] = None,
55
55
  notify: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
56
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
56
57
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
57
58
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
58
59
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
@@ -87,8 +88,9 @@ class UserArgs:
87
88
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the user can view monitoring jobs.
88
89
  :param pulumi.Input[builtins.str] name: The free form name of the user.
89
90
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] notify: Whether or not to notify the user of specified events. Only `billing` is available currently.
90
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
91
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
91
92
  Only relevant for the DDI product.
93
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
92
94
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the user can manage global two factor authentication.
93
95
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the user belongs to.
94
96
  """
@@ -155,6 +157,8 @@ class UserArgs:
155
157
  pulumi.set(__self__, "name", name)
156
158
  if notify is not None:
157
159
  pulumi.set(__self__, "notify", notify)
160
+ if redirects_manage_redirects is not None:
161
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
158
162
  if security_manage_active_directory is not None:
159
163
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
160
164
  if security_manage_global2fa is not None:
@@ -529,12 +533,24 @@ class UserArgs:
529
533
  def notify(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
530
534
  pulumi.set(self, "notify", value)
531
535
 
536
+ @property
537
+ @pulumi.getter(name="redirectsManageRedirects")
538
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
539
+ """
540
+ Whether the user can manage redirects.
541
+ Only relevant for the DDI product.
542
+ """
543
+ return pulumi.get(self, "redirects_manage_redirects")
544
+
545
+ @redirects_manage_redirects.setter
546
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
547
+ pulumi.set(self, "redirects_manage_redirects", value)
548
+
532
549
  @property
533
550
  @pulumi.getter(name="securityManageActiveDirectory")
534
551
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
535
552
  """
536
553
  Whether the user can manage global active directory.
537
- Only relevant for the DDI product.
538
554
  """
539
555
  return pulumi.get(self, "security_manage_active_directory")
540
556
 
@@ -600,6 +616,7 @@ class _UserState:
600
616
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
601
617
  name: Optional[pulumi.Input[builtins.str]] = None,
602
618
  notify: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
619
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
603
620
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
604
621
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
605
622
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -634,8 +651,9 @@ class _UserState:
634
651
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the user can view monitoring jobs.
635
652
  :param pulumi.Input[builtins.str] name: The free form name of the user.
636
653
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] notify: Whether or not to notify the user of specified events. Only `billing` is available currently.
637
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
654
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
638
655
  Only relevant for the DDI product.
656
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
639
657
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the user can manage global two factor authentication.
640
658
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the user belongs to.
641
659
  :param pulumi.Input[builtins.str] username: The users login name.
@@ -703,6 +721,8 @@ class _UserState:
703
721
  pulumi.set(__self__, "name", name)
704
722
  if notify is not None:
705
723
  pulumi.set(__self__, "notify", notify)
724
+ if redirects_manage_redirects is not None:
725
+ pulumi.set(__self__, "redirects_manage_redirects", redirects_manage_redirects)
706
726
  if security_manage_active_directory is not None:
707
727
  pulumi.set(__self__, "security_manage_active_directory", security_manage_active_directory)
708
728
  if security_manage_global2fa is not None:
@@ -1067,12 +1087,24 @@ class _UserState:
1067
1087
  def notify(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
1068
1088
  pulumi.set(self, "notify", value)
1069
1089
 
1090
+ @property
1091
+ @pulumi.getter(name="redirectsManageRedirects")
1092
+ def redirects_manage_redirects(self) -> Optional[pulumi.Input[builtins.bool]]:
1093
+ """
1094
+ Whether the user can manage redirects.
1095
+ Only relevant for the DDI product.
1096
+ """
1097
+ return pulumi.get(self, "redirects_manage_redirects")
1098
+
1099
+ @redirects_manage_redirects.setter
1100
+ def redirects_manage_redirects(self, value: Optional[pulumi.Input[builtins.bool]]):
1101
+ pulumi.set(self, "redirects_manage_redirects", value)
1102
+
1070
1103
  @property
1071
1104
  @pulumi.getter(name="securityManageActiveDirectory")
1072
1105
  def security_manage_active_directory(self) -> Optional[pulumi.Input[builtins.bool]]:
1073
1106
  """
1074
1107
  Whether the user can manage global active directory.
1075
- Only relevant for the DDI product.
1076
1108
  """
1077
1109
  return pulumi.get(self, "security_manage_active_directory")
1078
1110
 
@@ -1117,10 +1149,8 @@ class _UserState:
1117
1149
  pulumi.set(self, "username", value)
1118
1150
 
1119
1151
 
1152
+ @pulumi.type_token("ns1:index/user:User")
1120
1153
  class User(pulumi.CustomResource):
1121
-
1122
- pulumi_type = "ns1:index/user:User"
1123
-
1124
1154
  @overload
1125
1155
  def __init__(__self__,
1126
1156
  resource_name: str,
@@ -1155,6 +1185,7 @@ class User(pulumi.CustomResource):
1155
1185
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1156
1186
  name: Optional[pulumi.Input[builtins.str]] = None,
1157
1187
  notify: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1188
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1158
1189
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1159
1190
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1160
1191
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1244,8 +1275,9 @@ class User(pulumi.CustomResource):
1244
1275
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the user can view monitoring jobs.
1245
1276
  :param pulumi.Input[builtins.str] name: The free form name of the user.
1246
1277
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] notify: Whether or not to notify the user of specified events. Only `billing` is available currently.
1247
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
1278
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1248
1279
  Only relevant for the DDI product.
1280
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
1249
1281
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the user can manage global two factor authentication.
1250
1282
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the user belongs to.
1251
1283
  :param pulumi.Input[builtins.str] username: The users login name.
@@ -1355,6 +1387,7 @@ class User(pulumi.CustomResource):
1355
1387
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1356
1388
  name: Optional[pulumi.Input[builtins.str]] = None,
1357
1389
  notify: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1390
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1358
1391
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1359
1392
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1360
1393
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1400,6 +1433,7 @@ class User(pulumi.CustomResource):
1400
1433
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1401
1434
  __props__.__dict__["name"] = name
1402
1435
  __props__.__dict__["notify"] = notify
1436
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1403
1437
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1404
1438
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1405
1439
  __props__.__dict__["teams"] = teams
@@ -1446,6 +1480,7 @@ class User(pulumi.CustomResource):
1446
1480
  monitoring_view_jobs: Optional[pulumi.Input[builtins.bool]] = None,
1447
1481
  name: Optional[pulumi.Input[builtins.str]] = None,
1448
1482
  notify: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1483
+ redirects_manage_redirects: Optional[pulumi.Input[builtins.bool]] = None,
1449
1484
  security_manage_active_directory: Optional[pulumi.Input[builtins.bool]] = None,
1450
1485
  security_manage_global2fa: Optional[pulumi.Input[builtins.bool]] = None,
1451
1486
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1485,8 +1520,9 @@ class User(pulumi.CustomResource):
1485
1520
  :param pulumi.Input[builtins.bool] monitoring_view_jobs: Whether the user can view monitoring jobs.
1486
1521
  :param pulumi.Input[builtins.str] name: The free form name of the user.
1487
1522
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] notify: Whether or not to notify the user of specified events. Only `billing` is available currently.
1488
- :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
1523
+ :param pulumi.Input[builtins.bool] redirects_manage_redirects: Whether the user can manage redirects.
1489
1524
  Only relevant for the DDI product.
1525
+ :param pulumi.Input[builtins.bool] security_manage_active_directory: Whether the user can manage global active directory.
1490
1526
  :param pulumi.Input[builtins.bool] security_manage_global2fa: Whether the user can manage global two factor authentication.
1491
1527
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] teams: The teams that the user belongs to.
1492
1528
  :param pulumi.Input[builtins.str] username: The users login name.
@@ -1525,6 +1561,7 @@ class User(pulumi.CustomResource):
1525
1561
  __props__.__dict__["monitoring_view_jobs"] = monitoring_view_jobs
1526
1562
  __props__.__dict__["name"] = name
1527
1563
  __props__.__dict__["notify"] = notify
1564
+ __props__.__dict__["redirects_manage_redirects"] = redirects_manage_redirects
1528
1565
  __props__.__dict__["security_manage_active_directory"] = security_manage_active_directory
1529
1566
  __props__.__dict__["security_manage_global2fa"] = security_manage_global2fa
1530
1567
  __props__.__dict__["teams"] = teams
@@ -1766,12 +1803,20 @@ class User(pulumi.CustomResource):
1766
1803
  """
1767
1804
  return pulumi.get(self, "notify")
1768
1805
 
1806
+ @property
1807
+ @pulumi.getter(name="redirectsManageRedirects")
1808
+ def redirects_manage_redirects(self) -> pulumi.Output[Optional[builtins.bool]]:
1809
+ """
1810
+ Whether the user can manage redirects.
1811
+ Only relevant for the DDI product.
1812
+ """
1813
+ return pulumi.get(self, "redirects_manage_redirects")
1814
+
1769
1815
  @property
1770
1816
  @pulumi.getter(name="securityManageActiveDirectory")
1771
1817
  def security_manage_active_directory(self) -> pulumi.Output[Optional[builtins.bool]]:
1772
1818
  """
1773
1819
  Whether the user can manage global active directory.
1774
- Only relevant for the DDI product.
1775
1820
  """
1776
1821
  return pulumi.get(self, "security_manage_active_directory")
1777
1822
 
pulumi_ns1/zone.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -722,10 +722,8 @@ class _ZoneState:
722
722
  pulumi.set(self, "zone", value)
723
723
 
724
724
 
725
+ @pulumi.type_token("ns1:index/zone:Zone")
725
726
  class Zone(pulumi.CustomResource):
726
-
727
- pulumi_type = "ns1:index/zone:Zone"
728
-
729
727
  @overload
730
728
  def __init__(__self__,
731
729
  resource_name: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_ns1
3
- Version: 3.6.3
3
+ Version: 3.6.4a1750217711
4
4
  Summary: A Pulumi package for creating and managing ns1 cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -9,9 +9,9 @@ Keywords: pulumi,ns1
9
9
  Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-ns1/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-ns1/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,38 @@
1
+ pulumi_ns1/__init__.py,sha256=3sdpQoLDoijOFZEN87mVWWxrnBK6wX2bMNoKRlwuXxo,3842
2
+ pulumi_ns1/_inputs.py,sha256=nF1-9YFWVDQvDmegt6f22tvKXGYnvdNtY4TlDgKb7zI,52378
3
+ pulumi_ns1/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_ns1/account_whitelist.py,sha256=8HcS1s0rdJ3a5qjmEPmDlxq2sCH84PvMsFktiA1qkrY,9544
5
+ pulumi_ns1/alert.py,sha256=6ZdV1ViZKsLWIo2TfzfTmylKIQLEv_sdMSshn0bj0aA,23018
6
+ pulumi_ns1/api_key.py,sha256=uSHuP6QM5gnufvo-94-cn8svtK8VOvD8AzyFMG4gzjk,92233
7
+ pulumi_ns1/application.py,sha256=yScmts5risDOuFQCuC_i0x4UAkbgvYAsk-XptF2ecsk,17478
8
+ pulumi_ns1/data_feed.py,sha256=UdkLlAcxp0f1pXsRB8bOhrJwbbJqeXa4ctX8YKhuro8,13464
9
+ pulumi_ns1/data_source.py,sha256=A5-K5trGMatB9a1DOPfBBUBcw8BqPSZLrHwHoPz2kA4,11888
10
+ pulumi_ns1/dataset.py,sha256=tb1tX3A1_y-pt0DDZlr1a8x6GF3brcpe4zbyu6-G0iw,14030
11
+ pulumi_ns1/dnsview.py,sha256=9tGyfUo9-4pvWgXydfu0zcKC5yF7qBVcSoDBLXNZvs4,14474
12
+ pulumi_ns1/get_billing_usage.py,sha256=wlKmdxJTxMRVvLBUWfpH-XHaiTRw4_z5VKiqTfDqQ0Y,18180
13
+ pulumi_ns1/get_dns_sec.py,sha256=ohmCk5IOseBOseh5pBGBo9WFDSLWwLFw5JR2CR_FVuc,4795
14
+ pulumi_ns1/get_monitoring_regions.py,sha256=UI_GQGCRlvn20NbbotVESA8DRC-iD0l_jJXApoQ0Ruk,4378
15
+ pulumi_ns1/get_networks.py,sha256=Gf_xo4ZoaDs9RWUowYjPwsDuerI2jyoLkZn3XBhO6eA,3594
16
+ pulumi_ns1/get_record.py,sha256=UZEn-e_dqIPxKIsDdaJggjoRgDBpkMkTX0o9VrMcZ5U,11071
17
+ pulumi_ns1/get_zone.py,sha256=DpuQIBuzWqZnuwwjZM45CLHEbu17yNckCrsCOsHpgKs,14025
18
+ pulumi_ns1/monitoring_job.py,sha256=VD937dowTnDc_cW-wP1F2rZwYk_LiIxKk1BN0kDP9h4,48090
19
+ pulumi_ns1/notify_list.py,sha256=SFgOM6jM2Gq9a5WMz5ly-FwQ74N1Q079d9fp5kRQORE,11440
20
+ pulumi_ns1/outputs.py,sha256=42GesD6uCVDZJeHrIL4cmJMvbQJe5RuUuOs9XrlOOJc,52758
21
+ pulumi_ns1/provider.py,sha256=ohNMsPOvXSqUE7nvE4i0B-ClWH1C3klrF42iiG6Gu9g,11134
22
+ pulumi_ns1/pulsar_job.py,sha256=HIWIhV_o907KAEm2ZbC4fFx7_K_-MgyxfHwnlvF2DKk,18039
23
+ pulumi_ns1/pulumi-plugin.json,sha256=Eff04TzPyfGbfvMliWYuy2nreUA5W5f4A_JjekcUBSw,79
24
+ pulumi_ns1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ pulumi_ns1/record.py,sha256=TT2kYcwH5q5U-s2kj1P9i0C3Zx9Hbqvs2OR8qfCK9ZY,48400
26
+ pulumi_ns1/redirect.py,sha256=Oc7juRWZRB7IardZOQa70Cz4EnEO6E15sfbfwyYN1Ik,33779
27
+ pulumi_ns1/redirect_certificate.py,sha256=HicQ1MhEDawTdKCGkUmff1C4aAbdjlDC5TV2N6FeUzA,9445
28
+ pulumi_ns1/team.py,sha256=sIfz_pWIr5WfzJY0FM618-px56UUASWCmSo6u7P51pY,86118
29
+ pulumi_ns1/tsigkey.py,sha256=PC-kpJ7h7dp8Jk3U9ZyuZLqmSIcQh5kEWXoGnC8ULaU,10636
30
+ pulumi_ns1/user.py,sha256=CY2zdRI775b9pvnR3uGHusQjIY3WPYML9Ebr9FV0AuI,95369
31
+ pulumi_ns1/zone.py,sha256=2XKnrj0xEpOA2g5P2w_1pSKRVG7ZS5W_AON3GoeXnDQ,51790
32
+ pulumi_ns1/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
33
+ pulumi_ns1/config/__init__.pyi,sha256=t_o_reQfXzd_IoRipuGczPUe2LYB5dLwgQqhUxLTt-s,973
34
+ pulumi_ns1/config/vars.py,sha256=et01KDHp_vr-JqcTFLGTPCcRpb-UOc7Iz8I40mbswFM,1678
35
+ pulumi_ns1-3.6.4a1750217711.dist-info/METADATA,sha256=3Qm77kq7tWS2CMaVPZaLqqtcZHyp_fDNl0qOj2N05zw,3113
36
+ pulumi_ns1-3.6.4a1750217711.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
37
+ pulumi_ns1-3.6.4a1750217711.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
38
+ pulumi_ns1-3.6.4a1750217711.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,38 +0,0 @@
1
- pulumi_ns1/__init__.py,sha256=V3mL_fJpueiuPW9P3_TXAAgWW3DAMXmbp-VDmTpMa_Q,3860
2
- pulumi_ns1/_inputs.py,sha256=achEQt3ApVjB0rlkqU95IDuKL9i_Ym9N66iAmfnfKEU,52396
3
- pulumi_ns1/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_ns1/account_whitelist.py,sha256=P75tE_fwqCzXqC0siXtwCc8VVZIfp85g9URtPGX_KsY,9562
5
- pulumi_ns1/alert.py,sha256=CzHYtBoCuZ6eesDsERpSZmLn9lTLoNXJwS-WM9n02rc,23036
6
- pulumi_ns1/api_key.py,sha256=FCXsH3JuKgyMIUH82hZfEULH33KZRikFs8db-nMUgcU,89671
7
- pulumi_ns1/application.py,sha256=vofcpYWdnabpw6k6rECxsVtEhNSNBgCBJJ2nyRLnx1Y,17496
8
- pulumi_ns1/data_feed.py,sha256=Mze0lngmQpnphG6YZN3PUf7VR9GVPr0mWd_Zr7IrcHg,13482
9
- pulumi_ns1/data_source.py,sha256=6g0gnmW2yGksLHkFISbSzp46SLxOnuh4qIcsu8Ipf70,11906
10
- pulumi_ns1/dataset.py,sha256=sHQFAAtRNQRKVvOHT5J1olAoucx6AILN8wnwZjIBylw,14048
11
- pulumi_ns1/dnsview.py,sha256=VmGkjGCflKSIcpUAWjs2awds8q2kfG5rH05D43KKzQw,14492
12
- pulumi_ns1/get_billing_usage.py,sha256=mfvBM7eJZKmV0geg8zEYtCyVtz37R-jqI3nAbe3_8FU,18198
13
- pulumi_ns1/get_dns_sec.py,sha256=Jn8UqQiVyxwy9QSJa25SfXfvPHDBZDPJHV7vgboUtYM,4813
14
- pulumi_ns1/get_monitoring_regions.py,sha256=y5VyhpkK_W1tOTadWJzr-7G92WAWiOQERCHSMFy2f_Q,4396
15
- pulumi_ns1/get_networks.py,sha256=djvWq5_iWrv9YdfqBp_iWnyhCsDjpRRRSJubXg-AY-A,3612
16
- pulumi_ns1/get_record.py,sha256=klSsCN9o6Ggvt7OX6SFEKXXHC6exZRFqY3_Z83dGkKw,11089
17
- pulumi_ns1/get_zone.py,sha256=8dlhflNBM_Do7Ud4ZhkD_8CPbHZsWkayC2YjUKEhh44,14043
18
- pulumi_ns1/monitoring_job.py,sha256=sSnnx-00NBJhwYjp-t2jvso9ExBzpDOsaFDm0mXQj-g,48108
19
- pulumi_ns1/notify_list.py,sha256=IMMp_y_PGCVPNhRcC5LH2Km3nTon2jQsrjrhY-aAwpw,11458
20
- pulumi_ns1/outputs.py,sha256=Z6RPuEFGEOLC3wNx6BSQ2fdO2n9KXo2LWNPsmlHFnvQ,52776
21
- pulumi_ns1/provider.py,sha256=_NWP8w8o2P6ny6-l85EC5doTVmeYmydIZFDQmOXMs3w,10286
22
- pulumi_ns1/pulsar_job.py,sha256=CE8kKmt60C6Tkpb4G1XC_J3nUu--_UgqboeeIWIx5Yo,18057
23
- pulumi_ns1/pulumi-plugin.json,sha256=engitMw9m_DkYClIOpsx7Xqp20qnij0RKK0Weih16D4,62
24
- pulumi_ns1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- pulumi_ns1/record.py,sha256=WhjFTikz14eo4yxYezlhIA285ZHm6R8DnYMDoUk3dAc,48418
26
- pulumi_ns1/redirect.py,sha256=MqwDeTeQnuEMQdjb93tKdSlnuDCpU2UlzQCkPSevbXo,33797
27
- pulumi_ns1/redirect_certificate.py,sha256=H4uMzYoLHCQzhsNdcrL5dBPokcMrcBGKAO95D2jW3SY,9463
28
- pulumi_ns1/team.py,sha256=niG-zL1LBOht39Ig6Vpk8rKmhzRvBoQitVIn7_qMVBw,83556
29
- pulumi_ns1/tsigkey.py,sha256=TIhHO1uD4yjOQlSmgvij30BdnjJoMExK0p64XH_uhY0,10654
30
- pulumi_ns1/user.py,sha256=FmvLov-t07eVD1epXzG205XNqqHgcGmwHCPoLWk-9vM,92807
31
- pulumi_ns1/zone.py,sha256=eo4x1bK8MosfVNjDDKVA9Se6vQztxi-hxEx3sHwDt9c,51808
32
- pulumi_ns1/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
33
- pulumi_ns1/config/__init__.pyi,sha256=7XHACEttVNNitwJ8WgAr0avct2vIfMnWGkJnD6wSXGA,991
34
- pulumi_ns1/config/vars.py,sha256=rwdmdMD-RLyG6WF4Xxezusk8LhInFGeXY3lbBp7D6r0,1696
35
- pulumi_ns1-3.6.3.dist-info/METADATA,sha256=YThsg7DnnOzkx9cJHZ-9flotFRpKYYD93se2Cwv2DVo,3099
36
- pulumi_ns1-3.6.3.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
37
- pulumi_ns1-3.6.3.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
38
- pulumi_ns1-3.6.3.dist-info/RECORD,,