pulumi-linode 5.3.0a1757052548__py3-none-any.whl → 5.4.0__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 +2 -0
- pulumi_linode/_inputs.py +1305 -301
- pulumi_linode/database_mysql_v2.py +61 -0
- pulumi_linode/database_postgresql_v2.py +61 -0
- pulumi_linode/get_database_mysql_v2.py +32 -1
- pulumi_linode/get_database_postgresql_v2.py +32 -1
- pulumi_linode/get_databases.py +20 -0
- pulumi_linode/get_lke_cluster.py +46 -4
- pulumi_linode/get_node_balancer.py +15 -4
- pulumi_linode/get_node_balancer_node.py +29 -1
- pulumi_linode/get_nodebalancer_vpc.py +166 -0
- pulumi_linode/get_nodebalancer_vpcs.py +238 -0
- pulumi_linode/get_user.py +1 -16
- pulumi_linode/get_vpc.py +40 -1
- pulumi_linode/get_vpc_ips.py +34 -7
- pulumi_linode/get_vpc_subnet.py +28 -1
- pulumi_linode/get_vpc_subnets.py +16 -0
- pulumi_linode/get_vpcs.py +16 -0
- pulumi_linode/lke_cluster.py +144 -3
- pulumi_linode/node_balancer.py +54 -3
- pulumi_linode/node_balancer_node.py +75 -0
- pulumi_linode/outputs.py +1327 -205
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/user.py +0 -51
- pulumi_linode/vpc.py +118 -1
- pulumi_linode/vpc_subnet.py +150 -26
- {pulumi_linode-5.3.0a1757052548.dist-info → pulumi_linode-5.4.0.dist-info}/METADATA +1 -1
- {pulumi_linode-5.3.0a1757052548.dist-info → pulumi_linode-5.4.0.dist-info}/RECORD +30 -28
- {pulumi_linode-5.3.0a1757052548.dist-info → pulumi_linode-5.4.0.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.3.0a1757052548.dist-info → pulumi_linode-5.4.0.dist-info}/top_level.txt +0 -0
pulumi_linode/vpc_subnet.py
CHANGED
|
@@ -21,30 +21,25 @@ __all__ = ['VpcSubnetArgs', 'VpcSubnet']
|
|
|
21
21
|
@pulumi.input_type
|
|
22
22
|
class VpcSubnetArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
|
-
ipv4: pulumi.Input[_builtins.str],
|
|
25
24
|
label: pulumi.Input[_builtins.str],
|
|
26
|
-
vpc_id: pulumi.Input[_builtins.int]
|
|
25
|
+
vpc_id: pulumi.Input[_builtins.int],
|
|
26
|
+
ipv4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
ipv6s: Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a VpcSubnet resource.
|
|
29
|
-
:param pulumi.Input[_builtins.str] ipv4: The IPv4 range of this subnet in CIDR format.
|
|
30
30
|
:param pulumi.Input[_builtins.str] label: The label of the VPC. Only contains ASCII letters, digits and dashes.
|
|
31
|
-
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC
|
|
31
|
+
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC subnet.
|
|
32
|
+
:param pulumi.Input[_builtins.str] ipv4: The IPv4 range of this subnet in CIDR format.
|
|
33
|
+
|
|
34
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
35
|
+
:param pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]] ipv6s: The IPv6 ranges of this subnet.
|
|
32
36
|
"""
|
|
33
|
-
pulumi.set(__self__, "ipv4", ipv4)
|
|
34
37
|
pulumi.set(__self__, "label", label)
|
|
35
38
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"""
|
|
41
|
-
The IPv4 range of this subnet in CIDR format.
|
|
42
|
-
"""
|
|
43
|
-
return pulumi.get(self, "ipv4")
|
|
44
|
-
|
|
45
|
-
@ipv4.setter
|
|
46
|
-
def ipv4(self, value: pulumi.Input[_builtins.str]):
|
|
47
|
-
pulumi.set(self, "ipv4", value)
|
|
39
|
+
if ipv4 is not None:
|
|
40
|
+
pulumi.set(__self__, "ipv4", ipv4)
|
|
41
|
+
if ipv6s is not None:
|
|
42
|
+
pulumi.set(__self__, "ipv6s", ipv6s)
|
|
48
43
|
|
|
49
44
|
@_builtins.property
|
|
50
45
|
@pulumi.getter
|
|
@@ -62,7 +57,7 @@ class VpcSubnetArgs:
|
|
|
62
57
|
@pulumi.getter(name="vpcId")
|
|
63
58
|
def vpc_id(self) -> pulumi.Input[_builtins.int]:
|
|
64
59
|
"""
|
|
65
|
-
The id of the parent VPC for this VPC
|
|
60
|
+
The id of the parent VPC for this VPC subnet.
|
|
66
61
|
"""
|
|
67
62
|
return pulumi.get(self, "vpc_id")
|
|
68
63
|
|
|
@@ -70,12 +65,39 @@ class VpcSubnetArgs:
|
|
|
70
65
|
def vpc_id(self, value: pulumi.Input[_builtins.int]):
|
|
71
66
|
pulumi.set(self, "vpc_id", value)
|
|
72
67
|
|
|
68
|
+
@_builtins.property
|
|
69
|
+
@pulumi.getter
|
|
70
|
+
def ipv4(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
71
|
+
"""
|
|
72
|
+
The IPv4 range of this subnet in CIDR format.
|
|
73
|
+
|
|
74
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "ipv4")
|
|
77
|
+
|
|
78
|
+
@ipv4.setter
|
|
79
|
+
def ipv4(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
80
|
+
pulumi.set(self, "ipv4", value)
|
|
81
|
+
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def ipv6s(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]]:
|
|
85
|
+
"""
|
|
86
|
+
The IPv6 ranges of this subnet.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "ipv6s")
|
|
89
|
+
|
|
90
|
+
@ipv6s.setter
|
|
91
|
+
def ipv6s(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]]):
|
|
92
|
+
pulumi.set(self, "ipv6s", value)
|
|
93
|
+
|
|
73
94
|
|
|
74
95
|
@pulumi.input_type
|
|
75
96
|
class _VpcSubnetState:
|
|
76
97
|
def __init__(__self__, *,
|
|
77
98
|
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
99
|
ipv4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
100
|
+
ipv6s: Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]] = None,
|
|
79
101
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
80
102
|
linodes: Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetLinodeArgs']]]] = None,
|
|
81
103
|
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -84,15 +106,20 @@ class _VpcSubnetState:
|
|
|
84
106
|
Input properties used for looking up and filtering VpcSubnet resources.
|
|
85
107
|
:param pulumi.Input[_builtins.str] created: The date and time when the VPC was created.
|
|
86
108
|
:param pulumi.Input[_builtins.str] ipv4: The IPv4 range of this subnet in CIDR format.
|
|
109
|
+
|
|
110
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
111
|
+
:param pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]] ipv6s: The IPv6 ranges of this subnet.
|
|
87
112
|
:param pulumi.Input[_builtins.str] label: The label of the VPC. Only contains ASCII letters, digits and dashes.
|
|
88
113
|
:param pulumi.Input[Sequence[pulumi.Input['VpcSubnetLinodeArgs']]] linodes: A list of Linode IDs that added to this subnet.
|
|
89
114
|
:param pulumi.Input[_builtins.str] updated: The date and time when the VPC was last updated.
|
|
90
|
-
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC
|
|
115
|
+
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC subnet.
|
|
91
116
|
"""
|
|
92
117
|
if created is not None:
|
|
93
118
|
pulumi.set(__self__, "created", created)
|
|
94
119
|
if ipv4 is not None:
|
|
95
120
|
pulumi.set(__self__, "ipv4", ipv4)
|
|
121
|
+
if ipv6s is not None:
|
|
122
|
+
pulumi.set(__self__, "ipv6s", ipv6s)
|
|
96
123
|
if label is not None:
|
|
97
124
|
pulumi.set(__self__, "label", label)
|
|
98
125
|
if linodes is not None:
|
|
@@ -119,6 +146,8 @@ class _VpcSubnetState:
|
|
|
119
146
|
def ipv4(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
120
147
|
"""
|
|
121
148
|
The IPv4 range of this subnet in CIDR format.
|
|
149
|
+
|
|
150
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
122
151
|
"""
|
|
123
152
|
return pulumi.get(self, "ipv4")
|
|
124
153
|
|
|
@@ -126,6 +155,18 @@ class _VpcSubnetState:
|
|
|
126
155
|
def ipv4(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
127
156
|
pulumi.set(self, "ipv4", value)
|
|
128
157
|
|
|
158
|
+
@_builtins.property
|
|
159
|
+
@pulumi.getter
|
|
160
|
+
def ipv6s(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]]:
|
|
161
|
+
"""
|
|
162
|
+
The IPv6 ranges of this subnet.
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "ipv6s")
|
|
165
|
+
|
|
166
|
+
@ipv6s.setter
|
|
167
|
+
def ipv6s(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VpcSubnetIpv6Args']]]]):
|
|
168
|
+
pulumi.set(self, "ipv6s", value)
|
|
169
|
+
|
|
129
170
|
@_builtins.property
|
|
130
171
|
@pulumi.getter
|
|
131
172
|
def label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -166,7 +207,7 @@ class _VpcSubnetState:
|
|
|
166
207
|
@pulumi.getter(name="vpcId")
|
|
167
208
|
def vpc_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
168
209
|
"""
|
|
169
|
-
The id of the parent VPC for this VPC
|
|
210
|
+
The id of the parent VPC for this VPC subnet.
|
|
170
211
|
"""
|
|
171
212
|
return pulumi.get(self, "vpc_id")
|
|
172
213
|
|
|
@@ -182,6 +223,7 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
182
223
|
resource_name: str,
|
|
183
224
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
184
225
|
ipv4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
226
|
+
ipv6s: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetIpv6Args', 'VpcSubnetIpv6ArgsDict']]]]] = None,
|
|
185
227
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
186
228
|
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
187
229
|
__props__=None):
|
|
@@ -203,6 +245,38 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
203
245
|
ipv4="10.0.0.0/24")
|
|
204
246
|
```
|
|
205
247
|
|
|
248
|
+
Create a VPC subnet with an implicitly determined IPv6 range:
|
|
249
|
+
|
|
250
|
+
```python
|
|
251
|
+
import pulumi
|
|
252
|
+
import pulumi_linode as linode
|
|
253
|
+
|
|
254
|
+
test_vpc = linode.Vpc("test",
|
|
255
|
+
label="test-vpc",
|
|
256
|
+
region="us-mia",
|
|
257
|
+
ipv6s=[{
|
|
258
|
+
"range": "/52",
|
|
259
|
+
}])
|
|
260
|
+
# NOTE: IPv6 VPCs may not currently be available to all users.
|
|
261
|
+
test = linode.VpcSubnet("test",
|
|
262
|
+
vpc_id=test_vpc.id,
|
|
263
|
+
label="test-subnet",
|
|
264
|
+
ipv4="10.0.0.0/24",
|
|
265
|
+
ipv6s=[{
|
|
266
|
+
"range": "auto",
|
|
267
|
+
}])
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
## IPv6
|
|
271
|
+
|
|
272
|
+
> **Limited Availability** IPv6 VPCs may not currently be available to all users.
|
|
273
|
+
|
|
274
|
+
The following arguments can be configured for each entry under the `ipv6` field:
|
|
275
|
+
|
|
276
|
+
* `range` - (Optional) An existing IPv6 prefix owned by the current account or a forward slash (/) followed by a valid prefix length. If `auto`, a range with the default prefix will be allocated for this VPC.
|
|
277
|
+
|
|
278
|
+
* `allocated_range` - (Read-Only) The value of range computed by the API. This is necessary when needing to access the range for an implicit allocation.
|
|
279
|
+
|
|
206
280
|
## Import
|
|
207
281
|
|
|
208
282
|
Linode Virtual Private Cloud (VPC) Subnet can be imported using the `vpc_id` followed by the subnet `id` separated by a comma, e.g.
|
|
@@ -214,8 +288,11 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
214
288
|
:param str resource_name: The name of the resource.
|
|
215
289
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
216
290
|
:param pulumi.Input[_builtins.str] ipv4: The IPv4 range of this subnet in CIDR format.
|
|
291
|
+
|
|
292
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
293
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetIpv6Args', 'VpcSubnetIpv6ArgsDict']]]] ipv6s: The IPv6 ranges of this subnet.
|
|
217
294
|
:param pulumi.Input[_builtins.str] label: The label of the VPC. Only contains ASCII letters, digits and dashes.
|
|
218
|
-
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC
|
|
295
|
+
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC subnet.
|
|
219
296
|
"""
|
|
220
297
|
...
|
|
221
298
|
@overload
|
|
@@ -241,6 +318,38 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
241
318
|
ipv4="10.0.0.0/24")
|
|
242
319
|
```
|
|
243
320
|
|
|
321
|
+
Create a VPC subnet with an implicitly determined IPv6 range:
|
|
322
|
+
|
|
323
|
+
```python
|
|
324
|
+
import pulumi
|
|
325
|
+
import pulumi_linode as linode
|
|
326
|
+
|
|
327
|
+
test_vpc = linode.Vpc("test",
|
|
328
|
+
label="test-vpc",
|
|
329
|
+
region="us-mia",
|
|
330
|
+
ipv6s=[{
|
|
331
|
+
"range": "/52",
|
|
332
|
+
}])
|
|
333
|
+
# NOTE: IPv6 VPCs may not currently be available to all users.
|
|
334
|
+
test = linode.VpcSubnet("test",
|
|
335
|
+
vpc_id=test_vpc.id,
|
|
336
|
+
label="test-subnet",
|
|
337
|
+
ipv4="10.0.0.0/24",
|
|
338
|
+
ipv6s=[{
|
|
339
|
+
"range": "auto",
|
|
340
|
+
}])
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
## IPv6
|
|
344
|
+
|
|
345
|
+
> **Limited Availability** IPv6 VPCs may not currently be available to all users.
|
|
346
|
+
|
|
347
|
+
The following arguments can be configured for each entry under the `ipv6` field:
|
|
348
|
+
|
|
349
|
+
* `range` - (Optional) An existing IPv6 prefix owned by the current account or a forward slash (/) followed by a valid prefix length. If `auto`, a range with the default prefix will be allocated for this VPC.
|
|
350
|
+
|
|
351
|
+
* `allocated_range` - (Read-Only) The value of range computed by the API. This is necessary when needing to access the range for an implicit allocation.
|
|
352
|
+
|
|
244
353
|
## Import
|
|
245
354
|
|
|
246
355
|
Linode Virtual Private Cloud (VPC) Subnet can be imported using the `vpc_id` followed by the subnet `id` separated by a comma, e.g.
|
|
@@ -265,6 +374,7 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
265
374
|
resource_name: str,
|
|
266
375
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
267
376
|
ipv4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
377
|
+
ipv6s: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetIpv6Args', 'VpcSubnetIpv6ArgsDict']]]]] = None,
|
|
268
378
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
269
379
|
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
270
380
|
__props__=None):
|
|
@@ -276,9 +386,8 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
276
386
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
277
387
|
__props__ = VpcSubnetArgs.__new__(VpcSubnetArgs)
|
|
278
388
|
|
|
279
|
-
if ipv4 is None and not opts.urn:
|
|
280
|
-
raise TypeError("Missing required property 'ipv4'")
|
|
281
389
|
__props__.__dict__["ipv4"] = ipv4
|
|
390
|
+
__props__.__dict__["ipv6s"] = ipv6s
|
|
282
391
|
if label is None and not opts.urn:
|
|
283
392
|
raise TypeError("Missing required property 'label'")
|
|
284
393
|
__props__.__dict__["label"] = label
|
|
@@ -300,6 +409,7 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
300
409
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
301
410
|
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
302
411
|
ipv4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
412
|
+
ipv6s: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetIpv6Args', 'VpcSubnetIpv6ArgsDict']]]]] = None,
|
|
303
413
|
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
304
414
|
linodes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetLinodeArgs', 'VpcSubnetLinodeArgsDict']]]]] = None,
|
|
305
415
|
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -313,10 +423,13 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
313
423
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
314
424
|
:param pulumi.Input[_builtins.str] created: The date and time when the VPC was created.
|
|
315
425
|
:param pulumi.Input[_builtins.str] ipv4: The IPv4 range of this subnet in CIDR format.
|
|
426
|
+
|
|
427
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
428
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetIpv6Args', 'VpcSubnetIpv6ArgsDict']]]] ipv6s: The IPv6 ranges of this subnet.
|
|
316
429
|
:param pulumi.Input[_builtins.str] label: The label of the VPC. Only contains ASCII letters, digits and dashes.
|
|
317
430
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VpcSubnetLinodeArgs', 'VpcSubnetLinodeArgsDict']]]] linodes: A list of Linode IDs that added to this subnet.
|
|
318
431
|
:param pulumi.Input[_builtins.str] updated: The date and time when the VPC was last updated.
|
|
319
|
-
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC
|
|
432
|
+
:param pulumi.Input[_builtins.int] vpc_id: The id of the parent VPC for this VPC subnet.
|
|
320
433
|
"""
|
|
321
434
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
322
435
|
|
|
@@ -324,6 +437,7 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
324
437
|
|
|
325
438
|
__props__.__dict__["created"] = created
|
|
326
439
|
__props__.__dict__["ipv4"] = ipv4
|
|
440
|
+
__props__.__dict__["ipv6s"] = ipv6s
|
|
327
441
|
__props__.__dict__["label"] = label
|
|
328
442
|
__props__.__dict__["linodes"] = linodes
|
|
329
443
|
__props__.__dict__["updated"] = updated
|
|
@@ -340,12 +454,22 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
340
454
|
|
|
341
455
|
@_builtins.property
|
|
342
456
|
@pulumi.getter
|
|
343
|
-
def ipv4(self) -> pulumi.Output[_builtins.str]:
|
|
457
|
+
def ipv4(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
344
458
|
"""
|
|
345
459
|
The IPv4 range of this subnet in CIDR format.
|
|
460
|
+
|
|
461
|
+
* `ipv6` - (Optional) A list of IPv6 ranges under this VPC subnet. NOTE: IPv6 VPCs may not currently be available to all users.
|
|
346
462
|
"""
|
|
347
463
|
return pulumi.get(self, "ipv4")
|
|
348
464
|
|
|
465
|
+
@_builtins.property
|
|
466
|
+
@pulumi.getter
|
|
467
|
+
def ipv6s(self) -> pulumi.Output[Optional[Sequence['outputs.VpcSubnetIpv6']]]:
|
|
468
|
+
"""
|
|
469
|
+
The IPv6 ranges of this subnet.
|
|
470
|
+
"""
|
|
471
|
+
return pulumi.get(self, "ipv6s")
|
|
472
|
+
|
|
349
473
|
@_builtins.property
|
|
350
474
|
@pulumi.getter
|
|
351
475
|
def label(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -374,7 +498,7 @@ class VpcSubnet(pulumi.CustomResource):
|
|
|
374
498
|
@pulumi.getter(name="vpcId")
|
|
375
499
|
def vpc_id(self) -> pulumi.Output[_builtins.int]:
|
|
376
500
|
"""
|
|
377
|
-
The id of the parent VPC for this VPC
|
|
501
|
+
The id of the parent VPC for this VPC subnet.
|
|
378
502
|
"""
|
|
379
503
|
return pulumi.get(self, "vpc_id")
|
|
380
504
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
pulumi_linode/__init__.py,sha256=
|
|
2
|
-
pulumi_linode/_inputs.py,sha256=
|
|
1
|
+
pulumi_linode/__init__.py,sha256=0po0W8P327Xq-JjqrKqS0IhXpHotQF3TUVt6aij_eH8,10659
|
|
2
|
+
pulumi_linode/_inputs.py,sha256=3YmnYBSeHdtc6Cr-qJLoSyB88J9d8CqC4-lrVb5aPxU,821148
|
|
3
3
|
pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_linode/account_settings.py,sha256=UWngx9uOVtGfI9IieEf8G6dGkPdyC88YxKWFAmMWCgo,20993
|
|
5
5
|
pulumi_linode/database_access_controls.py,sha256=I0F2ORRsi9ZMyJiVF0XLOTfbkGbl5aDu5EfshCx3oGw,13871
|
|
6
6
|
pulumi_linode/database_mysql.py,sha256=TQdE0eNJ_-Oir1Tmt1zad6kw6NBlVAPn4LWQL3KI2Ks,47614
|
|
7
|
-
pulumi_linode/database_mysql_v2.py,sha256=
|
|
7
|
+
pulumi_linode/database_mysql_v2.py,sha256=14f_n6kAkCBCmb5Kd5CY6t72G2zuVwyiABVoX2tirv0,163895
|
|
8
8
|
pulumi_linode/database_postgresql.py,sha256=4Ej-ph5CZQZJL5cB__kMUPd85EE2iJqyn8qaPVhZirg,53589
|
|
9
|
-
pulumi_linode/database_postgresql_v2.py,sha256=
|
|
9
|
+
pulumi_linode/database_postgresql_v2.py,sha256=4OsJF0oHNHcQH3fhYUe06cmHORqda1Qg6ovaS8wV10A,228631
|
|
10
10
|
pulumi_linode/domain.py,sha256=KTQxR8gpXDAJKlesVBjBGHDqRqPNg1A7On56vtSJbuA,43354
|
|
11
11
|
pulumi_linode/domain_record.py,sha256=UI2Or29lN7v55FmynSD5OdNenuozfUsro3KZF-bI008,35866
|
|
12
12
|
pulumi_linode/firewall.py,sha256=lnIbqSUAqB_k0bMtCgiCN149qgZEOEmFLM7o-G-CxxY,38085
|
|
@@ -24,11 +24,11 @@ pulumi_linode/get_database_engines.py,sha256=oZl6w0hWEQSeE05oqfAN58cOiUyv8VO9470
|
|
|
24
24
|
pulumi_linode/get_database_mysql.py,sha256=bTeSpVJzzj-m8TxpP2_SXedZNLJFphV9Zv-Fa01rSSM,17696
|
|
25
25
|
pulumi_linode/get_database_mysql_backups.py,sha256=ZahNB-yqICDMColEWKZjBa__2_WNlTIkuBz0p4u6rJs,9523
|
|
26
26
|
pulumi_linode/get_database_mysql_config.py,sha256=3P5wxZ1ls2He0bYIsFT7QtGbacrZcp60qB47eYiR7cQ,45226
|
|
27
|
-
pulumi_linode/get_database_mysql_v2.py,sha256=
|
|
27
|
+
pulumi_linode/get_database_mysql_v2.py,sha256=SipMT9F67A01whbOrETwBNxG55FH1CuWDkT8yfaImSU,53582
|
|
28
28
|
pulumi_linode/get_database_postgresql.py,sha256=c6sNzFEErwmytAXJLFsrxrDXnfs2htC9N5g68mg0H0c,19193
|
|
29
29
|
pulumi_linode/get_database_postgresql_config.py,sha256=cfmLEw7IJxYepayVzUzpJYxhKBajRtUBMWWcCeIUdek,71027
|
|
30
|
-
pulumi_linode/get_database_postgresql_v2.py,sha256=
|
|
31
|
-
pulumi_linode/get_databases.py,sha256=
|
|
30
|
+
pulumi_linode/get_database_postgresql_v2.py,sha256=5a9DetOZ6csu4EbkadIDlehJG0yZQuqup7g31TXl1b0,73585
|
|
31
|
+
pulumi_linode/get_databases.py,sha256=5vUrJX01dn-OtGpPnjI8gKu3hvQyGEcaLZu57lcyyKc,8166
|
|
32
32
|
pulumi_linode/get_domain.py,sha256=k1u5nP-jiA5DLRa4d1Wm2JRY3yvzY7_IURa8LvtXJTo,11527
|
|
33
33
|
pulumi_linode/get_domain_record.py,sha256=En6b_lkcrh6tbNLLnDL6Rg5Y49MJXoA_vnKhRhiQTgE,10509
|
|
34
34
|
pulumi_linode/get_domain_zonefile.py,sha256=CRYasiZCC2ETn89m_3xEmIyP2fzoqwwsCIB4-Xi0TIU,4794
|
|
@@ -47,7 +47,7 @@ pulumi_linode/get_ipv6_ranges.py,sha256=29bLPyf0N9YEuRca06pZ3fpcRAfV-lWwRQytFz9L
|
|
|
47
47
|
pulumi_linode/get_kernel.py,sha256=JsbxgYihjjfbts2hK5LTKVO_uyfdIXa4_T4Bjaw1hQI,7334
|
|
48
48
|
pulumi_linode/get_kernels.py,sha256=yyaQhU04Y26LwJsmf7k69iDSUDJvXlHmjI0nIsj14bo,7328
|
|
49
49
|
pulumi_linode/get_linode_object_storage_bucket.py,sha256=36puiAf4yRX-1xAupDi3fUkhAwmiLzHhMnn7V6M-i9A,9321
|
|
50
|
-
pulumi_linode/get_lke_cluster.py,sha256=
|
|
50
|
+
pulumi_linode/get_lke_cluster.py,sha256=UmbFJOAHw-9dOd8Eut5fHh4pzZvBY13g2q1uuY8HjIU,14410
|
|
51
51
|
pulumi_linode/get_lke_clusters.py,sha256=hUEIGwa52g_Za-zE19liPtByW7DTAK3CRUWIRxmtUjo,7498
|
|
52
52
|
pulumi_linode/get_lke_types.py,sha256=n7Dac-0shTPa-dF5ObXxWhdNJr2lTbc5ngidO9qjVUY,6144
|
|
53
53
|
pulumi_linode/get_lke_version.py,sha256=I7hmk-rXmmWJvYBVUNVlWvxVxQTpmV5rZD7oSl21PGk,5646
|
|
@@ -57,10 +57,12 @@ pulumi_linode/get_nb_types.py,sha256=t7szCjNY_2za9gYuWZpwdc6L_372ea9KH8PV--0DDKE
|
|
|
57
57
|
pulumi_linode/get_network_transfer_prices.py,sha256=I3P56p6Q1l7oOnHyuMzsfI7PRxU75Pixdt2GcUlIvQU,6726
|
|
58
58
|
pulumi_linode/get_networking_ip.py,sha256=ESNgohwdR_FNvtxyqqHh4NaM7j7oFo2GSTL_uVoDaGM,9932
|
|
59
59
|
pulumi_linode/get_networking_ips.py,sha256=NEaTtDMtU3hl-PvvWyGno65SCtV3zxe9gwZ7-CMeSZY,7651
|
|
60
|
-
pulumi_linode/get_node_balancer.py,sha256=
|
|
60
|
+
pulumi_linode/get_node_balancer.py,sha256=KKGO663v-ECiBggXmwqjubAsG7yccc8jwvt0irmQemg,10942
|
|
61
61
|
pulumi_linode/get_node_balancer_config.py,sha256=fvjPMVxk3FmLCAuplgxoM4eGtFE9CPzH1sDHXvjnQ3M,16885
|
|
62
|
-
pulumi_linode/get_node_balancer_node.py,sha256
|
|
62
|
+
pulumi_linode/get_node_balancer_node.py,sha256=-DOqKOqZwkO0MAVZR5dMpGFF-Xdqw3Euc5s44RoZrak,10011
|
|
63
63
|
pulumi_linode/get_nodebalancer_configs.py,sha256=roMBrLyfnwbNdZdvL7XWZ4HTtglk5XKGayoKsY8guCI,9865
|
|
64
|
+
pulumi_linode/get_nodebalancer_vpc.py,sha256=DlAAT8tBg9YlrkjgOTM3fZAxcJ5ibn97OyydSr6Mx-Q,6792
|
|
65
|
+
pulumi_linode/get_nodebalancer_vpcs.py,sha256=NFRPxZz_XbsWzR2cciLGydyAQGwront197WDMub__c0,9398
|
|
64
66
|
pulumi_linode/get_nodebalancers.py,sha256=liztkhf7EMDJhCosoAoj8Bz0dHVC_fH0E05kEmBDFFI,7928
|
|
65
67
|
pulumi_linode/get_object_storage_cluster.py,sha256=zN7XOw06h_4Ix2h9OE6X7akhpO-DRihwFIeTtKoAgUo,6063
|
|
66
68
|
pulumi_linode/get_object_storage_endpoints.py,sha256=i-qtMWIbl7xqA3gGQ_pYpJM3E6q625ZF4Brwb5RF1TA,8287
|
|
@@ -75,17 +77,17 @@ pulumi_linode/get_ssh_key.py,sha256=hDEpTPPlvbt7mJk-q5Ld3ofxuMue-mGcPDVEepq4zlM,
|
|
|
75
77
|
pulumi_linode/get_sshkeys.py,sha256=5Ea7tq91KdfpNqcO5lryqCOUhQb2_RdysNHkoFLxTIM,7509
|
|
76
78
|
pulumi_linode/get_stack_script.py,sha256=KArE3YvWYX5k8to2rMBli_9cfITi8edVx1iwlQe57X0,11725
|
|
77
79
|
pulumi_linode/get_stack_scripts.py,sha256=a6rHkgZYgxvVW4udJwxmYGkGw5MpS9qgKFXWGARuOA8,9505
|
|
78
|
-
pulumi_linode/get_user.py,sha256=
|
|
80
|
+
pulumi_linode/get_user.py,sha256=fuWXg3-pcFSSzGUFcPJABRA-DcRqCN0WLstMuPSdfUI,19154
|
|
79
81
|
pulumi_linode/get_users.py,sha256=l_DhThvqNR9z0DbOWGQuC_9oafGS5hD4BiQCGUdTJ7M,6836
|
|
80
82
|
pulumi_linode/get_vlans.py,sha256=w6SD6J2ySdjXKY5xclRA8g93hIWJp6Y9vWRpCo2smD8,7576
|
|
81
83
|
pulumi_linode/get_volume.py,sha256=lBu3dVYQBJIuLF6UkQ7yXWypkACp5uWozANsyZu12-4,9167
|
|
82
84
|
pulumi_linode/get_volume_types.py,sha256=_sfvKOAJiVctLCRNgAheiIfgEkijlNLepMvTtUeF1zU,6269
|
|
83
85
|
pulumi_linode/get_volumes.py,sha256=jjc-O46QOxVDT8ZT7t4c_wW-Xm4zQKH7owih3vGAbGs,6740
|
|
84
|
-
pulumi_linode/get_vpc.py,sha256=
|
|
85
|
-
pulumi_linode/get_vpc_ips.py,sha256=
|
|
86
|
-
pulumi_linode/get_vpc_subnet.py,sha256=
|
|
87
|
-
pulumi_linode/get_vpc_subnets.py,sha256=
|
|
88
|
-
pulumi_linode/get_vpcs.py,sha256=
|
|
86
|
+
pulumi_linode/get_vpc.py,sha256=ZTGQGbrHWlbg429afMQ61BOwWVMiOK_H1GXdTis4yBM,7075
|
|
87
|
+
pulumi_linode/get_vpc_ips.py,sha256=FYzV4DYgXDz8iop2H0689lI0GQM2Un0RqhYtyz5knQg,8105
|
|
88
|
+
pulumi_linode/get_vpc_subnet.py,sha256=i3kIJSenSlT7NG6lSuSa1BI_GXiA7JgIVQ4EKEA1gks,7894
|
|
89
|
+
pulumi_linode/get_vpc_subnets.py,sha256=tClxxMK4xh1BkP3YVokF_czo5DfW-JKdw729qhUSr1k,7070
|
|
90
|
+
pulumi_linode/get_vpcs.py,sha256=Ut9EseXv3XLhAy2811UDwZKsBXILwDXNPnOGvjC9WOk,5411
|
|
89
91
|
pulumi_linode/image.py,sha256=nBKTAd7T24-kLbJrWPW87zI5YEmEYPjF7JscVQVUCBA,54747
|
|
90
92
|
pulumi_linode/instance.py,sha256=4ymwcfdI-Hwi4dNvr-hlScA1r2lEahBScGgHf8lB6_A,141014
|
|
91
93
|
pulumi_linode/instance_config.py,sha256=XkUreQSaVptB1OtvTnmmLOFozTKgeoE_P1INFs4S73g,42141
|
|
@@ -93,35 +95,35 @@ pulumi_linode/instance_disk.py,sha256=d8IfpBkdsfd9qQPrgX80L-Ecl3oZYk9IX5NqrvWI1f
|
|
|
93
95
|
pulumi_linode/instance_ip.py,sha256=FlQYwITmNUjSWFwFmXkRKV8qlQvBoVgErZUMcwXEHMQ,22323
|
|
94
96
|
pulumi_linode/instance_shared_ips.py,sha256=IkNiLmaCJ8QPwXPg3Rs3sb8GsijGT8HKHSprgRPjHg4,14531
|
|
95
97
|
pulumi_linode/ipv6_range.py,sha256=6GwFTV7TeSkc6bF5bs_Jd7xwXrl4N5A2Xmqxw9uYss4,16060
|
|
96
|
-
pulumi_linode/lke_cluster.py,sha256=
|
|
98
|
+
pulumi_linode/lke_cluster.py,sha256=ot-L5sJpBHr2JOTHThHdFWL_LBWkDrzrrMGVmo-bW-s,41505
|
|
97
99
|
pulumi_linode/lke_node_pool.py,sha256=-1MvgVnNprFgA73KUK6odlCxmhWUVOxSuwe5nMsz7ek,38448
|
|
98
100
|
pulumi_linode/networking_ip.py,sha256=FCygbQlP1QGgtL_p3LXdIRttfS-9-ou5F8Wc5nB_qRQ,23921
|
|
99
101
|
pulumi_linode/networking_ip_assignment.py,sha256=dlmLRP8NhQjt9_fV5kU9qfa56sD7Dah_LfvjnhiYeTM,9650
|
|
100
|
-
pulumi_linode/node_balancer.py,sha256=
|
|
102
|
+
pulumi_linode/node_balancer.py,sha256=kRETWJ9uneMghps9f502T4tNF4JeMxtEOZHpfbOt74M,33795
|
|
101
103
|
pulumi_linode/node_balancer_config.py,sha256=bq-boWfPBwk0-gD7tX-B74IYmgKY3qnvx_AU3TcbyZc,65345
|
|
102
|
-
pulumi_linode/node_balancer_node.py,sha256=
|
|
104
|
+
pulumi_linode/node_balancer_node.py,sha256=bn_4Hdp2q-EHiD6BIxVaIZQUYWl0uabBvYa-U1RA3_s,27953
|
|
103
105
|
pulumi_linode/object_storage_bucket.py,sha256=1KxXcawPw0XGJAn1A8BkgMdmbaIyMAc_u_ND1h_xAf0,48315
|
|
104
106
|
pulumi_linode/object_storage_key.py,sha256=DCwmYlnipDM_tsqW6GSKMGlYL7kKDiQyQySjBuBugZk,21932
|
|
105
107
|
pulumi_linode/object_storage_object.py,sha256=MQSDkOlFLNktHMmN1OcYm13E_t-XAaPCTUcQdZaE_UE,65505
|
|
106
|
-
pulumi_linode/outputs.py,sha256=
|
|
108
|
+
pulumi_linode/outputs.py,sha256=7ApFr3Ul034IlKCGuiQg309y_2JPvd9OKdlRtfNlJ6w,772338
|
|
107
109
|
pulumi_linode/placement_group.py,sha256=VMkn_ZWb7nyU2d9uvPDq9WtpaO4VtP1_tWEet0tXZZg,17909
|
|
108
110
|
pulumi_linode/placement_group_assignment.py,sha256=VS41EglL2bMz-OGO5ut-mI4qztJ1JOTwJdYYH_6T2rE,13127
|
|
109
111
|
pulumi_linode/provider.py,sha256=3u-3yR4HC0WM7nENM_fmVdnhTVkMVvofuNjqCek2dOY,31154
|
|
110
|
-
pulumi_linode/pulumi-plugin.json,sha256=
|
|
112
|
+
pulumi_linode/pulumi-plugin.json,sha256=xxucqxrWSH0aoBLWpHASya1pXJUap8a8A2iZmaMMFrY,65
|
|
111
113
|
pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
114
|
pulumi_linode/rdns.py,sha256=KSsmS3FJ-LTPL1TJgryhPV0S73hgZ5d3MXn71o3n9uE,16875
|
|
113
115
|
pulumi_linode/reserved_ip_assignment.py,sha256=x0msvRRh3P4LocXq4FWGC_VMXUttMTzJMAISJ2O71qI,23494
|
|
114
116
|
pulumi_linode/ssh_key.py,sha256=gkU9V_f_JvhSw2R7Y4wEsZEC-5vLh8eQq0CVZ7qg6Rw,11736
|
|
115
117
|
pulumi_linode/stack_script.py,sha256=pqB5NcPgHEN2STPGsloRvrI9sRD_dCEDdkC6ZrSVnxg,33080
|
|
116
118
|
pulumi_linode/token.py,sha256=3tHvmBggo7wb5VvUh6D4UeeD_Q6QByS4d-93gLgXkjQ,18606
|
|
117
|
-
pulumi_linode/user.py,sha256=
|
|
119
|
+
pulumi_linode/user.py,sha256=YZGiOFl0BXVjRHudX7l_LrylUod05MvLy_JQ2NjIquE,48015
|
|
118
120
|
pulumi_linode/volume.py,sha256=6IM9vsH2lbSDdphoyOHBiP6iw6t8GlH2jZ14mH32Gh8,28696
|
|
119
|
-
pulumi_linode/vpc.py,sha256=
|
|
120
|
-
pulumi_linode/vpc_subnet.py,sha256=
|
|
121
|
+
pulumi_linode/vpc.py,sha256=yr07u-Gxw7K-FZkxOf2xmy9TDAsC5TelfvRmCAI58_U,17993
|
|
122
|
+
pulumi_linode/vpc_subnet.py,sha256=br2RVdojciOwjU94aa-qlN6v4u9zVz8PoNdj3LFk1pY,20669
|
|
121
123
|
pulumi_linode/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
122
124
|
pulumi_linode/config/__init__.pyi,sha256=LvOCsq3YYxRuU8teN4ZTDH2Nx_BlzOzM75EluLMpw80,2587
|
|
123
125
|
pulumi_linode/config/vars.py,sha256=Ypi1LOwkZcSV8Q4iq89-tWZGaG-4B8CAJCGefemZ-DY,5147
|
|
124
|
-
pulumi_linode-5.
|
|
125
|
-
pulumi_linode-5.
|
|
126
|
-
pulumi_linode-5.
|
|
127
|
-
pulumi_linode-5.
|
|
126
|
+
pulumi_linode-5.4.0.dist-info/METADATA,sha256=Tp9gU34V52IypHXbq1ygefLJUzc0gopY7_OO1VzTjMU,2886
|
|
127
|
+
pulumi_linode-5.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
128
|
+
pulumi_linode-5.4.0.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
|
|
129
|
+
pulumi_linode-5.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|