pulumi-ns1 3.6.2a1744169292__py3-none-any.whl → 3.7.0a1744265376__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_ns1/__init__.py +1 -0
- pulumi_ns1/_inputs.py +344 -343
- pulumi_ns1/account_whitelist.py +29 -28
- pulumi_ns1/alert.py +113 -112
- pulumi_ns1/api_key.py +416 -415
- pulumi_ns1/application.py +59 -58
- pulumi_ns1/config/__init__.py +1 -0
- pulumi_ns1/config/__init__.pyi +1 -0
- pulumi_ns1/config/vars.py +1 -0
- pulumi_ns1/data_feed.py +43 -42
- pulumi_ns1/data_source.py +43 -42
- pulumi_ns1/dataset.py +31 -30
- pulumi_ns1/dnsview.py +71 -70
- pulumi_ns1/get_billing_usage.py +30 -29
- pulumi_ns1/get_dns_sec.py +7 -6
- pulumi_ns1/get_monitoring_regions.py +2 -1
- pulumi_ns1/get_networks.py +2 -1
- pulumi_ns1/get_record.py +25 -24
- pulumi_ns1/get_zone.py +33 -32
- pulumi_ns1/monitoring_job.py +207 -206
- pulumi_ns1/notify_list.py +15 -14
- pulumi_ns1/outputs.py +292 -291
- pulumi_ns1/provider.py +46 -45
- pulumi_ns1/pulsar_job.py +66 -65
- pulumi_ns1/pulumi-plugin.json +1 -1
- pulumi_ns1/record.py +149 -148
- pulumi_ns1/redirect.py +137 -136
- pulumi_ns1/redirect_certificate.py +36 -35
- pulumi_ns1/team.py +365 -364
- pulumi_ns1/tsigkey.py +43 -42
- pulumi_ns1/user.py +449 -448
- pulumi_ns1/zone.py +244 -243
- {pulumi_ns1-3.6.2a1744169292.dist-info → pulumi_ns1-3.7.0a1744265376.dist-info}/METADATA +1 -1
- pulumi_ns1-3.7.0a1744265376.dist-info/RECORD +38 -0
- pulumi_ns1-3.6.2a1744169292.dist-info/RECORD +0 -38
- {pulumi_ns1-3.6.2a1744169292.dist-info → pulumi_ns1-3.7.0a1744265376.dist-info}/WHEEL +0 -0
- {pulumi_ns1-3.6.2a1744169292.dist-info → pulumi_ns1-3.7.0a1744265376.dist-info}/top_level.txt +0 -0
pulumi_ns1/__init__.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
from . import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|