pulumi-linode 5.4.0a1759904617__py3-none-any.whl → 5.4.0a1760067007__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 +1182 -293
- 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_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/node_balancer.py +54 -3
- pulumi_linode/node_balancer_node.py +75 -0
- pulumi_linode/outputs.py +1254 -201
- 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.4.0a1759904617.dist-info → pulumi_linode-5.4.0a1760067007.dist-info}/METADATA +1 -1
- {pulumi_linode-5.4.0a1759904617.dist-info → pulumi_linode-5.4.0a1760067007.dist-info}/RECORD +28 -26
- {pulumi_linode-5.4.0a1759904617.dist-info → pulumi_linode-5.4.0a1760067007.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.4.0a1759904617.dist-info → pulumi_linode-5.4.0a1760067007.dist-info}/top_level.txt +0 -0
pulumi_linode/outputs.py
CHANGED
|
@@ -18,10 +18,12 @@ from . import outputs
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
'DatabaseMysqlUpdates',
|
|
20
20
|
'DatabaseMysqlV2PendingUpdate',
|
|
21
|
+
'DatabaseMysqlV2PrivateNetwork',
|
|
21
22
|
'DatabaseMysqlV2Timeouts',
|
|
22
23
|
'DatabaseMysqlV2Updates',
|
|
23
24
|
'DatabasePostgresqlUpdates',
|
|
24
25
|
'DatabasePostgresqlV2PendingUpdate',
|
|
26
|
+
'DatabasePostgresqlV2PrivateNetwork',
|
|
25
27
|
'DatabasePostgresqlV2Timeouts',
|
|
26
28
|
'DatabasePostgresqlV2Updates',
|
|
27
29
|
'FirewallDevice',
|
|
@@ -47,10 +49,16 @@ __all__ = [
|
|
|
47
49
|
'InstanceConfigHelpers',
|
|
48
50
|
'InstanceConfigInterface',
|
|
49
51
|
'InstanceConfigInterfaceIpv4',
|
|
52
|
+
'InstanceConfigInterfaceIpv6',
|
|
53
|
+
'InstanceConfigInterfaceIpv6Range',
|
|
54
|
+
'InstanceConfigInterfaceIpv6Slaac',
|
|
50
55
|
'InstanceDisk',
|
|
51
56
|
'InstanceDiskTimeouts',
|
|
52
57
|
'InstanceInterface',
|
|
53
58
|
'InstanceInterfaceIpv4',
|
|
59
|
+
'InstanceInterfaceIpv6',
|
|
60
|
+
'InstanceInterfaceIpv6Range',
|
|
61
|
+
'InstanceInterfaceIpv6Slaac',
|
|
54
62
|
'InstanceIpVpcNat11',
|
|
55
63
|
'InstanceMetadata',
|
|
56
64
|
'InstancePlacementGroup',
|
|
@@ -72,6 +80,7 @@ __all__ = [
|
|
|
72
80
|
'NodeBalancerFirewallInbound',
|
|
73
81
|
'NodeBalancerFirewallOutbound',
|
|
74
82
|
'NodeBalancerTransfer',
|
|
83
|
+
'NodeBalancerVpc',
|
|
75
84
|
'ObjectStorageBucketCert',
|
|
76
85
|
'ObjectStorageBucketLifecycleRule',
|
|
77
86
|
'ObjectStorageBucketLifecycleRuleExpiration',
|
|
@@ -89,11 +98,12 @@ __all__ = [
|
|
|
89
98
|
'UserLinodeGrant',
|
|
90
99
|
'UserLongviewGrant',
|
|
91
100
|
'UserNodebalancerGrant',
|
|
92
|
-
'UserPlacementGroupGrant',
|
|
93
101
|
'UserStackscriptGrant',
|
|
94
102
|
'UserVolumeGrant',
|
|
95
103
|
'UserVpcGrant',
|
|
96
104
|
'VolumeTimeouts',
|
|
105
|
+
'VpcIpv6',
|
|
106
|
+
'VpcSubnetIpv6',
|
|
97
107
|
'VpcSubnetLinode',
|
|
98
108
|
'VpcSubnetLinodeInterface',
|
|
99
109
|
'GetAccountAvailabilitiesAvailabilityResult',
|
|
@@ -139,6 +149,7 @@ __all__ = [
|
|
|
139
149
|
'GetDatabaseMysqlConfigMysqlWaitTimeoutResult',
|
|
140
150
|
'GetDatabaseMysqlUpdateResult',
|
|
141
151
|
'GetDatabaseMysqlV2PendingUpdateResult',
|
|
152
|
+
'GetDatabaseMysqlV2PrivateNetworkResult',
|
|
142
153
|
'GetDatabaseMysqlV2UpdatesResult',
|
|
143
154
|
'GetDatabasePostgresqlConfigPgStatMonitorEnableResult',
|
|
144
155
|
'GetDatabasePostgresqlConfigPglookoutResult',
|
|
@@ -147,8 +158,10 @@ __all__ = [
|
|
|
147
158
|
'GetDatabasePostgresqlConfigWorkMemResult',
|
|
148
159
|
'GetDatabasePostgresqlUpdateResult',
|
|
149
160
|
'GetDatabasePostgresqlV2PendingUpdateResult',
|
|
161
|
+
'GetDatabasePostgresqlV2PrivateNetworkResult',
|
|
150
162
|
'GetDatabasePostgresqlV2UpdatesResult',
|
|
151
163
|
'GetDatabasesDatabaseResult',
|
|
164
|
+
'GetDatabasesDatabasePrivateNetworkResult',
|
|
152
165
|
'GetDatabasesFilterResult',
|
|
153
166
|
'GetDomainsDomainResult',
|
|
154
167
|
'GetDomainsFilterResult',
|
|
@@ -218,6 +231,9 @@ __all__ = [
|
|
|
218
231
|
'GetInstancesInstanceConfigHelperResult',
|
|
219
232
|
'GetInstancesInstanceConfigInterfaceResult',
|
|
220
233
|
'GetInstancesInstanceConfigInterfaceIpv4Result',
|
|
234
|
+
'GetInstancesInstanceConfigInterfaceIpv6Result',
|
|
235
|
+
'GetInstancesInstanceConfigInterfaceIpv6RangeResult',
|
|
236
|
+
'GetInstancesInstanceConfigInterfaceIpv6SlaacResult',
|
|
221
237
|
'GetInstancesInstanceDiskResult',
|
|
222
238
|
'GetInstancesInstancePlacementGroupResult',
|
|
223
239
|
'GetInstancesInstanceSpecResult',
|
|
@@ -260,9 +276,12 @@ __all__ = [
|
|
|
260
276
|
'GetNodeBalancerFirewallInboundResult',
|
|
261
277
|
'GetNodeBalancerFirewallOutboundResult',
|
|
262
278
|
'GetNodeBalancerTransferResult',
|
|
279
|
+
'GetNodeBalancerVpcResult',
|
|
263
280
|
'GetNodebalancerConfigsFilterResult',
|
|
264
281
|
'GetNodebalancerConfigsNodebalancerConfigResult',
|
|
265
282
|
'GetNodebalancerConfigsNodebalancerConfigNodeStatusResult',
|
|
283
|
+
'GetNodebalancerVpcsFilterResult',
|
|
284
|
+
'GetNodebalancerVpcsVpcConfigResult',
|
|
266
285
|
'GetNodebalancersFilterResult',
|
|
267
286
|
'GetNodebalancersNodebalancerResult',
|
|
268
287
|
'GetNodebalancersNodebalancerTransferResult',
|
|
@@ -302,7 +321,6 @@ __all__ = [
|
|
|
302
321
|
'GetUserLinodeGrantResult',
|
|
303
322
|
'GetUserLongviewGrantResult',
|
|
304
323
|
'GetUserNodebalancerGrantResult',
|
|
305
|
-
'GetUserPlacementGroupGrantResult',
|
|
306
324
|
'GetUserStackscriptGrantResult',
|
|
307
325
|
'GetUserVolumeGrantResult',
|
|
308
326
|
'GetUserVpcGrantResult',
|
|
@@ -316,7 +334,6 @@ __all__ = [
|
|
|
316
334
|
'GetUsersUserLinodeGrantResult',
|
|
317
335
|
'GetUsersUserLongviewGrantResult',
|
|
318
336
|
'GetUsersUserNodebalancerGrantResult',
|
|
319
|
-
'GetUsersUserPlacementGroupGrantResult',
|
|
320
337
|
'GetUsersUserStackscriptGrantResult',
|
|
321
338
|
'GetUsersUserVolumeGrantResult',
|
|
322
339
|
'GetUsersUserVpcGrantResult',
|
|
@@ -330,14 +347,19 @@ __all__ = [
|
|
|
330
347
|
'GetVolumesVolumeResult',
|
|
331
348
|
'GetVpcIpsFilterResult',
|
|
332
349
|
'GetVpcIpsVpcIpResult',
|
|
350
|
+
'GetVpcIpsVpcIpIpv6AddressResult',
|
|
351
|
+
'GetVpcIpv6Result',
|
|
352
|
+
'GetVpcSubnetIpv6Result',
|
|
333
353
|
'GetVpcSubnetLinodeResult',
|
|
334
354
|
'GetVpcSubnetLinodeInterfaceResult',
|
|
335
355
|
'GetVpcSubnetsFilterResult',
|
|
336
356
|
'GetVpcSubnetsVpcSubnetResult',
|
|
357
|
+
'GetVpcSubnetsVpcSubnetIpv6Result',
|
|
337
358
|
'GetVpcSubnetsVpcSubnetLinodeResult',
|
|
338
359
|
'GetVpcSubnetsVpcSubnetLinodeInterfaceResult',
|
|
339
360
|
'GetVpcsFilterResult',
|
|
340
361
|
'GetVpcsVpcResult',
|
|
362
|
+
'GetVpcsVpcIpv6Result',
|
|
341
363
|
]
|
|
342
364
|
|
|
343
365
|
@pulumi.output_type
|
|
@@ -467,6 +489,68 @@ class DatabaseMysqlV2PendingUpdate(dict):
|
|
|
467
489
|
return pulumi.get(self, "planned_for")
|
|
468
490
|
|
|
469
491
|
|
|
492
|
+
@pulumi.output_type
|
|
493
|
+
class DatabaseMysqlV2PrivateNetwork(dict):
|
|
494
|
+
@staticmethod
|
|
495
|
+
def __key_warning(key: str):
|
|
496
|
+
suggest = None
|
|
497
|
+
if key == "subnetId":
|
|
498
|
+
suggest = "subnet_id"
|
|
499
|
+
elif key == "vpcId":
|
|
500
|
+
suggest = "vpc_id"
|
|
501
|
+
elif key == "publicAccess":
|
|
502
|
+
suggest = "public_access"
|
|
503
|
+
|
|
504
|
+
if suggest:
|
|
505
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabaseMysqlV2PrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
|
506
|
+
|
|
507
|
+
def __getitem__(self, key: str) -> Any:
|
|
508
|
+
DatabaseMysqlV2PrivateNetwork.__key_warning(key)
|
|
509
|
+
return super().__getitem__(key)
|
|
510
|
+
|
|
511
|
+
def get(self, key: str, default = None) -> Any:
|
|
512
|
+
DatabaseMysqlV2PrivateNetwork.__key_warning(key)
|
|
513
|
+
return super().get(key, default)
|
|
514
|
+
|
|
515
|
+
def __init__(__self__, *,
|
|
516
|
+
subnet_id: _builtins.int,
|
|
517
|
+
vpc_id: _builtins.int,
|
|
518
|
+
public_access: Optional[_builtins.bool] = None):
|
|
519
|
+
"""
|
|
520
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to restrict access to this database using.
|
|
521
|
+
:param _builtins.int vpc_id: The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
522
|
+
:param _builtins.bool public_access: Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
523
|
+
"""
|
|
524
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
525
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
526
|
+
if public_access is not None:
|
|
527
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
528
|
+
|
|
529
|
+
@_builtins.property
|
|
530
|
+
@pulumi.getter(name="subnetId")
|
|
531
|
+
def subnet_id(self) -> _builtins.int:
|
|
532
|
+
"""
|
|
533
|
+
The ID of the VPC subnet to restrict access to this database using.
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "subnet_id")
|
|
536
|
+
|
|
537
|
+
@_builtins.property
|
|
538
|
+
@pulumi.getter(name="vpcId")
|
|
539
|
+
def vpc_id(self) -> _builtins.int:
|
|
540
|
+
"""
|
|
541
|
+
The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
542
|
+
"""
|
|
543
|
+
return pulumi.get(self, "vpc_id")
|
|
544
|
+
|
|
545
|
+
@_builtins.property
|
|
546
|
+
@pulumi.getter(name="publicAccess")
|
|
547
|
+
def public_access(self) -> Optional[_builtins.bool]:
|
|
548
|
+
"""
|
|
549
|
+
Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "public_access")
|
|
552
|
+
|
|
553
|
+
|
|
470
554
|
@pulumi.output_type
|
|
471
555
|
class DatabaseMysqlV2Timeouts(dict):
|
|
472
556
|
def __init__(__self__, *,
|
|
@@ -689,6 +773,68 @@ class DatabasePostgresqlV2PendingUpdate(dict):
|
|
|
689
773
|
return pulumi.get(self, "planned_for")
|
|
690
774
|
|
|
691
775
|
|
|
776
|
+
@pulumi.output_type
|
|
777
|
+
class DatabasePostgresqlV2PrivateNetwork(dict):
|
|
778
|
+
@staticmethod
|
|
779
|
+
def __key_warning(key: str):
|
|
780
|
+
suggest = None
|
|
781
|
+
if key == "subnetId":
|
|
782
|
+
suggest = "subnet_id"
|
|
783
|
+
elif key == "vpcId":
|
|
784
|
+
suggest = "vpc_id"
|
|
785
|
+
elif key == "publicAccess":
|
|
786
|
+
suggest = "public_access"
|
|
787
|
+
|
|
788
|
+
if suggest:
|
|
789
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabasePostgresqlV2PrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
|
790
|
+
|
|
791
|
+
def __getitem__(self, key: str) -> Any:
|
|
792
|
+
DatabasePostgresqlV2PrivateNetwork.__key_warning(key)
|
|
793
|
+
return super().__getitem__(key)
|
|
794
|
+
|
|
795
|
+
def get(self, key: str, default = None) -> Any:
|
|
796
|
+
DatabasePostgresqlV2PrivateNetwork.__key_warning(key)
|
|
797
|
+
return super().get(key, default)
|
|
798
|
+
|
|
799
|
+
def __init__(__self__, *,
|
|
800
|
+
subnet_id: _builtins.int,
|
|
801
|
+
vpc_id: _builtins.int,
|
|
802
|
+
public_access: Optional[_builtins.bool] = None):
|
|
803
|
+
"""
|
|
804
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to restrict access to this database using.
|
|
805
|
+
:param _builtins.int vpc_id: The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
806
|
+
:param _builtins.bool public_access: Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
807
|
+
"""
|
|
808
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
809
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
810
|
+
if public_access is not None:
|
|
811
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
812
|
+
|
|
813
|
+
@_builtins.property
|
|
814
|
+
@pulumi.getter(name="subnetId")
|
|
815
|
+
def subnet_id(self) -> _builtins.int:
|
|
816
|
+
"""
|
|
817
|
+
The ID of the VPC subnet to restrict access to this database using.
|
|
818
|
+
"""
|
|
819
|
+
return pulumi.get(self, "subnet_id")
|
|
820
|
+
|
|
821
|
+
@_builtins.property
|
|
822
|
+
@pulumi.getter(name="vpcId")
|
|
823
|
+
def vpc_id(self) -> _builtins.int:
|
|
824
|
+
"""
|
|
825
|
+
The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
826
|
+
"""
|
|
827
|
+
return pulumi.get(self, "vpc_id")
|
|
828
|
+
|
|
829
|
+
@_builtins.property
|
|
830
|
+
@pulumi.getter(name="publicAccess")
|
|
831
|
+
def public_access(self) -> Optional[_builtins.bool]:
|
|
832
|
+
"""
|
|
833
|
+
Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
834
|
+
"""
|
|
835
|
+
return pulumi.get(self, "public_access")
|
|
836
|
+
|
|
837
|
+
|
|
692
838
|
@pulumi.output_type
|
|
693
839
|
class DatabasePostgresqlV2Timeouts(dict):
|
|
694
840
|
def __init__(__self__, *,
|
|
@@ -2180,6 +2326,7 @@ class InstanceConfigInterface(dict):
|
|
|
2180
2326
|
ip_ranges: Optional[Sequence[_builtins.str]] = None,
|
|
2181
2327
|
ipam_address: Optional[_builtins.str] = None,
|
|
2182
2328
|
ipv4: Optional['outputs.InstanceConfigInterfaceIpv4'] = None,
|
|
2329
|
+
ipv6: Optional['outputs.InstanceConfigInterfaceIpv6'] = None,
|
|
2183
2330
|
label: Optional[_builtins.str] = None,
|
|
2184
2331
|
primary: Optional[_builtins.bool] = None,
|
|
2185
2332
|
subnet_id: Optional[_builtins.int] = None,
|
|
@@ -2191,11 +2338,14 @@ class InstanceConfigInterface(dict):
|
|
|
2191
2338
|
:param Sequence[_builtins.str] ip_ranges: IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.
|
|
2192
2339
|
:param _builtins.str ipam_address: This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. `10.0.0.1/24`) This field is only allowed for interfaces with the `vlan` purpose.
|
|
2193
2340
|
:param 'InstanceConfigInterfaceIpv4Args' ipv4: The IPv4 configuration of the VPC interface.This attribute is only allowed for VPC interfaces.
|
|
2341
|
+
:param 'InstanceConfigInterfaceIpv6Args' ipv6: The IPv6 configuration of the VPC interface. This attribute is only allowed for VPC interfaces.
|
|
2194
2342
|
:param _builtins.str label: The name of the VLAN to join. This field is only allowed and required for interfaces with the `vlan` purpose.
|
|
2195
2343
|
:param _builtins.bool primary: Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the `public` or `vpc` purpose.
|
|
2196
2344
|
|
|
2197
2345
|
* `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
2198
2346
|
|
|
2347
|
+
* `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
2348
|
+
|
|
2199
2349
|
The following computed attribute is available in a VPC interface:
|
|
2200
2350
|
:param _builtins.int subnet_id: The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the `vpc` purpose.
|
|
2201
2351
|
:param _builtins.int vpc_id: The ID of VPC which this interface is attached to.
|
|
@@ -2211,6 +2361,8 @@ class InstanceConfigInterface(dict):
|
|
|
2211
2361
|
pulumi.set(__self__, "ipam_address", ipam_address)
|
|
2212
2362
|
if ipv4 is not None:
|
|
2213
2363
|
pulumi.set(__self__, "ipv4", ipv4)
|
|
2364
|
+
if ipv6 is not None:
|
|
2365
|
+
pulumi.set(__self__, "ipv6", ipv6)
|
|
2214
2366
|
if label is not None:
|
|
2215
2367
|
pulumi.set(__self__, "label", label)
|
|
2216
2368
|
if primary is not None:
|
|
@@ -2268,6 +2420,14 @@ class InstanceConfigInterface(dict):
|
|
|
2268
2420
|
"""
|
|
2269
2421
|
return pulumi.get(self, "ipv4")
|
|
2270
2422
|
|
|
2423
|
+
@_builtins.property
|
|
2424
|
+
@pulumi.getter
|
|
2425
|
+
def ipv6(self) -> Optional['outputs.InstanceConfigInterfaceIpv6']:
|
|
2426
|
+
"""
|
|
2427
|
+
The IPv6 configuration of the VPC interface. This attribute is only allowed for VPC interfaces.
|
|
2428
|
+
"""
|
|
2429
|
+
return pulumi.get(self, "ipv6")
|
|
2430
|
+
|
|
2271
2431
|
@_builtins.property
|
|
2272
2432
|
@pulumi.getter
|
|
2273
2433
|
def label(self) -> Optional[_builtins.str]:
|
|
@@ -2284,6 +2444,8 @@ class InstanceConfigInterface(dict):
|
|
|
2284
2444
|
|
|
2285
2445
|
* `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
2286
2446
|
|
|
2447
|
+
* `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
2448
|
+
|
|
2287
2449
|
The following computed attribute is available in a VPC interface:
|
|
2288
2450
|
"""
|
|
2289
2451
|
return pulumi.get(self, "primary")
|
|
@@ -2336,6 +2498,182 @@ class InstanceConfigInterfaceIpv4(dict):
|
|
|
2336
2498
|
return pulumi.get(self, "vpc")
|
|
2337
2499
|
|
|
2338
2500
|
|
|
2501
|
+
@pulumi.output_type
|
|
2502
|
+
class InstanceConfigInterfaceIpv6(dict):
|
|
2503
|
+
@staticmethod
|
|
2504
|
+
def __key_warning(key: str):
|
|
2505
|
+
suggest = None
|
|
2506
|
+
if key == "isPublic":
|
|
2507
|
+
suggest = "is_public"
|
|
2508
|
+
|
|
2509
|
+
if suggest:
|
|
2510
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigInterfaceIpv6. Access the value via the '{suggest}' property getter instead.")
|
|
2511
|
+
|
|
2512
|
+
def __getitem__(self, key: str) -> Any:
|
|
2513
|
+
InstanceConfigInterfaceIpv6.__key_warning(key)
|
|
2514
|
+
return super().__getitem__(key)
|
|
2515
|
+
|
|
2516
|
+
def get(self, key: str, default = None) -> Any:
|
|
2517
|
+
InstanceConfigInterfaceIpv6.__key_warning(key)
|
|
2518
|
+
return super().get(key, default)
|
|
2519
|
+
|
|
2520
|
+
def __init__(__self__, *,
|
|
2521
|
+
is_public: Optional[_builtins.bool] = None,
|
|
2522
|
+
ranges: Optional[Sequence['outputs.InstanceConfigInterfaceIpv6Range']] = None,
|
|
2523
|
+
slaacs: Optional[Sequence['outputs.InstanceConfigInterfaceIpv6Slaac']] = None):
|
|
2524
|
+
"""
|
|
2525
|
+
:param _builtins.bool is_public: If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
2526
|
+
|
|
2527
|
+
* `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
2528
|
+
|
|
2529
|
+
* `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
2530
|
+
:param Sequence['InstanceConfigInterfaceIpv6RangeArgs'] ranges: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2531
|
+
:param Sequence['InstanceConfigInterfaceIpv6SlaacArgs'] slaacs: An array of SLAAC prefixes to use for this interface.
|
|
2532
|
+
"""
|
|
2533
|
+
if is_public is not None:
|
|
2534
|
+
pulumi.set(__self__, "is_public", is_public)
|
|
2535
|
+
if ranges is not None:
|
|
2536
|
+
pulumi.set(__self__, "ranges", ranges)
|
|
2537
|
+
if slaacs is not None:
|
|
2538
|
+
pulumi.set(__self__, "slaacs", slaacs)
|
|
2539
|
+
|
|
2540
|
+
@_builtins.property
|
|
2541
|
+
@pulumi.getter(name="isPublic")
|
|
2542
|
+
def is_public(self) -> Optional[_builtins.bool]:
|
|
2543
|
+
"""
|
|
2544
|
+
If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
2545
|
+
|
|
2546
|
+
* `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
2547
|
+
|
|
2548
|
+
* `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
2549
|
+
"""
|
|
2550
|
+
return pulumi.get(self, "is_public")
|
|
2551
|
+
|
|
2552
|
+
@_builtins.property
|
|
2553
|
+
@pulumi.getter
|
|
2554
|
+
def ranges(self) -> Optional[Sequence['outputs.InstanceConfigInterfaceIpv6Range']]:
|
|
2555
|
+
"""
|
|
2556
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2557
|
+
"""
|
|
2558
|
+
return pulumi.get(self, "ranges")
|
|
2559
|
+
|
|
2560
|
+
@_builtins.property
|
|
2561
|
+
@pulumi.getter
|
|
2562
|
+
def slaacs(self) -> Optional[Sequence['outputs.InstanceConfigInterfaceIpv6Slaac']]:
|
|
2563
|
+
"""
|
|
2564
|
+
An array of SLAAC prefixes to use for this interface.
|
|
2565
|
+
"""
|
|
2566
|
+
return pulumi.get(self, "slaacs")
|
|
2567
|
+
|
|
2568
|
+
|
|
2569
|
+
@pulumi.output_type
|
|
2570
|
+
class InstanceConfigInterfaceIpv6Range(dict):
|
|
2571
|
+
@staticmethod
|
|
2572
|
+
def __key_warning(key: str):
|
|
2573
|
+
suggest = None
|
|
2574
|
+
if key == "assignedRange":
|
|
2575
|
+
suggest = "assigned_range"
|
|
2576
|
+
|
|
2577
|
+
if suggest:
|
|
2578
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigInterfaceIpv6Range. Access the value via the '{suggest}' property getter instead.")
|
|
2579
|
+
|
|
2580
|
+
def __getitem__(self, key: str) -> Any:
|
|
2581
|
+
InstanceConfigInterfaceIpv6Range.__key_warning(key)
|
|
2582
|
+
return super().__getitem__(key)
|
|
2583
|
+
|
|
2584
|
+
def get(self, key: str, default = None) -> Any:
|
|
2585
|
+
InstanceConfigInterfaceIpv6Range.__key_warning(key)
|
|
2586
|
+
return super().get(key, default)
|
|
2587
|
+
|
|
2588
|
+
def __init__(__self__, *,
|
|
2589
|
+
assigned_range: Optional[_builtins.str] = None,
|
|
2590
|
+
range: Optional[_builtins.str] = None):
|
|
2591
|
+
"""
|
|
2592
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
2593
|
+
:param _builtins.str range: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2594
|
+
"""
|
|
2595
|
+
if assigned_range is not None:
|
|
2596
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
2597
|
+
if range is not None:
|
|
2598
|
+
pulumi.set(__self__, "range", range)
|
|
2599
|
+
|
|
2600
|
+
@_builtins.property
|
|
2601
|
+
@pulumi.getter(name="assignedRange")
|
|
2602
|
+
def assigned_range(self) -> Optional[_builtins.str]:
|
|
2603
|
+
"""
|
|
2604
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
2605
|
+
"""
|
|
2606
|
+
return pulumi.get(self, "assigned_range")
|
|
2607
|
+
|
|
2608
|
+
@_builtins.property
|
|
2609
|
+
@pulumi.getter
|
|
2610
|
+
def range(self) -> Optional[_builtins.str]:
|
|
2611
|
+
"""
|
|
2612
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2613
|
+
"""
|
|
2614
|
+
return pulumi.get(self, "range")
|
|
2615
|
+
|
|
2616
|
+
|
|
2617
|
+
@pulumi.output_type
|
|
2618
|
+
class InstanceConfigInterfaceIpv6Slaac(dict):
|
|
2619
|
+
@staticmethod
|
|
2620
|
+
def __key_warning(key: str):
|
|
2621
|
+
suggest = None
|
|
2622
|
+
if key == "assignedRange":
|
|
2623
|
+
suggest = "assigned_range"
|
|
2624
|
+
|
|
2625
|
+
if suggest:
|
|
2626
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigInterfaceIpv6Slaac. Access the value via the '{suggest}' property getter instead.")
|
|
2627
|
+
|
|
2628
|
+
def __getitem__(self, key: str) -> Any:
|
|
2629
|
+
InstanceConfigInterfaceIpv6Slaac.__key_warning(key)
|
|
2630
|
+
return super().__getitem__(key)
|
|
2631
|
+
|
|
2632
|
+
def get(self, key: str, default = None) -> Any:
|
|
2633
|
+
InstanceConfigInterfaceIpv6Slaac.__key_warning(key)
|
|
2634
|
+
return super().get(key, default)
|
|
2635
|
+
|
|
2636
|
+
def __init__(__self__, *,
|
|
2637
|
+
address: Optional[_builtins.str] = None,
|
|
2638
|
+
assigned_range: Optional[_builtins.str] = None,
|
|
2639
|
+
range: Optional[_builtins.str] = None):
|
|
2640
|
+
"""
|
|
2641
|
+
:param _builtins.str address: The SLAAC address chosen for this interface.
|
|
2642
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
2643
|
+
:param _builtins.str range: A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2644
|
+
"""
|
|
2645
|
+
if address is not None:
|
|
2646
|
+
pulumi.set(__self__, "address", address)
|
|
2647
|
+
if assigned_range is not None:
|
|
2648
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
2649
|
+
if range is not None:
|
|
2650
|
+
pulumi.set(__self__, "range", range)
|
|
2651
|
+
|
|
2652
|
+
@_builtins.property
|
|
2653
|
+
@pulumi.getter
|
|
2654
|
+
def address(self) -> Optional[_builtins.str]:
|
|
2655
|
+
"""
|
|
2656
|
+
The SLAAC address chosen for this interface.
|
|
2657
|
+
"""
|
|
2658
|
+
return pulumi.get(self, "address")
|
|
2659
|
+
|
|
2660
|
+
@_builtins.property
|
|
2661
|
+
@pulumi.getter(name="assignedRange")
|
|
2662
|
+
def assigned_range(self) -> Optional[_builtins.str]:
|
|
2663
|
+
"""
|
|
2664
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
2665
|
+
"""
|
|
2666
|
+
return pulumi.get(self, "assigned_range")
|
|
2667
|
+
|
|
2668
|
+
@_builtins.property
|
|
2669
|
+
@pulumi.getter
|
|
2670
|
+
def range(self) -> Optional[_builtins.str]:
|
|
2671
|
+
"""
|
|
2672
|
+
A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
2673
|
+
"""
|
|
2674
|
+
return pulumi.get(self, "range")
|
|
2675
|
+
|
|
2676
|
+
|
|
2339
2677
|
@pulumi.output_type
|
|
2340
2678
|
class InstanceDisk(dict):
|
|
2341
2679
|
@staticmethod
|
|
@@ -2575,6 +2913,7 @@ class InstanceInterface(dict):
|
|
|
2575
2913
|
ip_ranges: Optional[Sequence[_builtins.str]] = None,
|
|
2576
2914
|
ipam_address: Optional[_builtins.str] = None,
|
|
2577
2915
|
ipv4: Optional['outputs.InstanceInterfaceIpv4'] = None,
|
|
2916
|
+
ipv6: Optional['outputs.InstanceInterfaceIpv6'] = None,
|
|
2578
2917
|
label: Optional[_builtins.str] = None,
|
|
2579
2918
|
primary: Optional[_builtins.bool] = None,
|
|
2580
2919
|
subnet_id: Optional[_builtins.int] = None,
|
|
@@ -2588,11 +2927,14 @@ class InstanceInterface(dict):
|
|
|
2588
2927
|
:param 'InstanceInterfaceIpv4Args' ipv4: A set of reserved IPv4 addresses to assign to this Linode on creation.
|
|
2589
2928
|
|
|
2590
2929
|
* **NOTE: IP reservation is not currently available to all users.**
|
|
2930
|
+
:param 'InstanceInterfaceIpv6Args' ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
2591
2931
|
:param _builtins.str label: The name of the VLAN to join. This field is only allowed and required for interfaces with the `vlan` purpose.
|
|
2592
2932
|
:param _builtins.bool primary: Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the `public` or `vpc` purpose.
|
|
2593
2933
|
|
|
2594
2934
|
* `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
2595
2935
|
|
|
2936
|
+
* `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
2937
|
+
|
|
2596
2938
|
The following computed attribute is available in a VPC interface:
|
|
2597
2939
|
:param _builtins.int subnet_id: The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the `vpc` purpose.
|
|
2598
2940
|
:param _builtins.int vpc_id: The ID of VPC which this interface is attached to.
|
|
@@ -2608,6 +2950,8 @@ class InstanceInterface(dict):
|
|
|
2608
2950
|
pulumi.set(__self__, "ipam_address", ipam_address)
|
|
2609
2951
|
if ipv4 is not None:
|
|
2610
2952
|
pulumi.set(__self__, "ipv4", ipv4)
|
|
2953
|
+
if ipv6 is not None:
|
|
2954
|
+
pulumi.set(__self__, "ipv6", ipv6)
|
|
2611
2955
|
if label is not None:
|
|
2612
2956
|
pulumi.set(__self__, "label", label)
|
|
2613
2957
|
if primary is not None:
|
|
@@ -2667,6 +3011,14 @@ class InstanceInterface(dict):
|
|
|
2667
3011
|
"""
|
|
2668
3012
|
return pulumi.get(self, "ipv4")
|
|
2669
3013
|
|
|
3014
|
+
@_builtins.property
|
|
3015
|
+
@pulumi.getter
|
|
3016
|
+
def ipv6(self) -> Optional['outputs.InstanceInterfaceIpv6']:
|
|
3017
|
+
"""
|
|
3018
|
+
This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
3019
|
+
"""
|
|
3020
|
+
return pulumi.get(self, "ipv6")
|
|
3021
|
+
|
|
2670
3022
|
@_builtins.property
|
|
2671
3023
|
@pulumi.getter
|
|
2672
3024
|
def label(self) -> Optional[_builtins.str]:
|
|
@@ -2683,6 +3035,8 @@ class InstanceInterface(dict):
|
|
|
2683
3035
|
|
|
2684
3036
|
* `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
2685
3037
|
|
|
3038
|
+
* `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
3039
|
+
|
|
2686
3040
|
The following computed attribute is available in a VPC interface:
|
|
2687
3041
|
"""
|
|
2688
3042
|
return pulumi.get(self, "primary")
|
|
@@ -2735,6 +3089,182 @@ class InstanceInterfaceIpv4(dict):
|
|
|
2735
3089
|
return pulumi.get(self, "vpc")
|
|
2736
3090
|
|
|
2737
3091
|
|
|
3092
|
+
@pulumi.output_type
|
|
3093
|
+
class InstanceInterfaceIpv6(dict):
|
|
3094
|
+
@staticmethod
|
|
3095
|
+
def __key_warning(key: str):
|
|
3096
|
+
suggest = None
|
|
3097
|
+
if key == "isPublic":
|
|
3098
|
+
suggest = "is_public"
|
|
3099
|
+
|
|
3100
|
+
if suggest:
|
|
3101
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceInterfaceIpv6. Access the value via the '{suggest}' property getter instead.")
|
|
3102
|
+
|
|
3103
|
+
def __getitem__(self, key: str) -> Any:
|
|
3104
|
+
InstanceInterfaceIpv6.__key_warning(key)
|
|
3105
|
+
return super().__getitem__(key)
|
|
3106
|
+
|
|
3107
|
+
def get(self, key: str, default = None) -> Any:
|
|
3108
|
+
InstanceInterfaceIpv6.__key_warning(key)
|
|
3109
|
+
return super().get(key, default)
|
|
3110
|
+
|
|
3111
|
+
def __init__(__self__, *,
|
|
3112
|
+
is_public: Optional[_builtins.bool] = None,
|
|
3113
|
+
ranges: Optional[Sequence['outputs.InstanceInterfaceIpv6Range']] = None,
|
|
3114
|
+
slaacs: Optional[Sequence['outputs.InstanceInterfaceIpv6Slaac']] = None):
|
|
3115
|
+
"""
|
|
3116
|
+
:param _builtins.bool is_public: If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
3117
|
+
|
|
3118
|
+
* `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
3119
|
+
|
|
3120
|
+
* `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
3121
|
+
:param Sequence['InstanceInterfaceIpv6RangeArgs'] ranges: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3122
|
+
:param Sequence['InstanceInterfaceIpv6SlaacArgs'] slaacs: An array of SLAAC prefixes to use for this interface.
|
|
3123
|
+
"""
|
|
3124
|
+
if is_public is not None:
|
|
3125
|
+
pulumi.set(__self__, "is_public", is_public)
|
|
3126
|
+
if ranges is not None:
|
|
3127
|
+
pulumi.set(__self__, "ranges", ranges)
|
|
3128
|
+
if slaacs is not None:
|
|
3129
|
+
pulumi.set(__self__, "slaacs", slaacs)
|
|
3130
|
+
|
|
3131
|
+
@_builtins.property
|
|
3132
|
+
@pulumi.getter(name="isPublic")
|
|
3133
|
+
def is_public(self) -> Optional[_builtins.bool]:
|
|
3134
|
+
"""
|
|
3135
|
+
If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
3136
|
+
|
|
3137
|
+
* `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
3138
|
+
|
|
3139
|
+
* `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
3140
|
+
"""
|
|
3141
|
+
return pulumi.get(self, "is_public")
|
|
3142
|
+
|
|
3143
|
+
@_builtins.property
|
|
3144
|
+
@pulumi.getter
|
|
3145
|
+
def ranges(self) -> Optional[Sequence['outputs.InstanceInterfaceIpv6Range']]:
|
|
3146
|
+
"""
|
|
3147
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3148
|
+
"""
|
|
3149
|
+
return pulumi.get(self, "ranges")
|
|
3150
|
+
|
|
3151
|
+
@_builtins.property
|
|
3152
|
+
@pulumi.getter
|
|
3153
|
+
def slaacs(self) -> Optional[Sequence['outputs.InstanceInterfaceIpv6Slaac']]:
|
|
3154
|
+
"""
|
|
3155
|
+
An array of SLAAC prefixes to use for this interface.
|
|
3156
|
+
"""
|
|
3157
|
+
return pulumi.get(self, "slaacs")
|
|
3158
|
+
|
|
3159
|
+
|
|
3160
|
+
@pulumi.output_type
|
|
3161
|
+
class InstanceInterfaceIpv6Range(dict):
|
|
3162
|
+
@staticmethod
|
|
3163
|
+
def __key_warning(key: str):
|
|
3164
|
+
suggest = None
|
|
3165
|
+
if key == "assignedRange":
|
|
3166
|
+
suggest = "assigned_range"
|
|
3167
|
+
|
|
3168
|
+
if suggest:
|
|
3169
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceInterfaceIpv6Range. Access the value via the '{suggest}' property getter instead.")
|
|
3170
|
+
|
|
3171
|
+
def __getitem__(self, key: str) -> Any:
|
|
3172
|
+
InstanceInterfaceIpv6Range.__key_warning(key)
|
|
3173
|
+
return super().__getitem__(key)
|
|
3174
|
+
|
|
3175
|
+
def get(self, key: str, default = None) -> Any:
|
|
3176
|
+
InstanceInterfaceIpv6Range.__key_warning(key)
|
|
3177
|
+
return super().get(key, default)
|
|
3178
|
+
|
|
3179
|
+
def __init__(__self__, *,
|
|
3180
|
+
assigned_range: Optional[_builtins.str] = None,
|
|
3181
|
+
range: Optional[_builtins.str] = None):
|
|
3182
|
+
"""
|
|
3183
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
3184
|
+
:param _builtins.str range: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3185
|
+
"""
|
|
3186
|
+
if assigned_range is not None:
|
|
3187
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
3188
|
+
if range is not None:
|
|
3189
|
+
pulumi.set(__self__, "range", range)
|
|
3190
|
+
|
|
3191
|
+
@_builtins.property
|
|
3192
|
+
@pulumi.getter(name="assignedRange")
|
|
3193
|
+
def assigned_range(self) -> Optional[_builtins.str]:
|
|
3194
|
+
"""
|
|
3195
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
3196
|
+
"""
|
|
3197
|
+
return pulumi.get(self, "assigned_range")
|
|
3198
|
+
|
|
3199
|
+
@_builtins.property
|
|
3200
|
+
@pulumi.getter
|
|
3201
|
+
def range(self) -> Optional[_builtins.str]:
|
|
3202
|
+
"""
|
|
3203
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3204
|
+
"""
|
|
3205
|
+
return pulumi.get(self, "range")
|
|
3206
|
+
|
|
3207
|
+
|
|
3208
|
+
@pulumi.output_type
|
|
3209
|
+
class InstanceInterfaceIpv6Slaac(dict):
|
|
3210
|
+
@staticmethod
|
|
3211
|
+
def __key_warning(key: str):
|
|
3212
|
+
suggest = None
|
|
3213
|
+
if key == "assignedRange":
|
|
3214
|
+
suggest = "assigned_range"
|
|
3215
|
+
|
|
3216
|
+
if suggest:
|
|
3217
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceInterfaceIpv6Slaac. Access the value via the '{suggest}' property getter instead.")
|
|
3218
|
+
|
|
3219
|
+
def __getitem__(self, key: str) -> Any:
|
|
3220
|
+
InstanceInterfaceIpv6Slaac.__key_warning(key)
|
|
3221
|
+
return super().__getitem__(key)
|
|
3222
|
+
|
|
3223
|
+
def get(self, key: str, default = None) -> Any:
|
|
3224
|
+
InstanceInterfaceIpv6Slaac.__key_warning(key)
|
|
3225
|
+
return super().get(key, default)
|
|
3226
|
+
|
|
3227
|
+
def __init__(__self__, *,
|
|
3228
|
+
address: Optional[_builtins.str] = None,
|
|
3229
|
+
assigned_range: Optional[_builtins.str] = None,
|
|
3230
|
+
range: Optional[_builtins.str] = None):
|
|
3231
|
+
"""
|
|
3232
|
+
:param _builtins.str address: The SLAAC address chosen for this interface.
|
|
3233
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
3234
|
+
:param _builtins.str range: A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3235
|
+
"""
|
|
3236
|
+
if address is not None:
|
|
3237
|
+
pulumi.set(__self__, "address", address)
|
|
3238
|
+
if assigned_range is not None:
|
|
3239
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
3240
|
+
if range is not None:
|
|
3241
|
+
pulumi.set(__self__, "range", range)
|
|
3242
|
+
|
|
3243
|
+
@_builtins.property
|
|
3244
|
+
@pulumi.getter
|
|
3245
|
+
def address(self) -> Optional[_builtins.str]:
|
|
3246
|
+
"""
|
|
3247
|
+
The SLAAC address chosen for this interface.
|
|
3248
|
+
"""
|
|
3249
|
+
return pulumi.get(self, "address")
|
|
3250
|
+
|
|
3251
|
+
@_builtins.property
|
|
3252
|
+
@pulumi.getter(name="assignedRange")
|
|
3253
|
+
def assigned_range(self) -> Optional[_builtins.str]:
|
|
3254
|
+
"""
|
|
3255
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
3256
|
+
"""
|
|
3257
|
+
return pulumi.get(self, "assigned_range")
|
|
3258
|
+
|
|
3259
|
+
@_builtins.property
|
|
3260
|
+
@pulumi.getter
|
|
3261
|
+
def range(self) -> Optional[_builtins.str]:
|
|
3262
|
+
"""
|
|
3263
|
+
A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
3264
|
+
"""
|
|
3265
|
+
return pulumi.get(self, "range")
|
|
3266
|
+
|
|
3267
|
+
|
|
2738
3268
|
@pulumi.output_type
|
|
2739
3269
|
class InstanceIpVpcNat11(dict):
|
|
2740
3270
|
@staticmethod
|
|
@@ -4044,6 +4574,55 @@ class NodeBalancerTransfer(dict):
|
|
|
4044
4574
|
return pulumi.get(self, "total")
|
|
4045
4575
|
|
|
4046
4576
|
|
|
4577
|
+
@pulumi.output_type
|
|
4578
|
+
class NodeBalancerVpc(dict):
|
|
4579
|
+
@staticmethod
|
|
4580
|
+
def __key_warning(key: str):
|
|
4581
|
+
suggest = None
|
|
4582
|
+
if key == "subnetId":
|
|
4583
|
+
suggest = "subnet_id"
|
|
4584
|
+
elif key == "ipv4Range":
|
|
4585
|
+
suggest = "ipv4_range"
|
|
4586
|
+
|
|
4587
|
+
if suggest:
|
|
4588
|
+
pulumi.log.warn(f"Key '{key}' not found in NodeBalancerVpc. Access the value via the '{suggest}' property getter instead.")
|
|
4589
|
+
|
|
4590
|
+
def __getitem__(self, key: str) -> Any:
|
|
4591
|
+
NodeBalancerVpc.__key_warning(key)
|
|
4592
|
+
return super().__getitem__(key)
|
|
4593
|
+
|
|
4594
|
+
def get(self, key: str, default = None) -> Any:
|
|
4595
|
+
NodeBalancerVpc.__key_warning(key)
|
|
4596
|
+
return super().get(key, default)
|
|
4597
|
+
|
|
4598
|
+
def __init__(__self__, *,
|
|
4599
|
+
subnet_id: _builtins.int,
|
|
4600
|
+
ipv4_range: Optional[_builtins.str] = None):
|
|
4601
|
+
"""
|
|
4602
|
+
:param _builtins.int subnet_id: (Required) The ID of a subnet to assign to this NodeBalancer.
|
|
4603
|
+
:param _builtins.str ipv4_range: (Optional) A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
4604
|
+
"""
|
|
4605
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
4606
|
+
if ipv4_range is not None:
|
|
4607
|
+
pulumi.set(__self__, "ipv4_range", ipv4_range)
|
|
4608
|
+
|
|
4609
|
+
@_builtins.property
|
|
4610
|
+
@pulumi.getter(name="subnetId")
|
|
4611
|
+
def subnet_id(self) -> _builtins.int:
|
|
4612
|
+
"""
|
|
4613
|
+
(Required) The ID of a subnet to assign to this NodeBalancer.
|
|
4614
|
+
"""
|
|
4615
|
+
return pulumi.get(self, "subnet_id")
|
|
4616
|
+
|
|
4617
|
+
@_builtins.property
|
|
4618
|
+
@pulumi.getter(name="ipv4Range")
|
|
4619
|
+
def ipv4_range(self) -> Optional[_builtins.str]:
|
|
4620
|
+
"""
|
|
4621
|
+
(Optional) A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
4622
|
+
"""
|
|
4623
|
+
return pulumi.get(self, "ipv4_range")
|
|
4624
|
+
|
|
4625
|
+
|
|
4047
4626
|
@pulumi.output_type
|
|
4048
4627
|
class ObjectStorageBucketCert(dict):
|
|
4049
4628
|
@staticmethod
|
|
@@ -4698,8 +5277,6 @@ class UserGlobalGrants(dict):
|
|
|
4698
5277
|
suggest = "add_longview"
|
|
4699
5278
|
elif key == "addNodebalancers":
|
|
4700
5279
|
suggest = "add_nodebalancers"
|
|
4701
|
-
elif key == "addPlacementGroups":
|
|
4702
|
-
suggest = "add_placement_groups"
|
|
4703
5280
|
elif key == "addStackscripts":
|
|
4704
5281
|
suggest = "add_stackscripts"
|
|
4705
5282
|
elif key == "addVolumes":
|
|
@@ -4731,7 +5308,6 @@ class UserGlobalGrants(dict):
|
|
|
4731
5308
|
add_linodes: Optional[_builtins.bool] = None,
|
|
4732
5309
|
add_longview: Optional[_builtins.bool] = None,
|
|
4733
5310
|
add_nodebalancers: Optional[_builtins.bool] = None,
|
|
4734
|
-
add_placement_groups: Optional[_builtins.bool] = None,
|
|
4735
5311
|
add_stackscripts: Optional[_builtins.bool] = None,
|
|
4736
5312
|
add_volumes: Optional[_builtins.bool] = None,
|
|
4737
5313
|
add_vpcs: Optional[_builtins.bool] = None,
|
|
@@ -4746,7 +5322,6 @@ class UserGlobalGrants(dict):
|
|
|
4746
5322
|
:param _builtins.bool add_linodes: If true, this User may create Linodes.
|
|
4747
5323
|
:param _builtins.bool add_longview: If true, this User may create Longview clients and view the current plan.
|
|
4748
5324
|
:param _builtins.bool add_nodebalancers: If true, this User may add NodeBalancers.
|
|
4749
|
-
:param _builtins.bool add_placement_groups: If true, this User may add Placement Groups.
|
|
4750
5325
|
:param _builtins.bool add_stackscripts: If true, this User may add StackScripts.
|
|
4751
5326
|
:param _builtins.bool add_volumes: If true, this User may add Volumes.
|
|
4752
5327
|
:param _builtins.bool add_vpcs: If true, this User may add Virtual Private Clouds (VPCs).
|
|
@@ -4769,8 +5344,6 @@ class UserGlobalGrants(dict):
|
|
|
4769
5344
|
pulumi.set(__self__, "add_longview", add_longview)
|
|
4770
5345
|
if add_nodebalancers is not None:
|
|
4771
5346
|
pulumi.set(__self__, "add_nodebalancers", add_nodebalancers)
|
|
4772
|
-
if add_placement_groups is not None:
|
|
4773
|
-
pulumi.set(__self__, "add_placement_groups", add_placement_groups)
|
|
4774
5347
|
if add_stackscripts is not None:
|
|
4775
5348
|
pulumi.set(__self__, "add_stackscripts", add_stackscripts)
|
|
4776
5349
|
if add_volumes is not None:
|
|
@@ -4846,14 +5419,6 @@ class UserGlobalGrants(dict):
|
|
|
4846
5419
|
"""
|
|
4847
5420
|
return pulumi.get(self, "add_nodebalancers")
|
|
4848
5421
|
|
|
4849
|
-
@_builtins.property
|
|
4850
|
-
@pulumi.getter(name="addPlacementGroups")
|
|
4851
|
-
def add_placement_groups(self) -> Optional[_builtins.bool]:
|
|
4852
|
-
"""
|
|
4853
|
-
If true, this User may add Placement Groups.
|
|
4854
|
-
"""
|
|
4855
|
-
return pulumi.get(self, "add_placement_groups")
|
|
4856
|
-
|
|
4857
5422
|
@_builtins.property
|
|
4858
5423
|
@pulumi.getter(name="addStackscripts")
|
|
4859
5424
|
def add_stackscripts(self) -> Optional[_builtins.bool]:
|
|
@@ -5011,35 +5576,6 @@ class UserNodebalancerGrant(dict):
|
|
|
5011
5576
|
return pulumi.get(self, "permissions")
|
|
5012
5577
|
|
|
5013
5578
|
|
|
5014
|
-
@pulumi.output_type
|
|
5015
|
-
class UserPlacementGroupGrant(dict):
|
|
5016
|
-
def __init__(__self__, *,
|
|
5017
|
-
id: _builtins.int,
|
|
5018
|
-
permissions: _builtins.str):
|
|
5019
|
-
"""
|
|
5020
|
-
:param _builtins.int id: The ID of the entity this grant applies to.
|
|
5021
|
-
:param _builtins.str permissions: The level of access this User has to this entity. If null, this User has no access.
|
|
5022
|
-
"""
|
|
5023
|
-
pulumi.set(__self__, "id", id)
|
|
5024
|
-
pulumi.set(__self__, "permissions", permissions)
|
|
5025
|
-
|
|
5026
|
-
@_builtins.property
|
|
5027
|
-
@pulumi.getter
|
|
5028
|
-
def id(self) -> _builtins.int:
|
|
5029
|
-
"""
|
|
5030
|
-
The ID of the entity this grant applies to.
|
|
5031
|
-
"""
|
|
5032
|
-
return pulumi.get(self, "id")
|
|
5033
|
-
|
|
5034
|
-
@_builtins.property
|
|
5035
|
-
@pulumi.getter
|
|
5036
|
-
def permissions(self) -> _builtins.str:
|
|
5037
|
-
"""
|
|
5038
|
-
The level of access this User has to this entity. If null, this User has no access.
|
|
5039
|
-
"""
|
|
5040
|
-
return pulumi.get(self, "permissions")
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
5579
|
@pulumi.output_type
|
|
5044
5580
|
class UserStackscriptGrant(dict):
|
|
5045
5581
|
def __init__(__self__, *,
|
|
@@ -5170,6 +5706,102 @@ class VolumeTimeouts(dict):
|
|
|
5170
5706
|
return pulumi.get(self, "update")
|
|
5171
5707
|
|
|
5172
5708
|
|
|
5709
|
+
@pulumi.output_type
|
|
5710
|
+
class VpcIpv6(dict):
|
|
5711
|
+
@staticmethod
|
|
5712
|
+
def __key_warning(key: str):
|
|
5713
|
+
suggest = None
|
|
5714
|
+
if key == "allocatedRange":
|
|
5715
|
+
suggest = "allocated_range"
|
|
5716
|
+
|
|
5717
|
+
if suggest:
|
|
5718
|
+
pulumi.log.warn(f"Key '{key}' not found in VpcIpv6. Access the value via the '{suggest}' property getter instead.")
|
|
5719
|
+
|
|
5720
|
+
def __getitem__(self, key: str) -> Any:
|
|
5721
|
+
VpcIpv6.__key_warning(key)
|
|
5722
|
+
return super().__getitem__(key)
|
|
5723
|
+
|
|
5724
|
+
def get(self, key: str, default = None) -> Any:
|
|
5725
|
+
VpcIpv6.__key_warning(key)
|
|
5726
|
+
return super().get(key, default)
|
|
5727
|
+
|
|
5728
|
+
def __init__(__self__, *,
|
|
5729
|
+
allocated_range: Optional[_builtins.str] = None,
|
|
5730
|
+
range: Optional[_builtins.str] = None):
|
|
5731
|
+
"""
|
|
5732
|
+
:param _builtins.str allocated_range: The IPv6 range assigned to this VPC.
|
|
5733
|
+
:param _builtins.str range: The IPv6 range assigned to this VPC.
|
|
5734
|
+
"""
|
|
5735
|
+
if allocated_range is not None:
|
|
5736
|
+
pulumi.set(__self__, "allocated_range", allocated_range)
|
|
5737
|
+
if range is not None:
|
|
5738
|
+
pulumi.set(__self__, "range", range)
|
|
5739
|
+
|
|
5740
|
+
@_builtins.property
|
|
5741
|
+
@pulumi.getter(name="allocatedRange")
|
|
5742
|
+
def allocated_range(self) -> Optional[_builtins.str]:
|
|
5743
|
+
"""
|
|
5744
|
+
The IPv6 range assigned to this VPC.
|
|
5745
|
+
"""
|
|
5746
|
+
return pulumi.get(self, "allocated_range")
|
|
5747
|
+
|
|
5748
|
+
@_builtins.property
|
|
5749
|
+
@pulumi.getter
|
|
5750
|
+
def range(self) -> Optional[_builtins.str]:
|
|
5751
|
+
"""
|
|
5752
|
+
The IPv6 range assigned to this VPC.
|
|
5753
|
+
"""
|
|
5754
|
+
return pulumi.get(self, "range")
|
|
5755
|
+
|
|
5756
|
+
|
|
5757
|
+
@pulumi.output_type
|
|
5758
|
+
class VpcSubnetIpv6(dict):
|
|
5759
|
+
@staticmethod
|
|
5760
|
+
def __key_warning(key: str):
|
|
5761
|
+
suggest = None
|
|
5762
|
+
if key == "allocatedRange":
|
|
5763
|
+
suggest = "allocated_range"
|
|
5764
|
+
|
|
5765
|
+
if suggest:
|
|
5766
|
+
pulumi.log.warn(f"Key '{key}' not found in VpcSubnetIpv6. Access the value via the '{suggest}' property getter instead.")
|
|
5767
|
+
|
|
5768
|
+
def __getitem__(self, key: str) -> Any:
|
|
5769
|
+
VpcSubnetIpv6.__key_warning(key)
|
|
5770
|
+
return super().__getitem__(key)
|
|
5771
|
+
|
|
5772
|
+
def get(self, key: str, default = None) -> Any:
|
|
5773
|
+
VpcSubnetIpv6.__key_warning(key)
|
|
5774
|
+
return super().get(key, default)
|
|
5775
|
+
|
|
5776
|
+
def __init__(__self__, *,
|
|
5777
|
+
allocated_range: Optional[_builtins.str] = None,
|
|
5778
|
+
range: Optional[_builtins.str] = None):
|
|
5779
|
+
"""
|
|
5780
|
+
:param _builtins.str allocated_range: The IPv6 range assigned to this subnet.
|
|
5781
|
+
:param _builtins.str range: An existing IPv6 prefix owned by the current account or a forward slash (/) followed by a valid prefix length. If unspecified, a range with the default prefix will be allocated for this VPC.
|
|
5782
|
+
"""
|
|
5783
|
+
if allocated_range is not None:
|
|
5784
|
+
pulumi.set(__self__, "allocated_range", allocated_range)
|
|
5785
|
+
if range is not None:
|
|
5786
|
+
pulumi.set(__self__, "range", range)
|
|
5787
|
+
|
|
5788
|
+
@_builtins.property
|
|
5789
|
+
@pulumi.getter(name="allocatedRange")
|
|
5790
|
+
def allocated_range(self) -> Optional[_builtins.str]:
|
|
5791
|
+
"""
|
|
5792
|
+
The IPv6 range assigned to this subnet.
|
|
5793
|
+
"""
|
|
5794
|
+
return pulumi.get(self, "allocated_range")
|
|
5795
|
+
|
|
5796
|
+
@_builtins.property
|
|
5797
|
+
@pulumi.getter
|
|
5798
|
+
def range(self) -> Optional[_builtins.str]:
|
|
5799
|
+
"""
|
|
5800
|
+
An existing IPv6 prefix owned by the current account or a forward slash (/) followed by a valid prefix length. If unspecified, a range with the default prefix will be allocated for this VPC.
|
|
5801
|
+
"""
|
|
5802
|
+
return pulumi.get(self, "range")
|
|
5803
|
+
|
|
5804
|
+
|
|
5173
5805
|
@pulumi.output_type
|
|
5174
5806
|
class VpcSubnetLinode(dict):
|
|
5175
5807
|
def __init__(__self__, *,
|
|
@@ -7452,6 +8084,46 @@ class GetDatabaseMysqlV2PendingUpdateResult(dict):
|
|
|
7452
8084
|
return pulumi.get(self, "planned_for")
|
|
7453
8085
|
|
|
7454
8086
|
|
|
8087
|
+
@pulumi.output_type
|
|
8088
|
+
class GetDatabaseMysqlV2PrivateNetworkResult(dict):
|
|
8089
|
+
def __init__(__self__, *,
|
|
8090
|
+
public_access: _builtins.bool,
|
|
8091
|
+
subnet_id: _builtins.int,
|
|
8092
|
+
vpc_id: _builtins.int):
|
|
8093
|
+
"""
|
|
8094
|
+
:param _builtins.bool public_access: If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8095
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to restrict access to this database using.
|
|
8096
|
+
:param _builtins.int vpc_id: The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8097
|
+
"""
|
|
8098
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
8099
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
8100
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
8101
|
+
|
|
8102
|
+
@_builtins.property
|
|
8103
|
+
@pulumi.getter(name="publicAccess")
|
|
8104
|
+
def public_access(self) -> _builtins.bool:
|
|
8105
|
+
"""
|
|
8106
|
+
If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8107
|
+
"""
|
|
8108
|
+
return pulumi.get(self, "public_access")
|
|
8109
|
+
|
|
8110
|
+
@_builtins.property
|
|
8111
|
+
@pulumi.getter(name="subnetId")
|
|
8112
|
+
def subnet_id(self) -> _builtins.int:
|
|
8113
|
+
"""
|
|
8114
|
+
The ID of the VPC subnet to restrict access to this database using.
|
|
8115
|
+
"""
|
|
8116
|
+
return pulumi.get(self, "subnet_id")
|
|
8117
|
+
|
|
8118
|
+
@_builtins.property
|
|
8119
|
+
@pulumi.getter(name="vpcId")
|
|
8120
|
+
def vpc_id(self) -> _builtins.int:
|
|
8121
|
+
"""
|
|
8122
|
+
The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8123
|
+
"""
|
|
8124
|
+
return pulumi.get(self, "vpc_id")
|
|
8125
|
+
|
|
8126
|
+
|
|
7455
8127
|
@pulumi.output_type
|
|
7456
8128
|
class GetDatabaseMysqlV2UpdatesResult(dict):
|
|
7457
8129
|
def __init__(__self__, *,
|
|
@@ -7723,6 +8395,46 @@ class GetDatabasePostgresqlV2PendingUpdateResult(dict):
|
|
|
7723
8395
|
return pulumi.get(self, "planned_for")
|
|
7724
8396
|
|
|
7725
8397
|
|
|
8398
|
+
@pulumi.output_type
|
|
8399
|
+
class GetDatabasePostgresqlV2PrivateNetworkResult(dict):
|
|
8400
|
+
def __init__(__self__, *,
|
|
8401
|
+
public_access: _builtins.bool,
|
|
8402
|
+
subnet_id: _builtins.int,
|
|
8403
|
+
vpc_id: _builtins.int):
|
|
8404
|
+
"""
|
|
8405
|
+
:param _builtins.bool public_access: If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8406
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to restrict access to this database using.
|
|
8407
|
+
:param _builtins.int vpc_id: The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8408
|
+
"""
|
|
8409
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
8410
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
8411
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
8412
|
+
|
|
8413
|
+
@_builtins.property
|
|
8414
|
+
@pulumi.getter(name="publicAccess")
|
|
8415
|
+
def public_access(self) -> _builtins.bool:
|
|
8416
|
+
"""
|
|
8417
|
+
If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8418
|
+
"""
|
|
8419
|
+
return pulumi.get(self, "public_access")
|
|
8420
|
+
|
|
8421
|
+
@_builtins.property
|
|
8422
|
+
@pulumi.getter(name="subnetId")
|
|
8423
|
+
def subnet_id(self) -> _builtins.int:
|
|
8424
|
+
"""
|
|
8425
|
+
The ID of the VPC subnet to restrict access to this database using.
|
|
8426
|
+
"""
|
|
8427
|
+
return pulumi.get(self, "subnet_id")
|
|
8428
|
+
|
|
8429
|
+
@_builtins.property
|
|
8430
|
+
@pulumi.getter(name="vpcId")
|
|
8431
|
+
def vpc_id(self) -> _builtins.int:
|
|
8432
|
+
"""
|
|
8433
|
+
The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8434
|
+
"""
|
|
8435
|
+
return pulumi.get(self, "vpc_id")
|
|
8436
|
+
|
|
8437
|
+
|
|
7726
8438
|
@pulumi.output_type
|
|
7727
8439
|
class GetDatabasePostgresqlV2UpdatesResult(dict):
|
|
7728
8440
|
def __init__(__self__, *,
|
|
@@ -7769,6 +8481,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
|
7769
8481
|
id: _builtins.int,
|
|
7770
8482
|
instance_uri: _builtins.str,
|
|
7771
8483
|
label: _builtins.str,
|
|
8484
|
+
private_network: 'outputs.GetDatabasesDatabasePrivateNetworkResult',
|
|
7772
8485
|
region: _builtins.str,
|
|
7773
8486
|
replication_type: _builtins.str,
|
|
7774
8487
|
ssl_connection: _builtins.bool,
|
|
@@ -7787,6 +8500,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
|
7787
8500
|
:param _builtins.int id: The ID of the Managed Database.
|
|
7788
8501
|
:param _builtins.str instance_uri: he API route for the database instance.
|
|
7789
8502
|
:param _builtins.str label: A unique, user-defined string referring to the Managed Database.
|
|
8503
|
+
:param 'GetDatabasesDatabasePrivateNetworkArgs' private_network: Restricts access to this database using a virtual private cloud (VPC) that you've configured in the region where the database will live.
|
|
7790
8504
|
:param _builtins.str region: The region to use for the Managed Database.
|
|
7791
8505
|
:param _builtins.str replication_type: The replication method used for the Managed Database.
|
|
7792
8506
|
:param _builtins.bool ssl_connection: Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
@@ -7805,6 +8519,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
|
7805
8519
|
pulumi.set(__self__, "id", id)
|
|
7806
8520
|
pulumi.set(__self__, "instance_uri", instance_uri)
|
|
7807
8521
|
pulumi.set(__self__, "label", label)
|
|
8522
|
+
pulumi.set(__self__, "private_network", private_network)
|
|
7808
8523
|
pulumi.set(__self__, "region", region)
|
|
7809
8524
|
pulumi.set(__self__, "replication_type", replication_type)
|
|
7810
8525
|
pulumi.set(__self__, "ssl_connection", ssl_connection)
|
|
@@ -7893,6 +8608,14 @@ class GetDatabasesDatabaseResult(dict):
|
|
|
7893
8608
|
"""
|
|
7894
8609
|
return pulumi.get(self, "label")
|
|
7895
8610
|
|
|
8611
|
+
@_builtins.property
|
|
8612
|
+
@pulumi.getter(name="privateNetwork")
|
|
8613
|
+
def private_network(self) -> 'outputs.GetDatabasesDatabasePrivateNetworkResult':
|
|
8614
|
+
"""
|
|
8615
|
+
Restricts access to this database using a virtual private cloud (VPC) that you've configured in the region where the database will live.
|
|
8616
|
+
"""
|
|
8617
|
+
return pulumi.get(self, "private_network")
|
|
8618
|
+
|
|
7896
8619
|
@_builtins.property
|
|
7897
8620
|
@pulumi.getter
|
|
7898
8621
|
def region(self) -> _builtins.str:
|
|
@@ -7950,6 +8673,46 @@ class GetDatabasesDatabaseResult(dict):
|
|
|
7950
8673
|
return pulumi.get(self, "version")
|
|
7951
8674
|
|
|
7952
8675
|
|
|
8676
|
+
@pulumi.output_type
|
|
8677
|
+
class GetDatabasesDatabasePrivateNetworkResult(dict):
|
|
8678
|
+
def __init__(__self__, *,
|
|
8679
|
+
public_access: _builtins.bool,
|
|
8680
|
+
subnet_id: _builtins.int,
|
|
8681
|
+
vpc_id: _builtins.int):
|
|
8682
|
+
"""
|
|
8683
|
+
:param _builtins.bool public_access: If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8684
|
+
:param _builtins.int subnet_id: The ID of the VPC subnet to restrict access to this database using.
|
|
8685
|
+
:param _builtins.int vpc_id: The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8686
|
+
"""
|
|
8687
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
8688
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
8689
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
8690
|
+
|
|
8691
|
+
@_builtins.property
|
|
8692
|
+
@pulumi.getter(name="publicAccess")
|
|
8693
|
+
def public_access(self) -> _builtins.bool:
|
|
8694
|
+
"""
|
|
8695
|
+
If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
8696
|
+
"""
|
|
8697
|
+
return pulumi.get(self, "public_access")
|
|
8698
|
+
|
|
8699
|
+
@_builtins.property
|
|
8700
|
+
@pulumi.getter(name="subnetId")
|
|
8701
|
+
def subnet_id(self) -> _builtins.int:
|
|
8702
|
+
"""
|
|
8703
|
+
The ID of the VPC subnet to restrict access to this database using.
|
|
8704
|
+
"""
|
|
8705
|
+
return pulumi.get(self, "subnet_id")
|
|
8706
|
+
|
|
8707
|
+
@_builtins.property
|
|
8708
|
+
@pulumi.getter(name="vpcId")
|
|
8709
|
+
def vpc_id(self) -> _builtins.int:
|
|
8710
|
+
"""
|
|
8711
|
+
The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
8712
|
+
"""
|
|
8713
|
+
return pulumi.get(self, "vpc_id")
|
|
8714
|
+
|
|
8715
|
+
|
|
7953
8716
|
@pulumi.output_type
|
|
7954
8717
|
class GetDatabasesFilterResult(dict):
|
|
7955
8718
|
def __init__(__self__, *,
|
|
@@ -12348,6 +13111,7 @@ class GetInstancesInstanceConfigInterfaceResult(dict):
|
|
|
12348
13111
|
active: _builtins.bool,
|
|
12349
13112
|
id: _builtins.int,
|
|
12350
13113
|
ipv4: 'outputs.GetInstancesInstanceConfigInterfaceIpv4Result',
|
|
13114
|
+
ipv6: 'outputs.GetInstancesInstanceConfigInterfaceIpv6Result',
|
|
12351
13115
|
purpose: _builtins.str,
|
|
12352
13116
|
vpc_id: _builtins.int,
|
|
12353
13117
|
ip_ranges: Optional[Sequence[_builtins.str]] = None,
|
|
@@ -12359,6 +13123,7 @@ class GetInstancesInstanceConfigInterfaceResult(dict):
|
|
|
12359
13123
|
:param _builtins.bool active: Whether this interface is currently booted and active.
|
|
12360
13124
|
:param _builtins.int id: The ID of the Placement Group in the Linode API.
|
|
12361
13125
|
:param 'GetInstancesInstanceConfigInterfaceIpv4Args' ipv4: This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.
|
|
13126
|
+
:param 'GetInstancesInstanceConfigInterfaceIpv6Args' ipv6: This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
12362
13127
|
:param _builtins.str purpose: The type of interface. (`public`, `vlan`, `vpc`)
|
|
12363
13128
|
:param _builtins.int vpc_id: The ID of VPC which this interface is attached to.
|
|
12364
13129
|
:param Sequence[_builtins.str] ip_ranges: IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.
|
|
@@ -12370,6 +13135,7 @@ class GetInstancesInstanceConfigInterfaceResult(dict):
|
|
|
12370
13135
|
pulumi.set(__self__, "active", active)
|
|
12371
13136
|
pulumi.set(__self__, "id", id)
|
|
12372
13137
|
pulumi.set(__self__, "ipv4", ipv4)
|
|
13138
|
+
pulumi.set(__self__, "ipv6", ipv6)
|
|
12373
13139
|
pulumi.set(__self__, "purpose", purpose)
|
|
12374
13140
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
12375
13141
|
if ip_ranges is not None:
|
|
@@ -12407,6 +13173,14 @@ class GetInstancesInstanceConfigInterfaceResult(dict):
|
|
|
12407
13173
|
"""
|
|
12408
13174
|
return pulumi.get(self, "ipv4")
|
|
12409
13175
|
|
|
13176
|
+
@_builtins.property
|
|
13177
|
+
@pulumi.getter
|
|
13178
|
+
def ipv6(self) -> 'outputs.GetInstancesInstanceConfigInterfaceIpv6Result':
|
|
13179
|
+
"""
|
|
13180
|
+
This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
13181
|
+
"""
|
|
13182
|
+
return pulumi.get(self, "ipv6")
|
|
13183
|
+
|
|
12410
13184
|
@_builtins.property
|
|
12411
13185
|
@pulumi.getter
|
|
12412
13186
|
def purpose(self) -> _builtins.str:
|
|
@@ -12493,6 +13267,117 @@ class GetInstancesInstanceConfigInterfaceIpv4Result(dict):
|
|
|
12493
13267
|
return pulumi.get(self, "vpc")
|
|
12494
13268
|
|
|
12495
13269
|
|
|
13270
|
+
@pulumi.output_type
|
|
13271
|
+
class GetInstancesInstanceConfigInterfaceIpv6Result(dict):
|
|
13272
|
+
def __init__(__self__, *,
|
|
13273
|
+
is_public: _builtins.bool,
|
|
13274
|
+
ranges: Sequence['outputs.GetInstancesInstanceConfigInterfaceIpv6RangeResult'],
|
|
13275
|
+
slaacs: Sequence['outputs.GetInstancesInstanceConfigInterfaceIpv6SlaacResult']):
|
|
13276
|
+
"""
|
|
13277
|
+
:param _builtins.bool is_public: If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
13278
|
+
:param Sequence['GetInstancesInstanceConfigInterfaceIpv6RangeArgs'] ranges: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13279
|
+
:param Sequence['GetInstancesInstanceConfigInterfaceIpv6SlaacArgs'] slaacs: An array of SLAAC prefixes to use for this interface.
|
|
13280
|
+
"""
|
|
13281
|
+
pulumi.set(__self__, "is_public", is_public)
|
|
13282
|
+
pulumi.set(__self__, "ranges", ranges)
|
|
13283
|
+
pulumi.set(__self__, "slaacs", slaacs)
|
|
13284
|
+
|
|
13285
|
+
@_builtins.property
|
|
13286
|
+
@pulumi.getter(name="isPublic")
|
|
13287
|
+
def is_public(self) -> _builtins.bool:
|
|
13288
|
+
"""
|
|
13289
|
+
If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
13290
|
+
"""
|
|
13291
|
+
return pulumi.get(self, "is_public")
|
|
13292
|
+
|
|
13293
|
+
@_builtins.property
|
|
13294
|
+
@pulumi.getter
|
|
13295
|
+
def ranges(self) -> Sequence['outputs.GetInstancesInstanceConfigInterfaceIpv6RangeResult']:
|
|
13296
|
+
"""
|
|
13297
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13298
|
+
"""
|
|
13299
|
+
return pulumi.get(self, "ranges")
|
|
13300
|
+
|
|
13301
|
+
@_builtins.property
|
|
13302
|
+
@pulumi.getter
|
|
13303
|
+
def slaacs(self) -> Sequence['outputs.GetInstancesInstanceConfigInterfaceIpv6SlaacResult']:
|
|
13304
|
+
"""
|
|
13305
|
+
An array of SLAAC prefixes to use for this interface.
|
|
13306
|
+
"""
|
|
13307
|
+
return pulumi.get(self, "slaacs")
|
|
13308
|
+
|
|
13309
|
+
|
|
13310
|
+
@pulumi.output_type
|
|
13311
|
+
class GetInstancesInstanceConfigInterfaceIpv6RangeResult(dict):
|
|
13312
|
+
def __init__(__self__, *,
|
|
13313
|
+
assigned_range: _builtins.str,
|
|
13314
|
+
range: Optional[_builtins.str] = None):
|
|
13315
|
+
"""
|
|
13316
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
13317
|
+
:param _builtins.str range: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13318
|
+
"""
|
|
13319
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
13320
|
+
if range is not None:
|
|
13321
|
+
pulumi.set(__self__, "range", range)
|
|
13322
|
+
|
|
13323
|
+
@_builtins.property
|
|
13324
|
+
@pulumi.getter(name="assignedRange")
|
|
13325
|
+
def assigned_range(self) -> _builtins.str:
|
|
13326
|
+
"""
|
|
13327
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
13328
|
+
"""
|
|
13329
|
+
return pulumi.get(self, "assigned_range")
|
|
13330
|
+
|
|
13331
|
+
@_builtins.property
|
|
13332
|
+
@pulumi.getter
|
|
13333
|
+
def range(self) -> Optional[_builtins.str]:
|
|
13334
|
+
"""
|
|
13335
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13336
|
+
"""
|
|
13337
|
+
return pulumi.get(self, "range")
|
|
13338
|
+
|
|
13339
|
+
|
|
13340
|
+
@pulumi.output_type
|
|
13341
|
+
class GetInstancesInstanceConfigInterfaceIpv6SlaacResult(dict):
|
|
13342
|
+
def __init__(__self__, *,
|
|
13343
|
+
address: _builtins.str,
|
|
13344
|
+
assigned_range: _builtins.str,
|
|
13345
|
+
range: Optional[_builtins.str] = None):
|
|
13346
|
+
"""
|
|
13347
|
+
:param _builtins.str address: The SLAAC address chosen for this interface.
|
|
13348
|
+
:param _builtins.str assigned_range: The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
13349
|
+
:param _builtins.str range: A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13350
|
+
"""
|
|
13351
|
+
pulumi.set(__self__, "address", address)
|
|
13352
|
+
pulumi.set(__self__, "assigned_range", assigned_range)
|
|
13353
|
+
if range is not None:
|
|
13354
|
+
pulumi.set(__self__, "range", range)
|
|
13355
|
+
|
|
13356
|
+
@_builtins.property
|
|
13357
|
+
@pulumi.getter
|
|
13358
|
+
def address(self) -> _builtins.str:
|
|
13359
|
+
"""
|
|
13360
|
+
The SLAAC address chosen for this interface.
|
|
13361
|
+
"""
|
|
13362
|
+
return pulumi.get(self, "address")
|
|
13363
|
+
|
|
13364
|
+
@_builtins.property
|
|
13365
|
+
@pulumi.getter(name="assignedRange")
|
|
13366
|
+
def assigned_range(self) -> _builtins.str:
|
|
13367
|
+
"""
|
|
13368
|
+
The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
13369
|
+
"""
|
|
13370
|
+
return pulumi.get(self, "assigned_range")
|
|
13371
|
+
|
|
13372
|
+
@_builtins.property
|
|
13373
|
+
@pulumi.getter
|
|
13374
|
+
def range(self) -> Optional[_builtins.str]:
|
|
13375
|
+
"""
|
|
13376
|
+
A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
13377
|
+
"""
|
|
13378
|
+
return pulumi.get(self, "range")
|
|
13379
|
+
|
|
13380
|
+
|
|
12496
13381
|
@pulumi.output_type
|
|
12497
13382
|
class GetInstancesInstanceDiskResult(dict):
|
|
12498
13383
|
def __init__(__self__, *,
|
|
@@ -14744,6 +15629,35 @@ class GetNodeBalancerTransferResult(dict):
|
|
|
14744
15629
|
return pulumi.get(self, "total")
|
|
14745
15630
|
|
|
14746
15631
|
|
|
15632
|
+
@pulumi.output_type
|
|
15633
|
+
class GetNodeBalancerVpcResult(dict):
|
|
15634
|
+
def __init__(__self__, *,
|
|
15635
|
+
ipv4_range: _builtins.str,
|
|
15636
|
+
subnet_id: _builtins.int):
|
|
15637
|
+
"""
|
|
15638
|
+
:param _builtins.str ipv4_range: A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
15639
|
+
:param _builtins.int subnet_id: The ID of a subnet to assign to this NodeBalancer.
|
|
15640
|
+
"""
|
|
15641
|
+
pulumi.set(__self__, "ipv4_range", ipv4_range)
|
|
15642
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
15643
|
+
|
|
15644
|
+
@_builtins.property
|
|
15645
|
+
@pulumi.getter(name="ipv4Range")
|
|
15646
|
+
def ipv4_range(self) -> _builtins.str:
|
|
15647
|
+
"""
|
|
15648
|
+
A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
15649
|
+
"""
|
|
15650
|
+
return pulumi.get(self, "ipv4_range")
|
|
15651
|
+
|
|
15652
|
+
@_builtins.property
|
|
15653
|
+
@pulumi.getter(name="subnetId")
|
|
15654
|
+
def subnet_id(self) -> _builtins.int:
|
|
15655
|
+
"""
|
|
15656
|
+
The ID of a subnet to assign to this NodeBalancer.
|
|
15657
|
+
"""
|
|
15658
|
+
return pulumi.get(self, "subnet_id")
|
|
15659
|
+
|
|
15660
|
+
|
|
14747
15661
|
@pulumi.output_type
|
|
14748
15662
|
class GetNodebalancerConfigsFilterResult(dict):
|
|
14749
15663
|
def __init__(__self__, *,
|
|
@@ -14971,78 +15885,185 @@ class GetNodebalancerConfigsNodebalancerConfigResult(dict):
|
|
|
14971
15885
|
@pulumi.getter(name="proxyProtocol")
|
|
14972
15886
|
def proxy_protocol(self) -> _builtins.str:
|
|
14973
15887
|
"""
|
|
14974
|
-
The version of ProxyProtocol to use for the underlying NodeBalancer. This requires protocol to be `tcp`. (`none`, `v1`, and `v2`) (Defaults to `none`)
|
|
15888
|
+
The version of ProxyProtocol to use for the underlying NodeBalancer. This requires protocol to be `tcp`. (`none`, `v1`, and `v2`) (Defaults to `none`)
|
|
15889
|
+
"""
|
|
15890
|
+
return pulumi.get(self, "proxy_protocol")
|
|
15891
|
+
|
|
15892
|
+
@_builtins.property
|
|
15893
|
+
@pulumi.getter(name="sslCommonname")
|
|
15894
|
+
def ssl_commonname(self) -> _builtins.str:
|
|
15895
|
+
"""
|
|
15896
|
+
The read-only common name automatically derived from the SSL certificate assigned to this NodeBalancerConfig. Please refer to this field to verify that the appropriate certificate is assigned to your NodeBalancerConfig.
|
|
15897
|
+
"""
|
|
15898
|
+
return pulumi.get(self, "ssl_commonname")
|
|
15899
|
+
|
|
15900
|
+
@_builtins.property
|
|
15901
|
+
@pulumi.getter(name="sslFingerprint")
|
|
15902
|
+
def ssl_fingerprint(self) -> _builtins.str:
|
|
15903
|
+
"""
|
|
15904
|
+
The read-only fingerprint automatically derived from the SSL certificate assigned to this NodeBalancerConfig. Please refer to this field to verify that the appropriate certificate is assigned to your NodeBalancerConfig.
|
|
15905
|
+
"""
|
|
15906
|
+
return pulumi.get(self, "ssl_fingerprint")
|
|
15907
|
+
|
|
15908
|
+
@_builtins.property
|
|
15909
|
+
@pulumi.getter
|
|
15910
|
+
def stickiness(self) -> _builtins.str:
|
|
15911
|
+
"""
|
|
15912
|
+
Controls how session stickiness is handled on this port. (`none`, `table`, `http_cookie`)
|
|
15913
|
+
"""
|
|
15914
|
+
return pulumi.get(self, "stickiness")
|
|
15915
|
+
|
|
15916
|
+
@_builtins.property
|
|
15917
|
+
@pulumi.getter(name="udpCheckPort")
|
|
15918
|
+
def udp_check_port(self) -> _builtins.int:
|
|
15919
|
+
"""
|
|
15920
|
+
Specifies the port on the backend node used for active health checks, which may differ from the port serving traffic.
|
|
15921
|
+
"""
|
|
15922
|
+
return pulumi.get(self, "udp_check_port")
|
|
15923
|
+
|
|
15924
|
+
@_builtins.property
|
|
15925
|
+
@pulumi.getter(name="udpSessionTimeout")
|
|
15926
|
+
def udp_session_timeout(self) -> _builtins.int:
|
|
15927
|
+
"""
|
|
15928
|
+
The idle time in seconds after which a session that hasn’t received packets is destroyed.
|
|
15929
|
+
"""
|
|
15930
|
+
return pulumi.get(self, "udp_session_timeout")
|
|
15931
|
+
|
|
15932
|
+
|
|
15933
|
+
@pulumi.output_type
|
|
15934
|
+
class GetNodebalancerConfigsNodebalancerConfigNodeStatusResult(dict):
|
|
15935
|
+
def __init__(__self__, *,
|
|
15936
|
+
down: _builtins.int,
|
|
15937
|
+
up: _builtins.int):
|
|
15938
|
+
"""
|
|
15939
|
+
:param _builtins.int down: The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.
|
|
15940
|
+
:param _builtins.int up: The number of backends considered to be 'UP' and healthy, and that are serving requests.
|
|
15941
|
+
"""
|
|
15942
|
+
pulumi.set(__self__, "down", down)
|
|
15943
|
+
pulumi.set(__self__, "up", up)
|
|
15944
|
+
|
|
15945
|
+
@_builtins.property
|
|
15946
|
+
@pulumi.getter
|
|
15947
|
+
def down(self) -> _builtins.int:
|
|
15948
|
+
"""
|
|
15949
|
+
The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.
|
|
15950
|
+
"""
|
|
15951
|
+
return pulumi.get(self, "down")
|
|
15952
|
+
|
|
15953
|
+
@_builtins.property
|
|
15954
|
+
@pulumi.getter
|
|
15955
|
+
def up(self) -> _builtins.int:
|
|
15956
|
+
"""
|
|
15957
|
+
The number of backends considered to be 'UP' and healthy, and that are serving requests.
|
|
15958
|
+
"""
|
|
15959
|
+
return pulumi.get(self, "up")
|
|
15960
|
+
|
|
15961
|
+
|
|
15962
|
+
@pulumi.output_type
|
|
15963
|
+
class GetNodebalancerVpcsFilterResult(dict):
|
|
15964
|
+
def __init__(__self__, *,
|
|
15965
|
+
name: _builtins.str,
|
|
15966
|
+
values: Sequence[_builtins.str],
|
|
15967
|
+
match_by: Optional[_builtins.str] = None):
|
|
15968
|
+
"""
|
|
15969
|
+
:param _builtins.str name: The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
15970
|
+
:param Sequence[_builtins.str] values: A list of values for the filter to allow. These values should all be in string form.
|
|
15971
|
+
:param _builtins.str match_by: The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
15972
|
+
"""
|
|
15973
|
+
pulumi.set(__self__, "name", name)
|
|
15974
|
+
pulumi.set(__self__, "values", values)
|
|
15975
|
+
if match_by is not None:
|
|
15976
|
+
pulumi.set(__self__, "match_by", match_by)
|
|
15977
|
+
|
|
15978
|
+
@_builtins.property
|
|
15979
|
+
@pulumi.getter
|
|
15980
|
+
def name(self) -> _builtins.str:
|
|
15981
|
+
"""
|
|
15982
|
+
The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
15983
|
+
"""
|
|
15984
|
+
return pulumi.get(self, "name")
|
|
15985
|
+
|
|
15986
|
+
@_builtins.property
|
|
15987
|
+
@pulumi.getter
|
|
15988
|
+
def values(self) -> Sequence[_builtins.str]:
|
|
15989
|
+
"""
|
|
15990
|
+
A list of values for the filter to allow. These values should all be in string form.
|
|
14975
15991
|
"""
|
|
14976
|
-
return pulumi.get(self, "
|
|
15992
|
+
return pulumi.get(self, "values")
|
|
14977
15993
|
|
|
14978
15994
|
@_builtins.property
|
|
14979
|
-
@pulumi.getter(name="
|
|
14980
|
-
def
|
|
15995
|
+
@pulumi.getter(name="matchBy")
|
|
15996
|
+
def match_by(self) -> Optional[_builtins.str]:
|
|
14981
15997
|
"""
|
|
14982
|
-
The
|
|
15998
|
+
The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
14983
15999
|
"""
|
|
14984
|
-
return pulumi.get(self, "
|
|
16000
|
+
return pulumi.get(self, "match_by")
|
|
14985
16001
|
|
|
14986
|
-
|
|
14987
|
-
|
|
14988
|
-
|
|
16002
|
+
|
|
16003
|
+
@pulumi.output_type
|
|
16004
|
+
class GetNodebalancerVpcsVpcConfigResult(dict):
|
|
16005
|
+
def __init__(__self__, *,
|
|
16006
|
+
id: _builtins.int,
|
|
16007
|
+
ipv4_range: _builtins.str,
|
|
16008
|
+
nodebalancer_id: _builtins.int,
|
|
16009
|
+
subnet_id: _builtins.int,
|
|
16010
|
+
vpc_id: _builtins.int):
|
|
14989
16011
|
"""
|
|
14990
|
-
|
|
16012
|
+
:param _builtins.int id: The ID of the VPC configuration.
|
|
16013
|
+
:param _builtins.str ipv4_range: A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
16014
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer to list VPC configurations for.
|
|
16015
|
+
|
|
16016
|
+
* `filter` - (Optional) A set of filters used to select VPC configurations that meet certain requirements.
|
|
16017
|
+
:param _builtins.int subnet_id: The ID of this configuration's VPC subnet.
|
|
16018
|
+
:param _builtins.int vpc_id: The ID of this configuration's VPC.
|
|
14991
16019
|
"""
|
|
14992
|
-
|
|
16020
|
+
pulumi.set(__self__, "id", id)
|
|
16021
|
+
pulumi.set(__self__, "ipv4_range", ipv4_range)
|
|
16022
|
+
pulumi.set(__self__, "nodebalancer_id", nodebalancer_id)
|
|
16023
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
16024
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
14993
16025
|
|
|
14994
16026
|
@_builtins.property
|
|
14995
16027
|
@pulumi.getter
|
|
14996
|
-
def
|
|
16028
|
+
def id(self) -> _builtins.int:
|
|
14997
16029
|
"""
|
|
14998
|
-
|
|
16030
|
+
The ID of the VPC configuration.
|
|
14999
16031
|
"""
|
|
15000
|
-
return pulumi.get(self, "
|
|
16032
|
+
return pulumi.get(self, "id")
|
|
15001
16033
|
|
|
15002
16034
|
@_builtins.property
|
|
15003
|
-
@pulumi.getter(name="
|
|
15004
|
-
def
|
|
16035
|
+
@pulumi.getter(name="ipv4Range")
|
|
16036
|
+
def ipv4_range(self) -> _builtins.str:
|
|
15005
16037
|
"""
|
|
15006
|
-
|
|
16038
|
+
A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
15007
16039
|
"""
|
|
15008
|
-
return pulumi.get(self, "
|
|
16040
|
+
return pulumi.get(self, "ipv4_range")
|
|
15009
16041
|
|
|
15010
16042
|
@_builtins.property
|
|
15011
|
-
@pulumi.getter(name="
|
|
15012
|
-
def
|
|
15013
|
-
"""
|
|
15014
|
-
The idle time in seconds after which a session that hasn’t received packets is destroyed.
|
|
16043
|
+
@pulumi.getter(name="nodebalancerId")
|
|
16044
|
+
def nodebalancer_id(self) -> _builtins.int:
|
|
15015
16045
|
"""
|
|
15016
|
-
|
|
15017
|
-
|
|
16046
|
+
The ID of the NodeBalancer to list VPC configurations for.
|
|
15018
16047
|
|
|
15019
|
-
|
|
15020
|
-
class GetNodebalancerConfigsNodebalancerConfigNodeStatusResult(dict):
|
|
15021
|
-
def __init__(__self__, *,
|
|
15022
|
-
down: _builtins.int,
|
|
15023
|
-
up: _builtins.int):
|
|
15024
|
-
"""
|
|
15025
|
-
:param _builtins.int down: The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.
|
|
15026
|
-
:param _builtins.int up: The number of backends considered to be 'UP' and healthy, and that are serving requests.
|
|
16048
|
+
* `filter` - (Optional) A set of filters used to select VPC configurations that meet certain requirements.
|
|
15027
16049
|
"""
|
|
15028
|
-
pulumi.
|
|
15029
|
-
pulumi.set(__self__, "up", up)
|
|
16050
|
+
return pulumi.get(self, "nodebalancer_id")
|
|
15030
16051
|
|
|
15031
16052
|
@_builtins.property
|
|
15032
|
-
@pulumi.getter
|
|
15033
|
-
def
|
|
16053
|
+
@pulumi.getter(name="subnetId")
|
|
16054
|
+
def subnet_id(self) -> _builtins.int:
|
|
15034
16055
|
"""
|
|
15035
|
-
The
|
|
16056
|
+
The ID of this configuration's VPC subnet.
|
|
15036
16057
|
"""
|
|
15037
|
-
return pulumi.get(self, "
|
|
16058
|
+
return pulumi.get(self, "subnet_id")
|
|
15038
16059
|
|
|
15039
16060
|
@_builtins.property
|
|
15040
|
-
@pulumi.getter
|
|
15041
|
-
def
|
|
16061
|
+
@pulumi.getter(name="vpcId")
|
|
16062
|
+
def vpc_id(self) -> _builtins.int:
|
|
15042
16063
|
"""
|
|
15043
|
-
The
|
|
16064
|
+
The ID of this configuration's VPC.
|
|
15044
16065
|
"""
|
|
15045
|
-
return pulumi.get(self, "
|
|
16066
|
+
return pulumi.get(self, "vpc_id")
|
|
15046
16067
|
|
|
15047
16068
|
|
|
15048
16069
|
@pulumi.output_type
|
|
@@ -16720,7 +17741,6 @@ class GetUserGlobalGrantResult(dict):
|
|
|
16720
17741
|
add_linodes: _builtins.bool,
|
|
16721
17742
|
add_longview: _builtins.bool,
|
|
16722
17743
|
add_nodebalancers: _builtins.bool,
|
|
16723
|
-
add_placement_groups: _builtins.bool,
|
|
16724
17744
|
add_stackscripts: _builtins.bool,
|
|
16725
17745
|
add_volumes: _builtins.bool,
|
|
16726
17746
|
add_vpcs: _builtins.bool,
|
|
@@ -16735,7 +17755,6 @@ class GetUserGlobalGrantResult(dict):
|
|
|
16735
17755
|
:param _builtins.bool add_linodes: If true, this User may create Linodes.
|
|
16736
17756
|
:param _builtins.bool add_longview: If true, this User may create Longview clients and view the current plan.
|
|
16737
17757
|
:param _builtins.bool add_nodebalancers: If true, this User may add NodeBalancers.
|
|
16738
|
-
:param _builtins.bool add_placement_groups: If true, this User may add Placement Groups.
|
|
16739
17758
|
:param _builtins.bool add_volumes: If true, this User may add Volumes.
|
|
16740
17759
|
:param _builtins.bool add_vpcs: If true, this User may add Virtual Private Clouds (VPCs).
|
|
16741
17760
|
:param _builtins.bool cancel_account: If true, this User may cancel the entire Account.
|
|
@@ -16749,7 +17768,6 @@ class GetUserGlobalGrantResult(dict):
|
|
|
16749
17768
|
pulumi.set(__self__, "add_linodes", add_linodes)
|
|
16750
17769
|
pulumi.set(__self__, "add_longview", add_longview)
|
|
16751
17770
|
pulumi.set(__self__, "add_nodebalancers", add_nodebalancers)
|
|
16752
|
-
pulumi.set(__self__, "add_placement_groups", add_placement_groups)
|
|
16753
17771
|
pulumi.set(__self__, "add_stackscripts", add_stackscripts)
|
|
16754
17772
|
pulumi.set(__self__, "add_volumes", add_volumes)
|
|
16755
17773
|
pulumi.set(__self__, "add_vpcs", add_vpcs)
|
|
@@ -16820,14 +17838,6 @@ class GetUserGlobalGrantResult(dict):
|
|
|
16820
17838
|
"""
|
|
16821
17839
|
return pulumi.get(self, "add_nodebalancers")
|
|
16822
17840
|
|
|
16823
|
-
@_builtins.property
|
|
16824
|
-
@pulumi.getter(name="addPlacementGroups")
|
|
16825
|
-
def add_placement_groups(self) -> _builtins.bool:
|
|
16826
|
-
"""
|
|
16827
|
-
If true, this User may add Placement Groups.
|
|
16828
|
-
"""
|
|
16829
|
-
return pulumi.get(self, "add_placement_groups")
|
|
16830
|
-
|
|
16831
17841
|
@_builtins.property
|
|
16832
17842
|
@pulumi.getter(name="addStackscripts")
|
|
16833
17843
|
def add_stackscripts(self) -> _builtins.bool:
|
|
@@ -17026,46 +18036,6 @@ class GetUserNodebalancerGrantResult(dict):
|
|
|
17026
18036
|
return pulumi.get(self, "permissions")
|
|
17027
18037
|
|
|
17028
18038
|
|
|
17029
|
-
@pulumi.output_type
|
|
17030
|
-
class GetUserPlacementGroupGrantResult(dict):
|
|
17031
|
-
def __init__(__self__, *,
|
|
17032
|
-
id: _builtins.int,
|
|
17033
|
-
label: _builtins.str,
|
|
17034
|
-
permissions: _builtins.str):
|
|
17035
|
-
"""
|
|
17036
|
-
:param _builtins.int id: The ID of entity this grant applies to.
|
|
17037
|
-
:param _builtins.str label: The current label of the entity this grant applies to, for display purposes.
|
|
17038
|
-
:param _builtins.str permissions: The level of access this User has to this entity. If null, this User has no access. (`read_only`, `read_write`)
|
|
17039
|
-
"""
|
|
17040
|
-
pulumi.set(__self__, "id", id)
|
|
17041
|
-
pulumi.set(__self__, "label", label)
|
|
17042
|
-
pulumi.set(__self__, "permissions", permissions)
|
|
17043
|
-
|
|
17044
|
-
@_builtins.property
|
|
17045
|
-
@pulumi.getter
|
|
17046
|
-
def id(self) -> _builtins.int:
|
|
17047
|
-
"""
|
|
17048
|
-
The ID of entity this grant applies to.
|
|
17049
|
-
"""
|
|
17050
|
-
return pulumi.get(self, "id")
|
|
17051
|
-
|
|
17052
|
-
@_builtins.property
|
|
17053
|
-
@pulumi.getter
|
|
17054
|
-
def label(self) -> _builtins.str:
|
|
17055
|
-
"""
|
|
17056
|
-
The current label of the entity this grant applies to, for display purposes.
|
|
17057
|
-
"""
|
|
17058
|
-
return pulumi.get(self, "label")
|
|
17059
|
-
|
|
17060
|
-
@_builtins.property
|
|
17061
|
-
@pulumi.getter
|
|
17062
|
-
def permissions(self) -> _builtins.str:
|
|
17063
|
-
"""
|
|
17064
|
-
The level of access this User has to this entity. If null, this User has no access. (`read_only`, `read_write`)
|
|
17065
|
-
"""
|
|
17066
|
-
return pulumi.get(self, "permissions")
|
|
17067
|
-
|
|
17068
|
-
|
|
17069
18039
|
@pulumi.output_type
|
|
17070
18040
|
class GetUserStackscriptGrantResult(dict):
|
|
17071
18041
|
def __init__(__self__, *,
|
|
@@ -17241,7 +18211,6 @@ class GetUsersUserResult(dict):
|
|
|
17241
18211
|
longview_grants: Sequence['outputs.GetUsersUserLongviewGrantResult'],
|
|
17242
18212
|
nodebalancer_grants: Sequence['outputs.GetUsersUserNodebalancerGrantResult'],
|
|
17243
18213
|
password_created: _builtins.str,
|
|
17244
|
-
placement_group_grants: Sequence['outputs.GetUsersUserPlacementGroupGrantResult'],
|
|
17245
18214
|
restricted: _builtins.bool,
|
|
17246
18215
|
ssh_keys: Sequence[_builtins.str],
|
|
17247
18216
|
stackscript_grants: Sequence['outputs.GetUsersUserStackscriptGrantResult'],
|
|
@@ -17263,7 +18232,6 @@ class GetUsersUserResult(dict):
|
|
|
17263
18232
|
:param Sequence['GetUsersUserLongviewGrantArgs'] longview_grants: A set containing all of the user's active grants.
|
|
17264
18233
|
:param Sequence['GetUsersUserNodebalancerGrantArgs'] nodebalancer_grants: A set containing all of the user's active grants.
|
|
17265
18234
|
:param _builtins.str password_created: The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
|
|
17266
|
-
:param Sequence['GetUsersUserPlacementGroupGrantArgs'] placement_group_grants: A set containing all of the user's active grants.
|
|
17267
18235
|
:param _builtins.bool restricted: If true, this User must be granted access to perform actions or access entities on this Account.
|
|
17268
18236
|
:param Sequence[_builtins.str] ssh_keys: A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
|
|
17269
18237
|
:param Sequence['GetUsersUserStackscriptGrantArgs'] stackscript_grants: A set containing all of the user's active grants.
|
|
@@ -17285,7 +18253,6 @@ class GetUsersUserResult(dict):
|
|
|
17285
18253
|
pulumi.set(__self__, "longview_grants", longview_grants)
|
|
17286
18254
|
pulumi.set(__self__, "nodebalancer_grants", nodebalancer_grants)
|
|
17287
18255
|
pulumi.set(__self__, "password_created", password_created)
|
|
17288
|
-
pulumi.set(__self__, "placement_group_grants", placement_group_grants)
|
|
17289
18256
|
pulumi.set(__self__, "restricted", restricted)
|
|
17290
18257
|
pulumi.set(__self__, "ssh_keys", ssh_keys)
|
|
17291
18258
|
pulumi.set(__self__, "stackscript_grants", stackscript_grants)
|
|
@@ -17384,14 +18351,6 @@ class GetUsersUserResult(dict):
|
|
|
17384
18351
|
"""
|
|
17385
18352
|
return pulumi.get(self, "password_created")
|
|
17386
18353
|
|
|
17387
|
-
@_builtins.property
|
|
17388
|
-
@pulumi.getter(name="placementGroupGrants")
|
|
17389
|
-
def placement_group_grants(self) -> Sequence['outputs.GetUsersUserPlacementGroupGrantResult']:
|
|
17390
|
-
"""
|
|
17391
|
-
A set containing all of the user's active grants.
|
|
17392
|
-
"""
|
|
17393
|
-
return pulumi.get(self, "placement_group_grants")
|
|
17394
|
-
|
|
17395
18354
|
@_builtins.property
|
|
17396
18355
|
@pulumi.getter
|
|
17397
18356
|
def restricted(self) -> _builtins.bool:
|
|
@@ -17596,7 +18555,6 @@ class GetUsersUserGlobalGrantResult(dict):
|
|
|
17596
18555
|
add_linodes: _builtins.bool,
|
|
17597
18556
|
add_longview: _builtins.bool,
|
|
17598
18557
|
add_nodebalancers: _builtins.bool,
|
|
17599
|
-
add_placement_groups: _builtins.bool,
|
|
17600
18558
|
add_stackscripts: _builtins.bool,
|
|
17601
18559
|
add_volumes: _builtins.bool,
|
|
17602
18560
|
add_vpcs: _builtins.bool,
|
|
@@ -17611,7 +18569,6 @@ class GetUsersUserGlobalGrantResult(dict):
|
|
|
17611
18569
|
:param _builtins.bool add_linodes: If true, this User may create Linodes.
|
|
17612
18570
|
:param _builtins.bool add_longview: If true, this User may create Longview clients and view the current plan.
|
|
17613
18571
|
:param _builtins.bool add_nodebalancers: If true, this User may add NodeBalancers.
|
|
17614
|
-
:param _builtins.bool add_placement_groups: If true, this User may add Placement Groups.
|
|
17615
18572
|
:param _builtins.bool add_volumes: If true, this User may add Volumes.
|
|
17616
18573
|
:param _builtins.bool add_vpcs: If true, this User may add Virtual Private Clouds (VPCs).
|
|
17617
18574
|
:param _builtins.bool cancel_account: If true, this User may cancel the entire Account.
|
|
@@ -17625,7 +18582,6 @@ class GetUsersUserGlobalGrantResult(dict):
|
|
|
17625
18582
|
pulumi.set(__self__, "add_linodes", add_linodes)
|
|
17626
18583
|
pulumi.set(__self__, "add_longview", add_longview)
|
|
17627
18584
|
pulumi.set(__self__, "add_nodebalancers", add_nodebalancers)
|
|
17628
|
-
pulumi.set(__self__, "add_placement_groups", add_placement_groups)
|
|
17629
18585
|
pulumi.set(__self__, "add_stackscripts", add_stackscripts)
|
|
17630
18586
|
pulumi.set(__self__, "add_volumes", add_volumes)
|
|
17631
18587
|
pulumi.set(__self__, "add_vpcs", add_vpcs)
|
|
@@ -17696,14 +18652,6 @@ class GetUsersUserGlobalGrantResult(dict):
|
|
|
17696
18652
|
"""
|
|
17697
18653
|
return pulumi.get(self, "add_nodebalancers")
|
|
17698
18654
|
|
|
17699
|
-
@_builtins.property
|
|
17700
|
-
@pulumi.getter(name="addPlacementGroups")
|
|
17701
|
-
def add_placement_groups(self) -> _builtins.bool:
|
|
17702
|
-
"""
|
|
17703
|
-
If true, this User may add Placement Groups.
|
|
17704
|
-
"""
|
|
17705
|
-
return pulumi.get(self, "add_placement_groups")
|
|
17706
|
-
|
|
17707
18655
|
@_builtins.property
|
|
17708
18656
|
@pulumi.getter(name="addStackscripts")
|
|
17709
18657
|
def add_stackscripts(self) -> _builtins.bool:
|
|
@@ -17902,46 +18850,6 @@ class GetUsersUserNodebalancerGrantResult(dict):
|
|
|
17902
18850
|
return pulumi.get(self, "permissions")
|
|
17903
18851
|
|
|
17904
18852
|
|
|
17905
|
-
@pulumi.output_type
|
|
17906
|
-
class GetUsersUserPlacementGroupGrantResult(dict):
|
|
17907
|
-
def __init__(__self__, *,
|
|
17908
|
-
id: _builtins.int,
|
|
17909
|
-
label: _builtins.str,
|
|
17910
|
-
permissions: _builtins.str):
|
|
17911
|
-
"""
|
|
17912
|
-
:param _builtins.int id: The ID of entity this grant applies to.
|
|
17913
|
-
:param _builtins.str label: The current label of the entity this grant applies to, for display purposes.
|
|
17914
|
-
:param _builtins.str permissions: The level of access this User has to this entity. If null, this User has no access.
|
|
17915
|
-
"""
|
|
17916
|
-
pulumi.set(__self__, "id", id)
|
|
17917
|
-
pulumi.set(__self__, "label", label)
|
|
17918
|
-
pulumi.set(__self__, "permissions", permissions)
|
|
17919
|
-
|
|
17920
|
-
@_builtins.property
|
|
17921
|
-
@pulumi.getter
|
|
17922
|
-
def id(self) -> _builtins.int:
|
|
17923
|
-
"""
|
|
17924
|
-
The ID of entity this grant applies to.
|
|
17925
|
-
"""
|
|
17926
|
-
return pulumi.get(self, "id")
|
|
17927
|
-
|
|
17928
|
-
@_builtins.property
|
|
17929
|
-
@pulumi.getter
|
|
17930
|
-
def label(self) -> _builtins.str:
|
|
17931
|
-
"""
|
|
17932
|
-
The current label of the entity this grant applies to, for display purposes.
|
|
17933
|
-
"""
|
|
17934
|
-
return pulumi.get(self, "label")
|
|
17935
|
-
|
|
17936
|
-
@_builtins.property
|
|
17937
|
-
@pulumi.getter
|
|
17938
|
-
def permissions(self) -> _builtins.str:
|
|
17939
|
-
"""
|
|
17940
|
-
The level of access this User has to this entity. If null, this User has no access.
|
|
17941
|
-
"""
|
|
17942
|
-
return pulumi.get(self, "permissions")
|
|
17943
|
-
|
|
17944
|
-
|
|
17945
18853
|
@pulumi.output_type
|
|
17946
18854
|
class GetUsersUserStackscriptGrantResult(dict):
|
|
17947
18855
|
def __init__(__self__, *,
|
|
@@ -18537,6 +19445,9 @@ class GetVpcIpsVpcIpResult(dict):
|
|
|
18537
19445
|
config_id: _builtins.int,
|
|
18538
19446
|
gateway: _builtins.str,
|
|
18539
19447
|
interface_id: _builtins.int,
|
|
19448
|
+
ipv6_addresses: Sequence['outputs.GetVpcIpsVpcIpIpv6AddressResult'],
|
|
19449
|
+
ipv6_is_public: _builtins.bool,
|
|
19450
|
+
ipv6_range: _builtins.str,
|
|
18540
19451
|
linode_id: _builtins.int,
|
|
18541
19452
|
nat11: _builtins.str,
|
|
18542
19453
|
prefix: _builtins.int,
|
|
@@ -18551,6 +19462,9 @@ class GetVpcIpsVpcIpResult(dict):
|
|
|
18551
19462
|
:param _builtins.int config_id: The globally general entity identifier for the Linode configuration profile where the VPC is included.
|
|
18552
19463
|
:param _builtins.str gateway: The default gateway for the VPC subnet that the IP or IP range belongs to.
|
|
18553
19464
|
:param _builtins.int interface_id: The globally general API entity identifier for the Linode interface.
|
|
19465
|
+
:param Sequence['GetVpcIpsVpcIpIpv6AddressArgs'] ipv6_addresses: The addresses within the prefix that the interface is associated with.
|
|
19466
|
+
:param _builtins.bool ipv6_is_public: The is_public setting for the interface associated with this address.
|
|
19467
|
+
:param _builtins.str ipv6_range: The /64 prefix, in CIDR notation, assigned to an interface.
|
|
18554
19468
|
:param _builtins.int linode_id: The identifier for the Linode the VPC interface currently belongs to.
|
|
18555
19469
|
:param _builtins.str nat11: The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
|
|
18556
19470
|
:param _builtins.int prefix: The number of bits set in the subnet mask.
|
|
@@ -18567,6 +19481,9 @@ class GetVpcIpsVpcIpResult(dict):
|
|
|
18567
19481
|
pulumi.set(__self__, "config_id", config_id)
|
|
18568
19482
|
pulumi.set(__self__, "gateway", gateway)
|
|
18569
19483
|
pulumi.set(__self__, "interface_id", interface_id)
|
|
19484
|
+
pulumi.set(__self__, "ipv6_addresses", ipv6_addresses)
|
|
19485
|
+
pulumi.set(__self__, "ipv6_is_public", ipv6_is_public)
|
|
19486
|
+
pulumi.set(__self__, "ipv6_range", ipv6_range)
|
|
18570
19487
|
pulumi.set(__self__, "linode_id", linode_id)
|
|
18571
19488
|
pulumi.set(__self__, "nat11", nat11)
|
|
18572
19489
|
pulumi.set(__self__, "prefix", prefix)
|
|
@@ -18623,6 +19540,30 @@ class GetVpcIpsVpcIpResult(dict):
|
|
|
18623
19540
|
"""
|
|
18624
19541
|
return pulumi.get(self, "interface_id")
|
|
18625
19542
|
|
|
19543
|
+
@_builtins.property
|
|
19544
|
+
@pulumi.getter(name="ipv6Addresses")
|
|
19545
|
+
def ipv6_addresses(self) -> Sequence['outputs.GetVpcIpsVpcIpIpv6AddressResult']:
|
|
19546
|
+
"""
|
|
19547
|
+
The addresses within the prefix that the interface is associated with.
|
|
19548
|
+
"""
|
|
19549
|
+
return pulumi.get(self, "ipv6_addresses")
|
|
19550
|
+
|
|
19551
|
+
@_builtins.property
|
|
19552
|
+
@pulumi.getter(name="ipv6IsPublic")
|
|
19553
|
+
def ipv6_is_public(self) -> _builtins.bool:
|
|
19554
|
+
"""
|
|
19555
|
+
The is_public setting for the interface associated with this address.
|
|
19556
|
+
"""
|
|
19557
|
+
return pulumi.get(self, "ipv6_is_public")
|
|
19558
|
+
|
|
19559
|
+
@_builtins.property
|
|
19560
|
+
@pulumi.getter(name="ipv6Range")
|
|
19561
|
+
def ipv6_range(self) -> _builtins.str:
|
|
19562
|
+
"""
|
|
19563
|
+
The /64 prefix, in CIDR notation, assigned to an interface.
|
|
19564
|
+
"""
|
|
19565
|
+
return pulumi.get(self, "ipv6_range")
|
|
19566
|
+
|
|
18626
19567
|
@_builtins.property
|
|
18627
19568
|
@pulumi.getter(name="linodeId")
|
|
18628
19569
|
def linode_id(self) -> _builtins.int:
|
|
@@ -18682,6 +19623,60 @@ class GetVpcIpsVpcIpResult(dict):
|
|
|
18682
19623
|
return pulumi.get(self, "vpc_id")
|
|
18683
19624
|
|
|
18684
19625
|
|
|
19626
|
+
@pulumi.output_type
|
|
19627
|
+
class GetVpcIpsVpcIpIpv6AddressResult(dict):
|
|
19628
|
+
def __init__(__self__, *,
|
|
19629
|
+
slaac_address: _builtins.str):
|
|
19630
|
+
"""
|
|
19631
|
+
:param _builtins.str slaac_address: A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
|
|
19632
|
+
"""
|
|
19633
|
+
pulumi.set(__self__, "slaac_address", slaac_address)
|
|
19634
|
+
|
|
19635
|
+
@_builtins.property
|
|
19636
|
+
@pulumi.getter(name="slaacAddress")
|
|
19637
|
+
def slaac_address(self) -> _builtins.str:
|
|
19638
|
+
"""
|
|
19639
|
+
A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
|
|
19640
|
+
"""
|
|
19641
|
+
return pulumi.get(self, "slaac_address")
|
|
19642
|
+
|
|
19643
|
+
|
|
19644
|
+
@pulumi.output_type
|
|
19645
|
+
class GetVpcIpv6Result(dict):
|
|
19646
|
+
def __init__(__self__, *,
|
|
19647
|
+
range: _builtins.str):
|
|
19648
|
+
"""
|
|
19649
|
+
:param _builtins.str range: The IPv6 range assigned to this VPC.
|
|
19650
|
+
"""
|
|
19651
|
+
pulumi.set(__self__, "range", range)
|
|
19652
|
+
|
|
19653
|
+
@_builtins.property
|
|
19654
|
+
@pulumi.getter
|
|
19655
|
+
def range(self) -> _builtins.str:
|
|
19656
|
+
"""
|
|
19657
|
+
The IPv6 range assigned to this VPC.
|
|
19658
|
+
"""
|
|
19659
|
+
return pulumi.get(self, "range")
|
|
19660
|
+
|
|
19661
|
+
|
|
19662
|
+
@pulumi.output_type
|
|
19663
|
+
class GetVpcSubnetIpv6Result(dict):
|
|
19664
|
+
def __init__(__self__, *,
|
|
19665
|
+
range: _builtins.str):
|
|
19666
|
+
"""
|
|
19667
|
+
:param _builtins.str range: An IPv6 range allocated to this subnet.
|
|
19668
|
+
"""
|
|
19669
|
+
pulumi.set(__self__, "range", range)
|
|
19670
|
+
|
|
19671
|
+
@_builtins.property
|
|
19672
|
+
@pulumi.getter
|
|
19673
|
+
def range(self) -> _builtins.str:
|
|
19674
|
+
"""
|
|
19675
|
+
An IPv6 range allocated to this subnet.
|
|
19676
|
+
"""
|
|
19677
|
+
return pulumi.get(self, "range")
|
|
19678
|
+
|
|
19679
|
+
|
|
18685
19680
|
@pulumi.output_type
|
|
18686
19681
|
class GetVpcSubnetLinodeResult(dict):
|
|
18687
19682
|
def __init__(__self__, *,
|
|
@@ -18779,6 +19774,7 @@ class GetVpcSubnetsVpcSubnetResult(dict):
|
|
|
18779
19774
|
created: _builtins.str,
|
|
18780
19775
|
id: _builtins.int,
|
|
18781
19776
|
ipv4: _builtins.str,
|
|
19777
|
+
ipv6s: Sequence['outputs.GetVpcSubnetsVpcSubnetIpv6Result'],
|
|
18782
19778
|
label: _builtins.str,
|
|
18783
19779
|
linodes: Sequence['outputs.GetVpcSubnetsVpcSubnetLinodeResult'],
|
|
18784
19780
|
updated: _builtins.str):
|
|
@@ -18786,6 +19782,7 @@ class GetVpcSubnetsVpcSubnetResult(dict):
|
|
|
18786
19782
|
:param _builtins.str created: The date and time when the VPC Subnet was created.
|
|
18787
19783
|
:param _builtins.int id: The unique id of the VPC subnet.
|
|
18788
19784
|
:param _builtins.str ipv4: The IPv4 range of this subnet in CIDR format.
|
|
19785
|
+
:param Sequence['GetVpcSubnetsVpcSubnetIpv6Args'] ipv6s: The IPv6 ranges of this subnet.
|
|
18789
19786
|
:param _builtins.str label: The label of the VPC subnet.
|
|
18790
19787
|
:param Sequence['GetVpcSubnetsVpcSubnetLinodeArgs'] linodes: A list of Linode IDs that added to this subnet.
|
|
18791
19788
|
:param _builtins.str updated: The date and time when the VPC Subnet was last updated.
|
|
@@ -18793,6 +19790,7 @@ class GetVpcSubnetsVpcSubnetResult(dict):
|
|
|
18793
19790
|
pulumi.set(__self__, "created", created)
|
|
18794
19791
|
pulumi.set(__self__, "id", id)
|
|
18795
19792
|
pulumi.set(__self__, "ipv4", ipv4)
|
|
19793
|
+
pulumi.set(__self__, "ipv6s", ipv6s)
|
|
18796
19794
|
pulumi.set(__self__, "label", label)
|
|
18797
19795
|
pulumi.set(__self__, "linodes", linodes)
|
|
18798
19796
|
pulumi.set(__self__, "updated", updated)
|
|
@@ -18821,6 +19819,14 @@ class GetVpcSubnetsVpcSubnetResult(dict):
|
|
|
18821
19819
|
"""
|
|
18822
19820
|
return pulumi.get(self, "ipv4")
|
|
18823
19821
|
|
|
19822
|
+
@_builtins.property
|
|
19823
|
+
@pulumi.getter
|
|
19824
|
+
def ipv6s(self) -> Sequence['outputs.GetVpcSubnetsVpcSubnetIpv6Result']:
|
|
19825
|
+
"""
|
|
19826
|
+
The IPv6 ranges of this subnet.
|
|
19827
|
+
"""
|
|
19828
|
+
return pulumi.get(self, "ipv6s")
|
|
19829
|
+
|
|
18824
19830
|
@_builtins.property
|
|
18825
19831
|
@pulumi.getter
|
|
18826
19832
|
def label(self) -> _builtins.str:
|
|
@@ -18846,6 +19852,24 @@ class GetVpcSubnetsVpcSubnetResult(dict):
|
|
|
18846
19852
|
return pulumi.get(self, "updated")
|
|
18847
19853
|
|
|
18848
19854
|
|
|
19855
|
+
@pulumi.output_type
|
|
19856
|
+
class GetVpcSubnetsVpcSubnetIpv6Result(dict):
|
|
19857
|
+
def __init__(__self__, *,
|
|
19858
|
+
range: _builtins.str):
|
|
19859
|
+
"""
|
|
19860
|
+
:param _builtins.str range: An IPv6 range allocated to this subnet.
|
|
19861
|
+
"""
|
|
19862
|
+
pulumi.set(__self__, "range", range)
|
|
19863
|
+
|
|
19864
|
+
@_builtins.property
|
|
19865
|
+
@pulumi.getter
|
|
19866
|
+
def range(self) -> _builtins.str:
|
|
19867
|
+
"""
|
|
19868
|
+
An IPv6 range allocated to this subnet.
|
|
19869
|
+
"""
|
|
19870
|
+
return pulumi.get(self, "range")
|
|
19871
|
+
|
|
19872
|
+
|
|
18849
19873
|
@pulumi.output_type
|
|
18850
19874
|
class GetVpcSubnetsVpcSubnetLinodeResult(dict):
|
|
18851
19875
|
def __init__(__self__, *,
|
|
@@ -18943,6 +19967,7 @@ class GetVpcsVpcResult(dict):
|
|
|
18943
19967
|
created: _builtins.str,
|
|
18944
19968
|
description: _builtins.str,
|
|
18945
19969
|
id: _builtins.str,
|
|
19970
|
+
ipv6s: Sequence['outputs.GetVpcsVpcIpv6Result'],
|
|
18946
19971
|
label: _builtins.str,
|
|
18947
19972
|
region: _builtins.str,
|
|
18948
19973
|
updated: _builtins.str):
|
|
@@ -18950,6 +19975,7 @@ class GetVpcsVpcResult(dict):
|
|
|
18950
19975
|
:param _builtins.str created: The date and time when the VPC was created.
|
|
18951
19976
|
:param _builtins.str description: The user-defined description of this VPC.
|
|
18952
19977
|
:param _builtins.str id: The unique id of this VPC.
|
|
19978
|
+
:param Sequence['GetVpcsVpcIpv6Args'] ipv6s: A list of IPv6 allocations under this VPC.
|
|
18953
19979
|
:param _builtins.str label: The label of the VPC.
|
|
18954
19980
|
:param _builtins.str region: The region where the VPC is deployed.
|
|
18955
19981
|
:param _builtins.str updated: The date and time when the VPC was last updated.
|
|
@@ -18957,6 +19983,7 @@ class GetVpcsVpcResult(dict):
|
|
|
18957
19983
|
pulumi.set(__self__, "created", created)
|
|
18958
19984
|
pulumi.set(__self__, "description", description)
|
|
18959
19985
|
pulumi.set(__self__, "id", id)
|
|
19986
|
+
pulumi.set(__self__, "ipv6s", ipv6s)
|
|
18960
19987
|
pulumi.set(__self__, "label", label)
|
|
18961
19988
|
pulumi.set(__self__, "region", region)
|
|
18962
19989
|
pulumi.set(__self__, "updated", updated)
|
|
@@ -18985,6 +20012,14 @@ class GetVpcsVpcResult(dict):
|
|
|
18985
20012
|
"""
|
|
18986
20013
|
return pulumi.get(self, "id")
|
|
18987
20014
|
|
|
20015
|
+
@_builtins.property
|
|
20016
|
+
@pulumi.getter
|
|
20017
|
+
def ipv6s(self) -> Sequence['outputs.GetVpcsVpcIpv6Result']:
|
|
20018
|
+
"""
|
|
20019
|
+
A list of IPv6 allocations under this VPC.
|
|
20020
|
+
"""
|
|
20021
|
+
return pulumi.get(self, "ipv6s")
|
|
20022
|
+
|
|
18988
20023
|
@_builtins.property
|
|
18989
20024
|
@pulumi.getter
|
|
18990
20025
|
def label(self) -> _builtins.str:
|
|
@@ -19010,3 +20045,21 @@ class GetVpcsVpcResult(dict):
|
|
|
19010
20045
|
return pulumi.get(self, "updated")
|
|
19011
20046
|
|
|
19012
20047
|
|
|
20048
|
+
@pulumi.output_type
|
|
20049
|
+
class GetVpcsVpcIpv6Result(dict):
|
|
20050
|
+
def __init__(__self__, *,
|
|
20051
|
+
range: _builtins.str):
|
|
20052
|
+
"""
|
|
20053
|
+
:param _builtins.str range: The IPv6 range assigned to this VPC.
|
|
20054
|
+
"""
|
|
20055
|
+
pulumi.set(__self__, "range", range)
|
|
20056
|
+
|
|
20057
|
+
@_builtins.property
|
|
20058
|
+
@pulumi.getter
|
|
20059
|
+
def range(self) -> _builtins.str:
|
|
20060
|
+
"""
|
|
20061
|
+
The IPv6 range assigned to this VPC.
|
|
20062
|
+
"""
|
|
20063
|
+
return pulumi.get(self, "range")
|
|
20064
|
+
|
|
20065
|
+
|