pulumi-ns1 3.3.0a1715761100__py3-none-any.whl → 3.3.0a1716395337__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/pulumi-plugin.json +1 -1
- pulumi_ns1/record.py +13 -0
- pulumi_ns1/zone.py +13 -0
- {pulumi_ns1-3.3.0a1715761100.dist-info → pulumi_ns1-3.3.0a1716395337.dist-info}/METADATA +1 -1
- {pulumi_ns1-3.3.0a1715761100.dist-info → pulumi_ns1-3.3.0a1716395337.dist-info}/RECORD +7 -7
- {pulumi_ns1-3.3.0a1715761100.dist-info → pulumi_ns1-3.3.0a1716395337.dist-info}/WHEEL +0 -0
- {pulumi_ns1-3.3.0a1715761100.dist-info → pulumi_ns1-3.3.0a1716395337.dist-info}/top_level.txt +0 -0
pulumi_ns1/pulumi-plugin.json
CHANGED
pulumi_ns1/record.py
CHANGED
@@ -47,6 +47,7 @@ class RecordArgs:
|
|
47
47
|
just groupings based on metadata, and are called "Answer Groups" in the NS1 UI,
|
48
48
|
but remain `regions` here for legacy reasons. Regions are
|
49
49
|
documented below. Please note the ordering requirement!
|
50
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
50
51
|
:param pulumi.Input[int] ttl: The records' time to live (in seconds).
|
51
52
|
:param pulumi.Input[bool] use_client_subnet: Whether to use EDNS client subnet data when
|
52
53
|
available(in filter chain).
|
@@ -216,6 +217,9 @@ class RecordArgs:
|
|
216
217
|
@property
|
217
218
|
@pulumi.getter
|
218
219
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
220
|
+
"""
|
221
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
222
|
+
"""
|
219
223
|
return pulumi.get(self, "tags")
|
220
224
|
|
221
225
|
@tags.setter
|
@@ -281,6 +285,7 @@ class _RecordState:
|
|
281
285
|
just groupings based on metadata, and are called "Answer Groups" in the NS1 UI,
|
282
286
|
but remain `regions` here for legacy reasons. Regions are
|
283
287
|
documented below. Please note the ordering requirement!
|
288
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
284
289
|
:param pulumi.Input[int] ttl: The records' time to live (in seconds).
|
285
290
|
:param pulumi.Input[str] type: The records' RR type.
|
286
291
|
:param pulumi.Input[bool] use_client_subnet: Whether to use EDNS client subnet data when
|
@@ -431,6 +436,9 @@ class _RecordState:
|
|
431
436
|
@property
|
432
437
|
@pulumi.getter
|
433
438
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
439
|
+
"""
|
440
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
441
|
+
"""
|
434
442
|
return pulumi.get(self, "tags")
|
435
443
|
|
436
444
|
@tags.setter
|
@@ -653,6 +661,7 @@ class Record(pulumi.CustomResource):
|
|
653
661
|
just groupings based on metadata, and are called "Answer Groups" in the NS1 UI,
|
654
662
|
but remain `regions` here for legacy reasons. Regions are
|
655
663
|
documented below. Please note the ordering requirement!
|
664
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
656
665
|
:param pulumi.Input[int] ttl: The records' time to live (in seconds).
|
657
666
|
:param pulumi.Input[str] type: The records' RR type.
|
658
667
|
:param pulumi.Input[bool] use_client_subnet: Whether to use EDNS client subnet data when
|
@@ -898,6 +907,7 @@ class Record(pulumi.CustomResource):
|
|
898
907
|
just groupings based on metadata, and are called "Answer Groups" in the NS1 UI,
|
899
908
|
but remain `regions` here for legacy reasons. Regions are
|
900
909
|
documented below. Please note the ordering requirement!
|
910
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
901
911
|
:param pulumi.Input[int] ttl: The records' time to live (in seconds).
|
902
912
|
:param pulumi.Input[str] type: The records' RR type.
|
903
913
|
:param pulumi.Input[bool] use_client_subnet: Whether to use EDNS client subnet data when
|
@@ -1000,6 +1010,9 @@ class Record(pulumi.CustomResource):
|
|
1000
1010
|
@property
|
1001
1011
|
@pulumi.getter
|
1002
1012
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1013
|
+
"""
|
1014
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
1015
|
+
"""
|
1003
1016
|
return pulumi.get(self, "tags")
|
1004
1017
|
|
1005
1018
|
@property
|
pulumi_ns1/zone.py
CHANGED
@@ -60,6 +60,7 @@ class ZoneArgs:
|
|
60
60
|
:param pulumi.Input[Sequence[pulumi.Input['ZoneSecondaryArgs']]] secondaries: List of secondary servers. This makes the zone a
|
61
61
|
primary. Conflicts with `primary` and `additional_primaries`.
|
62
62
|
Secondaries is documented below.
|
63
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
63
64
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tsig: TSIG is documented below
|
64
65
|
:param pulumi.Input[int] ttl: The SOA TTL.
|
65
66
|
"""
|
@@ -285,6 +286,9 @@ class ZoneArgs:
|
|
285
286
|
@property
|
286
287
|
@pulumi.getter
|
287
288
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
289
|
+
"""
|
290
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
291
|
+
"""
|
288
292
|
return pulumi.get(self, "tags")
|
289
293
|
|
290
294
|
@tags.setter
|
@@ -364,6 +368,7 @@ class _ZoneState:
|
|
364
368
|
:param pulumi.Input[Sequence[pulumi.Input['ZoneSecondaryArgs']]] secondaries: List of secondary servers. This makes the zone a
|
365
369
|
primary. Conflicts with `primary` and `additional_primaries`.
|
366
370
|
Secondaries is documented below.
|
371
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
367
372
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tsig: TSIG is documented below
|
368
373
|
:param pulumi.Input[int] ttl: The SOA TTL.
|
369
374
|
:param pulumi.Input[str] zone: The domain name of the zone.
|
@@ -593,6 +598,9 @@ class _ZoneState:
|
|
593
598
|
@property
|
594
599
|
@pulumi.getter
|
595
600
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
601
|
+
"""
|
602
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
603
|
+
"""
|
596
604
|
return pulumi.get(self, "tags")
|
597
605
|
|
598
606
|
@tags.setter
|
@@ -698,6 +706,7 @@ class Zone(pulumi.CustomResource):
|
|
698
706
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ZoneSecondaryArgs']]]] secondaries: List of secondary servers. This makes the zone a
|
699
707
|
primary. Conflicts with `primary` and `additional_primaries`.
|
700
708
|
Secondaries is documented below.
|
709
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
701
710
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tsig: TSIG is documented below
|
702
711
|
:param pulumi.Input[int] ttl: The SOA TTL.
|
703
712
|
:param pulumi.Input[str] zone: The domain name of the zone.
|
@@ -844,6 +853,7 @@ class Zone(pulumi.CustomResource):
|
|
844
853
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ZoneSecondaryArgs']]]] secondaries: List of secondary servers. This makes the zone a
|
845
854
|
primary. Conflicts with `primary` and `additional_primaries`.
|
846
855
|
Secondaries is documented below.
|
856
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: map of tags in the form of `"key" = "value"` where both key and value are strings
|
847
857
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tsig: TSIG is documented below
|
848
858
|
:param pulumi.Input[int] ttl: The SOA TTL.
|
849
859
|
:param pulumi.Input[str] zone: The domain name of the zone.
|
@@ -999,6 +1009,9 @@ class Zone(pulumi.CustomResource):
|
|
999
1009
|
@property
|
1000
1010
|
@pulumi.getter
|
1001
1011
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1012
|
+
"""
|
1013
|
+
map of tags in the form of `"key" = "value"` where both key and value are strings
|
1014
|
+
"""
|
1002
1015
|
return pulumi.get(self, "tags")
|
1003
1016
|
|
1004
1017
|
@property
|
@@ -18,18 +18,18 @@ pulumi_ns1/notify_list.py,sha256=w4Z350jOCgGwAUKwgWTa502Xx_8EK4o_BsJj-HoXL2A,110
|
|
18
18
|
pulumi_ns1/outputs.py,sha256=Ld_6Lm9hRElF10c_aIewKwbtmsXIJzlZXXI4OqUHt0o,46058
|
19
19
|
pulumi_ns1/provider.py,sha256=5E3JbCjCD3ztCf3HFRYQ_c680oYir0a9h_Fy3nUtHe0,10590
|
20
20
|
pulumi_ns1/pulsar_job.py,sha256=Gk12BJdVCy6QWEqt99Wf5RqvZXEIf8Oub5Qn0x3YfjM,17050
|
21
|
-
pulumi_ns1/pulumi-plugin.json,sha256=
|
21
|
+
pulumi_ns1/pulumi-plugin.json,sha256=B2zmOLfq5Z56cvFiPT-x81i2DD6Xc17lcfi21H218kw,79
|
22
22
|
pulumi_ns1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
pulumi_ns1/record.py,sha256=
|
23
|
+
pulumi_ns1/record.py,sha256=7W76cCpzqzdOvV10g3HDh_4l-YlVameA2rBmeZ9HXGE,45469
|
24
24
|
pulumi_ns1/subnet.py,sha256=9LN3o8gVwCgL4hC9wwFDzU4WPNXDxCOZE3MudBWPlq0,19239
|
25
25
|
pulumi_ns1/team.py,sha256=W7zln_uUxGUhRLpwygcW0hmPwUAJmV9dtJXNgPmaFT0,81714
|
26
26
|
pulumi_ns1/tsigkey.py,sha256=HpbUG1x720Ix-BuA-qj5MIurFDVQ2JI_Y2b736cN97E,10038
|
27
27
|
pulumi_ns1/user.py,sha256=ThbfFxGo-dF2HHOvECTA4Surd8vAJKTtPmy9RV8GwTg,89234
|
28
|
-
pulumi_ns1/zone.py,sha256=
|
28
|
+
pulumi_ns1/zone.py,sha256=easSfXfDqQhz6tNwc7SGCK5CdwTlq340VTByde69tqI,43790
|
29
29
|
pulumi_ns1/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
30
30
|
pulumi_ns1/config/__init__.pyi,sha256=gTM1utkGS4KH3on5zyhR_a6AtTg4_jVpEXyQeU7ZpJQ,865
|
31
31
|
pulumi_ns1/config/vars.py,sha256=bQTOWrwMP1x58zYPNlK8g8CTAbOUMF3GyfcevML1frE,1674
|
32
|
-
pulumi_ns1-3.3.
|
33
|
-
pulumi_ns1-3.3.
|
34
|
-
pulumi_ns1-3.3.
|
35
|
-
pulumi_ns1-3.3.
|
32
|
+
pulumi_ns1-3.3.0a1716395337.dist-info/METADATA,sha256=JyM-VHifePgYQbM12gfkiltIriXkEK1Hy_OFGy2SB6U,3047
|
33
|
+
pulumi_ns1-3.3.0a1716395337.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
34
|
+
pulumi_ns1-3.3.0a1716395337.dist-info/top_level.txt,sha256=Sndx9N4MHnSbjpwVT-_JZ8NZ7JzudJUIUQkU2-9GH9U,11
|
35
|
+
pulumi_ns1-3.3.0a1716395337.dist-info/RECORD,,
|
File without changes
|
{pulumi_ns1-3.3.0a1715761100.dist-info → pulumi_ns1-3.3.0a1716395337.dist-info}/top_level.txt
RENAMED
File without changes
|