pulumi-linode 5.2.0a1752905257__py3-none-any.whl → 5.2.0a1753397983__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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
- pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
- pulumi_linode-5.2.0a1752905257.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
pulumi_linode/get_lke_types.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,30 +45,30 @@ class GetLkeTypesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'types' to be a list")
|
|
47
46
|
pulumi.set(__self__, "types", types)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetLkeTypesFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The ID representing the Kubernetes type.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def order(self) -> Optional[
|
|
63
|
+
def order(self) -> Optional[_builtins.str]:
|
|
65
64
|
return pulumi.get(self, "order")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="orderBy")
|
|
69
|
-
def order_by(self) -> Optional[
|
|
68
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order_by")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
73
|
def types(self) -> Optional[Sequence['outputs.GetLkeTypesTypeResult']]:
|
|
75
74
|
return pulumi.get(self, "types")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetLkeTypesResult(GetLkeTypesResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_lke_types(filters: Optional[Sequence[Union['GetLkeTypesFilterArgs', 'GetLkeTypesFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
types: Optional[Sequence[Union['GetLkeTypesTypeArgs', 'GetLkeTypesTypeArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLkeTypesResult:
|
|
96
95
|
"""
|
|
@@ -98,8 +97,8 @@ def get_lke_types(filters: Optional[Sequence[Union['GetLkeTypesFilterArgs', 'Get
|
|
|
98
97
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-lke-types).
|
|
99
98
|
|
|
100
99
|
|
|
101
|
-
:param
|
|
102
|
-
:param
|
|
100
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
101
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
103
102
|
"""
|
|
104
103
|
__args__ = dict()
|
|
105
104
|
__args__['filters'] = filters
|
|
@@ -116,8 +115,8 @@ def get_lke_types(filters: Optional[Sequence[Union['GetLkeTypesFilterArgs', 'Get
|
|
|
116
115
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
117
116
|
types=pulumi.get(__ret__, 'types'))
|
|
118
117
|
def get_lke_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeTypesFilterArgs', 'GetLkeTypesFilterArgsDict']]]]] = None,
|
|
119
|
-
order: Optional[pulumi.Input[Optional[
|
|
120
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
118
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
119
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
121
120
|
types: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeTypesTypeArgs', 'GetLkeTypesTypeArgsDict']]]]] = None,
|
|
122
121
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLkeTypesResult]:
|
|
123
122
|
"""
|
|
@@ -125,8 +124,8 @@ def get_lke_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Union[
|
|
|
125
124
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-lke-types).
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
:param
|
|
129
|
-
:param
|
|
127
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
128
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['filters'] = filters
|
pulumi_linode/get_lke_version.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -35,17 +34,17 @@ class GetLkeVersionResult:
|
|
|
35
34
|
raise TypeError("Expected argument 'tier' to be a str")
|
|
36
35
|
pulumi.set(__self__, "tier", tier)
|
|
37
36
|
|
|
38
|
-
@property
|
|
37
|
+
@_builtins.property
|
|
39
38
|
@pulumi.getter
|
|
40
|
-
def id(self) ->
|
|
39
|
+
def id(self) -> _builtins.str:
|
|
41
40
|
"""
|
|
42
41
|
The Kubernetes version numbers available for deployment to a Kubernetes cluster in the format of [major].[minor], and the latest supported patch version.
|
|
43
42
|
"""
|
|
44
43
|
return pulumi.get(self, "id")
|
|
45
44
|
|
|
46
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
47
46
|
@pulumi.getter
|
|
48
|
-
def tier(self) ->
|
|
47
|
+
def tier(self) -> _builtins.str:
|
|
49
48
|
"""
|
|
50
49
|
The Kubernetes version tier. Only exported if `tier` was provided when using the datasource.
|
|
51
50
|
"""
|
|
@@ -62,8 +61,8 @@ class AwaitableGetLkeVersionResult(GetLkeVersionResult):
|
|
|
62
61
|
tier=self.tier)
|
|
63
62
|
|
|
64
63
|
|
|
65
|
-
def get_lke_version(id: Optional[
|
|
66
|
-
tier: Optional[
|
|
64
|
+
def get_lke_version(id: Optional[_builtins.str] = None,
|
|
65
|
+
tier: Optional[_builtins.str] = None,
|
|
67
66
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLkeVersionResult:
|
|
68
67
|
"""
|
|
69
68
|
Provides details about a specific Kubernetes versions available for deployment to a Kubernetes cluster.
|
|
@@ -94,8 +93,8 @@ def get_lke_version(id: Optional[builtins.str] = None,
|
|
|
94
93
|
```
|
|
95
94
|
|
|
96
95
|
|
|
97
|
-
:param
|
|
98
|
-
:param
|
|
96
|
+
:param _builtins.str id: The unique ID of this Linode LKE Version.
|
|
97
|
+
:param _builtins.str tier: The tier (`standard` or `enterprise`) of Linode LKE Version to fetch.
|
|
99
98
|
"""
|
|
100
99
|
__args__ = dict()
|
|
101
100
|
__args__['id'] = id
|
|
@@ -106,8 +105,8 @@ def get_lke_version(id: Optional[builtins.str] = None,
|
|
|
106
105
|
return AwaitableGetLkeVersionResult(
|
|
107
106
|
id=pulumi.get(__ret__, 'id'),
|
|
108
107
|
tier=pulumi.get(__ret__, 'tier'))
|
|
109
|
-
def get_lke_version_output(id: Optional[pulumi.Input[
|
|
110
|
-
tier: Optional[pulumi.Input[Optional[
|
|
108
|
+
def get_lke_version_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
109
|
+
tier: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
111
110
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLkeVersionResult]:
|
|
112
111
|
"""
|
|
113
112
|
Provides details about a specific Kubernetes versions available for deployment to a Kubernetes cluster.
|
|
@@ -138,8 +137,8 @@ def get_lke_version_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
138
137
|
```
|
|
139
138
|
|
|
140
139
|
|
|
141
|
-
:param
|
|
142
|
-
:param
|
|
140
|
+
:param _builtins.str id: The unique ID of this Linode LKE Version.
|
|
141
|
+
:param _builtins.str tier: The tier (`standard` or `enterprise`) of Linode LKE Version to fetch.
|
|
143
142
|
"""
|
|
144
143
|
__args__ = dict()
|
|
145
144
|
__args__['id'] = id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -40,23 +39,23 @@ class GetLkeVersionsResult:
|
|
|
40
39
|
raise TypeError("Expected argument 'versions' to be a list")
|
|
41
40
|
pulumi.set(__self__, "versions", versions)
|
|
42
41
|
|
|
43
|
-
@property
|
|
42
|
+
@_builtins.property
|
|
44
43
|
@pulumi.getter
|
|
45
|
-
def id(self) ->
|
|
44
|
+
def id(self) -> _builtins.str:
|
|
46
45
|
"""
|
|
47
46
|
The Kubernetes version numbers available for deployment to a Kubernetes cluster in the format of [major].[minor], and the latest supported patch version.
|
|
48
47
|
"""
|
|
49
48
|
return pulumi.get(self, "id")
|
|
50
49
|
|
|
51
|
-
@property
|
|
50
|
+
@_builtins.property
|
|
52
51
|
@pulumi.getter
|
|
53
|
-
def tier(self) -> Optional[
|
|
52
|
+
def tier(self) -> Optional[_builtins.str]:
|
|
54
53
|
"""
|
|
55
54
|
The Kubernetes version tier. Only exported if `tier` was provided when using the datasource.
|
|
56
55
|
"""
|
|
57
56
|
return pulumi.get(self, "tier")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
60
|
def versions(self) -> Optional[Sequence['outputs.GetLkeVersionsVersionResult']]:
|
|
62
61
|
return pulumi.get(self, "versions")
|
|
@@ -73,7 +72,7 @@ class AwaitableGetLkeVersionsResult(GetLkeVersionsResult):
|
|
|
73
72
|
versions=self.versions)
|
|
74
73
|
|
|
75
74
|
|
|
76
|
-
def get_lke_versions(tier: Optional[
|
|
75
|
+
def get_lke_versions(tier: Optional[_builtins.str] = None,
|
|
77
76
|
versions: Optional[Sequence[Union['GetLkeVersionsVersionArgs', 'GetLkeVersionsVersionArgsDict']]] = None,
|
|
78
77
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLkeVersionsResult:
|
|
79
78
|
"""
|
|
@@ -108,7 +107,7 @@ def get_lke_versions(tier: Optional[builtins.str] = None,
|
|
|
108
107
|
```
|
|
109
108
|
|
|
110
109
|
|
|
111
|
-
:param
|
|
110
|
+
:param _builtins.str tier: The tier (`standard` or `enterprise`) of Linode LKE Versions to fetch.
|
|
112
111
|
"""
|
|
113
112
|
__args__ = dict()
|
|
114
113
|
__args__['tier'] = tier
|
|
@@ -120,7 +119,7 @@ def get_lke_versions(tier: Optional[builtins.str] = None,
|
|
|
120
119
|
id=pulumi.get(__ret__, 'id'),
|
|
121
120
|
tier=pulumi.get(__ret__, 'tier'),
|
|
122
121
|
versions=pulumi.get(__ret__, 'versions'))
|
|
123
|
-
def get_lke_versions_output(tier: Optional[pulumi.Input[Optional[
|
|
122
|
+
def get_lke_versions_output(tier: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
124
123
|
versions: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeVersionsVersionArgs', 'GetLkeVersionsVersionArgsDict']]]]] = None,
|
|
125
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLkeVersionsResult]:
|
|
126
125
|
"""
|
|
@@ -155,7 +154,7 @@ def get_lke_versions_output(tier: Optional[pulumi.Input[Optional[builtins.str]]]
|
|
|
155
154
|
```
|
|
156
155
|
|
|
157
156
|
|
|
158
|
-
:param
|
|
157
|
+
:param _builtins.str tier: The tier (`standard` or `enterprise`) of Linode LKE Versions to fetch.
|
|
159
158
|
"""
|
|
160
159
|
__args__ = dict()
|
|
161
160
|
__args__['tier'] = tier
|
pulumi_linode/get_nb_types.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,27 +45,27 @@ class GetNbTypesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'types' to be a list")
|
|
47
46
|
pulumi.set(__self__, "types", types)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetNbTypesFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
return pulumi.get(self, "id")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def order(self) -> Optional[
|
|
60
|
+
def order(self) -> Optional[_builtins.str]:
|
|
62
61
|
return pulumi.get(self, "order")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter(name="orderBy")
|
|
66
|
-
def order_by(self) -> Optional[
|
|
65
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
67
66
|
return pulumi.get(self, "order_by")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def types(self) -> Optional[Sequence['outputs.GetNbTypesTypeResult']]:
|
|
72
71
|
return pulumi.get(self, "types")
|
|
@@ -86,8 +85,8 @@ class AwaitableGetNbTypesResult(GetNbTypesResult):
|
|
|
86
85
|
|
|
87
86
|
|
|
88
87
|
def get_nb_types(filters: Optional[Sequence[Union['GetNbTypesFilterArgs', 'GetNbTypesFilterArgsDict']]] = None,
|
|
89
|
-
order: Optional[
|
|
90
|
-
order_by: Optional[
|
|
88
|
+
order: Optional[_builtins.str] = None,
|
|
89
|
+
order_by: Optional[_builtins.str] = None,
|
|
91
90
|
types: Optional[Sequence[Union['GetNbTypesTypeArgs', 'GetNbTypesTypeArgsDict']]] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNbTypesResult:
|
|
93
92
|
"""
|
|
@@ -108,8 +107,8 @@ def get_nb_types(filters: Optional[Sequence[Union['GetNbTypesFilterArgs', 'GetNb
|
|
|
108
107
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
109
108
|
types=pulumi.get(__ret__, 'types'))
|
|
110
109
|
def get_nb_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetNbTypesFilterArgs', 'GetNbTypesFilterArgsDict']]]]] = None,
|
|
111
|
-
order: Optional[pulumi.Input[Optional[
|
|
112
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
110
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
111
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
113
112
|
types: Optional[pulumi.Input[Optional[Sequence[Union['GetNbTypesTypeArgs', 'GetNbTypesTypeArgsDict']]]]] = None,
|
|
114
113
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNbTypesResult]:
|
|
115
114
|
"""
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,30 +45,30 @@ class GetNetworkTransferPricesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'types' to be a list")
|
|
47
46
|
pulumi.set(__self__, "types", types)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetNetworkTransferPricesFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The ID representing the Network Transfer Price.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def order(self) -> Optional[
|
|
63
|
+
def order(self) -> Optional[_builtins.str]:
|
|
65
64
|
return pulumi.get(self, "order")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="orderBy")
|
|
69
|
-
def order_by(self) -> Optional[
|
|
68
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order_by")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
73
|
def types(self) -> Optional[Sequence['outputs.GetNetworkTransferPricesTypeResult']]:
|
|
75
74
|
return pulumi.get(self, "types")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetNetworkTransferPricesResult(GetNetworkTransferPricesResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_network_transfer_prices(filters: Optional[Sequence[Union['GetNetworkTransferPricesFilterArgs', 'GetNetworkTransferPricesFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
types: Optional[Sequence[Union['GetNetworkTransferPricesTypeArgs', 'GetNetworkTransferPricesTypeArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkTransferPricesResult:
|
|
96
95
|
"""
|
|
@@ -98,8 +97,8 @@ def get_network_transfer_prices(filters: Optional[Sequence[Union['GetNetworkTran
|
|
|
98
97
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
|
|
99
98
|
|
|
100
99
|
|
|
101
|
-
:param
|
|
102
|
-
:param
|
|
100
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
101
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
103
102
|
"""
|
|
104
103
|
__args__ = dict()
|
|
105
104
|
__args__['filters'] = filters
|
|
@@ -116,8 +115,8 @@ def get_network_transfer_prices(filters: Optional[Sequence[Union['GetNetworkTran
|
|
|
116
115
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
117
116
|
types=pulumi.get(__ret__, 'types'))
|
|
118
117
|
def get_network_transfer_prices_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetNetworkTransferPricesFilterArgs', 'GetNetworkTransferPricesFilterArgsDict']]]]] = None,
|
|
119
|
-
order: Optional[pulumi.Input[Optional[
|
|
120
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
118
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
119
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
121
120
|
types: Optional[pulumi.Input[Optional[Sequence[Union['GetNetworkTransferPricesTypeArgs', 'GetNetworkTransferPricesTypeArgsDict']]]]] = None,
|
|
122
121
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkTransferPricesResult]:
|
|
123
122
|
"""
|
|
@@ -125,8 +124,8 @@ def get_network_transfer_prices_output(filters: Optional[pulumi.Input[Optional[S
|
|
|
125
124
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
:param
|
|
129
|
-
:param
|
|
127
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
128
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['filters'] = filters
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -66,92 +65,92 @@ class GetNetworkingIpResult:
|
|
|
66
65
|
raise TypeError("Expected argument 'vpc_nat11' to be a dict")
|
|
67
66
|
pulumi.set(__self__, "vpc_nat11", vpc_nat11)
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def address(self) ->
|
|
70
|
+
def address(self) -> _builtins.str:
|
|
72
71
|
"""
|
|
73
72
|
The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
|
|
74
73
|
"""
|
|
75
74
|
return pulumi.get(self, "address")
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter
|
|
79
|
-
def gateway(self) ->
|
|
78
|
+
def gateway(self) -> _builtins.str:
|
|
80
79
|
"""
|
|
81
80
|
The default gateway for this address.
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "gateway")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def id(self) ->
|
|
86
|
+
def id(self) -> _builtins.str:
|
|
88
87
|
return pulumi.get(self, "id")
|
|
89
88
|
|
|
90
|
-
@property
|
|
89
|
+
@_builtins.property
|
|
91
90
|
@pulumi.getter(name="linodeId")
|
|
92
|
-
def linode_id(self) ->
|
|
91
|
+
def linode_id(self) -> _builtins.int:
|
|
93
92
|
"""
|
|
94
93
|
The ID of the Linode this address currently belongs to.
|
|
95
94
|
"""
|
|
96
95
|
return pulumi.get(self, "linode_id")
|
|
97
96
|
|
|
98
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
99
98
|
@pulumi.getter
|
|
100
|
-
def prefix(self) ->
|
|
99
|
+
def prefix(self) -> _builtins.int:
|
|
101
100
|
"""
|
|
102
101
|
The number of bits set in the subnet mask.
|
|
103
102
|
"""
|
|
104
103
|
return pulumi.get(self, "prefix")
|
|
105
104
|
|
|
106
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
107
106
|
@pulumi.getter
|
|
108
|
-
def public(self) ->
|
|
107
|
+
def public(self) -> _builtins.bool:
|
|
109
108
|
"""
|
|
110
109
|
Whether this is a public or private IP address.
|
|
111
110
|
"""
|
|
112
111
|
return pulumi.get(self, "public")
|
|
113
112
|
|
|
114
|
-
@property
|
|
113
|
+
@_builtins.property
|
|
115
114
|
@pulumi.getter
|
|
116
|
-
def rdns(self) ->
|
|
115
|
+
def rdns(self) -> _builtins.str:
|
|
117
116
|
"""
|
|
118
117
|
The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
|
|
119
118
|
"""
|
|
120
119
|
return pulumi.get(self, "rdns")
|
|
121
120
|
|
|
122
|
-
@property
|
|
121
|
+
@_builtins.property
|
|
123
122
|
@pulumi.getter
|
|
124
|
-
def region(self) ->
|
|
123
|
+
def region(self) -> _builtins.str:
|
|
125
124
|
"""
|
|
126
125
|
The Region this IP address resides in. See all regions [here](https://api.linode.com/v4/regions).
|
|
127
126
|
"""
|
|
128
127
|
return pulumi.get(self, "region")
|
|
129
128
|
|
|
130
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
131
130
|
@pulumi.getter
|
|
132
|
-
def reserved(self) ->
|
|
131
|
+
def reserved(self) -> _builtins.bool:
|
|
133
132
|
"""
|
|
134
133
|
Whether this IP address is a reserved IP.
|
|
135
134
|
"""
|
|
136
135
|
return pulumi.get(self, "reserved")
|
|
137
136
|
|
|
138
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
139
138
|
@pulumi.getter(name="subnetMask")
|
|
140
|
-
def subnet_mask(self) ->
|
|
139
|
+
def subnet_mask(self) -> _builtins.str:
|
|
141
140
|
"""
|
|
142
141
|
The mask that separates host bits from network bits for this address.
|
|
143
142
|
"""
|
|
144
143
|
return pulumi.get(self, "subnet_mask")
|
|
145
144
|
|
|
146
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
147
146
|
@pulumi.getter
|
|
148
|
-
def type(self) ->
|
|
147
|
+
def type(self) -> _builtins.str:
|
|
149
148
|
"""
|
|
150
149
|
The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
|
|
151
150
|
"""
|
|
152
151
|
return pulumi.get(self, "type")
|
|
153
152
|
|
|
154
|
-
@property
|
|
153
|
+
@_builtins.property
|
|
155
154
|
@pulumi.getter(name="vpcNat11")
|
|
156
155
|
def vpc_nat11(self) -> 'outputs.GetNetworkingIpVpcNat11Result':
|
|
157
156
|
"""
|
|
@@ -180,7 +179,7 @@ class AwaitableGetNetworkingIpResult(GetNetworkingIpResult):
|
|
|
180
179
|
vpc_nat11=self.vpc_nat11)
|
|
181
180
|
|
|
182
181
|
|
|
183
|
-
def get_networking_ip(address: Optional[
|
|
182
|
+
def get_networking_ip(address: Optional[_builtins.str] = None,
|
|
184
183
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkingIpResult:
|
|
185
184
|
"""
|
|
186
185
|
Provides information about a Linode Networking IP Address
|
|
@@ -198,7 +197,7 @@ def get_networking_ip(address: Optional[builtins.str] = None,
|
|
|
198
197
|
```
|
|
199
198
|
|
|
200
199
|
|
|
201
|
-
:param
|
|
200
|
+
:param _builtins.str address: The IP Address to access. The address must be associated with the account and a resource that the user has access to view.
|
|
202
201
|
"""
|
|
203
202
|
__args__ = dict()
|
|
204
203
|
__args__['address'] = address
|
|
@@ -218,7 +217,7 @@ def get_networking_ip(address: Optional[builtins.str] = None,
|
|
|
218
217
|
subnet_mask=pulumi.get(__ret__, 'subnet_mask'),
|
|
219
218
|
type=pulumi.get(__ret__, 'type'),
|
|
220
219
|
vpc_nat11=pulumi.get(__ret__, 'vpc_nat11'))
|
|
221
|
-
def get_networking_ip_output(address: Optional[pulumi.Input[
|
|
220
|
+
def get_networking_ip_output(address: Optional[pulumi.Input[_builtins.str]] = None,
|
|
222
221
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkingIpResult]:
|
|
223
222
|
"""
|
|
224
223
|
Provides information about a Linode Networking IP Address
|
|
@@ -236,7 +235,7 @@ def get_networking_ip_output(address: Optional[pulumi.Input[builtins.str]] = Non
|
|
|
236
235
|
```
|
|
237
236
|
|
|
238
237
|
|
|
239
|
-
:param
|
|
238
|
+
:param _builtins.str address: The IP Address to access. The address must be associated with the account and a resource that the user has access to view.
|
|
240
239
|
"""
|
|
241
240
|
__args__ = dict()
|
|
242
241
|
__args__['address'] = address
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,29 +45,29 @@ class GetNetworkingIpsResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
47
46
|
pulumi.set(__self__, "order_by", order_by)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetNetworkingIpsFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
return pulumi.get(self, "id")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter(name="ipAddresses")
|
|
61
60
|
def ip_addresses(self) -> Optional[Sequence['outputs.GetNetworkingIpsIpAddressResult']]:
|
|
62
61
|
return pulumi.get(self, "ip_addresses")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
|
-
def order(self) -> Optional[
|
|
65
|
+
def order(self) -> Optional[_builtins.str]:
|
|
67
66
|
return pulumi.get(self, "order")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter(name="orderBy")
|
|
71
|
-
def order_by(self) -> Optional[
|
|
70
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
72
71
|
return pulumi.get(self, "order_by")
|
|
73
72
|
|
|
74
73
|
|
|
@@ -87,8 +86,8 @@ class AwaitableGetNetworkingIpsResult(GetNetworkingIpsResult):
|
|
|
87
86
|
|
|
88
87
|
def get_networking_ips(filters: Optional[Sequence[Union['GetNetworkingIpsFilterArgs', 'GetNetworkingIpsFilterArgsDict']]] = None,
|
|
89
88
|
ip_addresses: Optional[Sequence[Union['GetNetworkingIpsIpAddressArgs', 'GetNetworkingIpsIpAddressArgsDict']]] = None,
|
|
90
|
-
order: Optional[
|
|
91
|
-
order_by: Optional[
|
|
89
|
+
order: Optional[_builtins.str] = None,
|
|
90
|
+
order_by: Optional[_builtins.str] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkingIpsResult:
|
|
93
92
|
"""
|
|
94
93
|
Provides information about all IP addresses associated with the current Linode account, including both assigned and unassigned reserved IP addresses.
|
|
@@ -139,8 +138,8 @@ def get_networking_ips(filters: Optional[Sequence[Union['GetNetworkingIpsFilterA
|
|
|
139
138
|
* `reserved`
|
|
140
139
|
|
|
141
140
|
|
|
142
|
-
:param
|
|
143
|
-
:param
|
|
141
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
142
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
144
143
|
"""
|
|
145
144
|
__args__ = dict()
|
|
146
145
|
__args__['filters'] = filters
|
|
@@ -158,8 +157,8 @@ def get_networking_ips(filters: Optional[Sequence[Union['GetNetworkingIpsFilterA
|
|
|
158
157
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
159
158
|
def get_networking_ips_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetNetworkingIpsFilterArgs', 'GetNetworkingIpsFilterArgsDict']]]]] = None,
|
|
160
159
|
ip_addresses: Optional[pulumi.Input[Optional[Sequence[Union['GetNetworkingIpsIpAddressArgs', 'GetNetworkingIpsIpAddressArgsDict']]]]] = None,
|
|
161
|
-
order: Optional[pulumi.Input[Optional[
|
|
162
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
160
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
161
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
163
162
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkingIpsResult]:
|
|
164
163
|
"""
|
|
165
164
|
Provides information about all IP addresses associated with the current Linode account, including both assigned and unassigned reserved IP addresses.
|
|
@@ -210,8 +209,8 @@ def get_networking_ips_output(filters: Optional[pulumi.Input[Optional[Sequence[U
|
|
|
210
209
|
* `reserved`
|
|
211
210
|
|
|
212
211
|
|
|
213
|
-
:param
|
|
214
|
-
:param
|
|
212
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
213
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
215
214
|
"""
|
|
216
215
|
__args__ = dict()
|
|
217
216
|
__args__['filters'] = filters
|