pulumi-linode 5.2.0a1753337355__py3-none-any.whl → 5.2.0a1753397983__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
- pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
- pulumi_linode-5.2.0a1753337355.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,30 +45,30 @@ class GetVolumeTypesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'types' to be a list")
|
|
47
46
|
pulumi.set(__self__, "types", types)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetVolumeTypesFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The ID representing the Volume type.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def order(self) -> Optional[
|
|
63
|
+
def order(self) -> Optional[_builtins.str]:
|
|
65
64
|
return pulumi.get(self, "order")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="orderBy")
|
|
69
|
-
def order_by(self) -> Optional[
|
|
68
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order_by")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
73
|
def types(self) -> Optional[Sequence['outputs.GetVolumeTypesTypeResult']]:
|
|
75
74
|
return pulumi.get(self, "types")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetVolumeTypesResult(GetVolumeTypesResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_volume_types(filters: Optional[Sequence[Union['GetVolumeTypesFilterArgs', 'GetVolumeTypesFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
types: Optional[Sequence[Union['GetVolumeTypesTypeArgs', 'GetVolumeTypesTypeArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVolumeTypesResult:
|
|
96
95
|
"""
|
|
@@ -98,8 +97,8 @@ def get_volume_types(filters: Optional[Sequence[Union['GetVolumeTypesFilterArgs'
|
|
|
98
97
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-volume-types).
|
|
99
98
|
|
|
100
99
|
|
|
101
|
-
:param
|
|
102
|
-
:param
|
|
100
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
101
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
103
102
|
"""
|
|
104
103
|
__args__ = dict()
|
|
105
104
|
__args__['filters'] = filters
|
|
@@ -116,8 +115,8 @@ def get_volume_types(filters: Optional[Sequence[Union['GetVolumeTypesFilterArgs'
|
|
|
116
115
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
117
116
|
types=pulumi.get(__ret__, 'types'))
|
|
118
117
|
def get_volume_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVolumeTypesFilterArgs', 'GetVolumeTypesFilterArgsDict']]]]] = None,
|
|
119
|
-
order: Optional[pulumi.Input[Optional[
|
|
120
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
118
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
119
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
121
120
|
types: Optional[pulumi.Input[Optional[Sequence[Union['GetVolumeTypesTypeArgs', 'GetVolumeTypesTypeArgsDict']]]]] = None,
|
|
122
121
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVolumeTypesResult]:
|
|
123
122
|
"""
|
|
@@ -125,8 +124,8 @@ def get_volume_types_output(filters: Optional[pulumi.Input[Optional[Sequence[Uni
|
|
|
125
124
|
For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-volume-types).
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
:param
|
|
129
|
-
:param
|
|
127
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
128
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['filters'] = filters
|
pulumi_linode/get_volumes.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,30 +45,30 @@ class GetVolumesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'volumes' to be a list")
|
|
47
46
|
pulumi.set(__self__, "volumes", volumes)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetVolumesFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The unique ID of this Volume.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def order(self) -> Optional[
|
|
63
|
+
def order(self) -> Optional[_builtins.str]:
|
|
65
64
|
return pulumi.get(self, "order")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="orderBy")
|
|
69
|
-
def order_by(self) -> Optional[
|
|
68
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order_by")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
73
|
def volumes(self) -> Optional[Sequence['outputs.GetVolumesVolumeResult']]:
|
|
75
74
|
return pulumi.get(self, "volumes")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetVolumesResult(GetVolumesResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_volumes(filters: Optional[Sequence[Union['GetVolumesFilterArgs', 'GetVolumesFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
volumes: Optional[Sequence[Union['GetVolumesVolumeArgs', 'GetVolumesVolumeArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVolumesResult:
|
|
96
95
|
"""
|
|
@@ -115,8 +114,8 @@ def get_volumes(filters: Optional[Sequence[Union['GetVolumesFilterArgs', 'GetVol
|
|
|
115
114
|
* `tags`
|
|
116
115
|
|
|
117
116
|
|
|
118
|
-
:param
|
|
119
|
-
:param
|
|
117
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
118
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
120
119
|
"""
|
|
121
120
|
__args__ = dict()
|
|
122
121
|
__args__['filters'] = filters
|
|
@@ -133,8 +132,8 @@ def get_volumes(filters: Optional[Sequence[Union['GetVolumesFilterArgs', 'GetVol
|
|
|
133
132
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
134
133
|
volumes=pulumi.get(__ret__, 'volumes'))
|
|
135
134
|
def get_volumes_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVolumesFilterArgs', 'GetVolumesFilterArgsDict']]]]] = None,
|
|
136
|
-
order: Optional[pulumi.Input[Optional[
|
|
137
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
135
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
136
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
138
137
|
volumes: Optional[pulumi.Input[Optional[Sequence[Union['GetVolumesVolumeArgs', 'GetVolumesVolumeArgsDict']]]]] = None,
|
|
139
138
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVolumesResult]:
|
|
140
139
|
"""
|
|
@@ -159,8 +158,8 @@ def get_volumes_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['G
|
|
|
159
158
|
* `tags`
|
|
160
159
|
|
|
161
160
|
|
|
162
|
-
:param
|
|
163
|
-
:param
|
|
161
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
162
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
164
163
|
"""
|
|
165
164
|
__args__ = dict()
|
|
166
165
|
__args__['filters'] = filters
|
pulumi_linode/get_vpc.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -47,46 +46,46 @@ class GetVpcResult:
|
|
|
47
46
|
raise TypeError("Expected argument 'updated' to be a str")
|
|
48
47
|
pulumi.set(__self__, "updated", updated)
|
|
49
48
|
|
|
50
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
51
50
|
@pulumi.getter
|
|
52
|
-
def created(self) ->
|
|
51
|
+
def created(self) -> _builtins.str:
|
|
53
52
|
"""
|
|
54
53
|
The date and time when the VPC was created.
|
|
55
54
|
"""
|
|
56
55
|
return pulumi.get(self, "created")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
|
-
def description(self) ->
|
|
59
|
+
def description(self) -> _builtins.str:
|
|
61
60
|
"""
|
|
62
61
|
The user-defined description of this VPC.
|
|
63
62
|
"""
|
|
64
63
|
return pulumi.get(self, "description")
|
|
65
64
|
|
|
66
|
-
@property
|
|
65
|
+
@_builtins.property
|
|
67
66
|
@pulumi.getter
|
|
68
|
-
def id(self) ->
|
|
67
|
+
def id(self) -> _builtins.str:
|
|
69
68
|
return pulumi.get(self, "id")
|
|
70
69
|
|
|
71
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
72
71
|
@pulumi.getter
|
|
73
|
-
def label(self) ->
|
|
72
|
+
def label(self) -> _builtins.str:
|
|
74
73
|
"""
|
|
75
74
|
The label of the VPC.
|
|
76
75
|
"""
|
|
77
76
|
return pulumi.get(self, "label")
|
|
78
77
|
|
|
79
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
80
79
|
@pulumi.getter
|
|
81
|
-
def region(self) ->
|
|
80
|
+
def region(self) -> _builtins.str:
|
|
82
81
|
"""
|
|
83
82
|
The region where the VPC is deployed.
|
|
84
83
|
"""
|
|
85
84
|
return pulumi.get(self, "region")
|
|
86
85
|
|
|
87
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
88
87
|
@pulumi.getter
|
|
89
|
-
def updated(self) ->
|
|
88
|
+
def updated(self) -> _builtins.str:
|
|
90
89
|
"""
|
|
91
90
|
The date and time when the VPC was last updated.
|
|
92
91
|
"""
|
|
@@ -107,7 +106,7 @@ class AwaitableGetVpcResult(GetVpcResult):
|
|
|
107
106
|
updated=self.updated)
|
|
108
107
|
|
|
109
108
|
|
|
110
|
-
def get_vpc(id: Optional[
|
|
109
|
+
def get_vpc(id: Optional[_builtins.str] = None,
|
|
111
110
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcResult:
|
|
112
111
|
"""
|
|
113
112
|
Provides information about a Linode VPC.
|
|
@@ -126,7 +125,7 @@ def get_vpc(id: Optional[builtins.str] = None,
|
|
|
126
125
|
```
|
|
127
126
|
|
|
128
127
|
|
|
129
|
-
:param
|
|
128
|
+
:param _builtins.str id: The unique id of this VPC.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['id'] = id
|
|
@@ -140,7 +139,7 @@ def get_vpc(id: Optional[builtins.str] = None,
|
|
|
140
139
|
label=pulumi.get(__ret__, 'label'),
|
|
141
140
|
region=pulumi.get(__ret__, 'region'),
|
|
142
141
|
updated=pulumi.get(__ret__, 'updated'))
|
|
143
|
-
def get_vpc_output(id: Optional[pulumi.Input[
|
|
142
|
+
def get_vpc_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
144
143
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcResult]:
|
|
145
144
|
"""
|
|
146
145
|
Provides information about a Linode VPC.
|
|
@@ -159,7 +158,7 @@ def get_vpc_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
159
158
|
```
|
|
160
159
|
|
|
161
160
|
|
|
162
|
-
:param
|
|
161
|
+
:param _builtins.str id: The unique id of this VPC.
|
|
163
162
|
"""
|
|
164
163
|
__args__ = dict()
|
|
165
164
|
__args__['id'] = id
|
pulumi_linode/get_vpc_ips.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -43,25 +42,25 @@ class GetVpcIpsResult:
|
|
|
43
42
|
raise TypeError("Expected argument 'vpc_ips' to be a list")
|
|
44
43
|
pulumi.set(__self__, "vpc_ips", vpc_ips)
|
|
45
44
|
|
|
46
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
47
46
|
@pulumi.getter
|
|
48
47
|
def filters(self) -> Optional[Sequence['outputs.GetVpcIpsFilterResult']]:
|
|
49
48
|
return pulumi.get(self, "filters")
|
|
50
49
|
|
|
51
|
-
@property
|
|
50
|
+
@_builtins.property
|
|
52
51
|
@pulumi.getter
|
|
53
|
-
def id(self) ->
|
|
52
|
+
def id(self) -> _builtins.str:
|
|
54
53
|
return pulumi.get(self, "id")
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter(name="vpcId")
|
|
58
|
-
def vpc_id(self) -> Optional[
|
|
57
|
+
def vpc_id(self) -> Optional[_builtins.int]:
|
|
59
58
|
"""
|
|
60
59
|
The unique globally general API entity identifier for the VPC.
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "vpc_id")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter(name="vpcIps")
|
|
66
65
|
def vpc_ips(self) -> Optional[Sequence['outputs.GetVpcIpsVpcIpResult']]:
|
|
67
66
|
return pulumi.get(self, "vpc_ips")
|
|
@@ -80,7 +79,7 @@ class AwaitableGetVpcIpsResult(GetVpcIpsResult):
|
|
|
80
79
|
|
|
81
80
|
|
|
82
81
|
def get_vpc_ips(filters: Optional[Sequence[Union['GetVpcIpsFilterArgs', 'GetVpcIpsFilterArgsDict']]] = None,
|
|
83
|
-
vpc_id: Optional[
|
|
82
|
+
vpc_id: Optional[_builtins.int] = None,
|
|
84
83
|
vpc_ips: Optional[Sequence[Union['GetVpcIpsVpcIpArgs', 'GetVpcIpsVpcIpArgsDict']]] = None,
|
|
85
84
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcIpsResult:
|
|
86
85
|
"""
|
|
@@ -128,7 +127,7 @@ def get_vpc_ips(filters: Optional[Sequence[Union['GetVpcIpsFilterArgs', 'GetVpcI
|
|
|
128
127
|
* `vpc_id`
|
|
129
128
|
|
|
130
129
|
|
|
131
|
-
:param
|
|
130
|
+
:param _builtins.int vpc_id: The id of the parent VPC for the list of VPC IPs.
|
|
132
131
|
|
|
133
132
|
* `filter` - (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
|
|
134
133
|
"""
|
|
@@ -145,7 +144,7 @@ def get_vpc_ips(filters: Optional[Sequence[Union['GetVpcIpsFilterArgs', 'GetVpcI
|
|
|
145
144
|
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
146
145
|
vpc_ips=pulumi.get(__ret__, 'vpc_ips'))
|
|
147
146
|
def get_vpc_ips_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVpcIpsFilterArgs', 'GetVpcIpsFilterArgsDict']]]]] = None,
|
|
148
|
-
vpc_id: Optional[pulumi.Input[Optional[
|
|
147
|
+
vpc_id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
149
148
|
vpc_ips: Optional[pulumi.Input[Optional[Sequence[Union['GetVpcIpsVpcIpArgs', 'GetVpcIpsVpcIpArgsDict']]]]] = None,
|
|
150
149
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcIpsResult]:
|
|
151
150
|
"""
|
|
@@ -193,7 +192,7 @@ def get_vpc_ips_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['G
|
|
|
193
192
|
* `vpc_id`
|
|
194
193
|
|
|
195
194
|
|
|
196
|
-
:param
|
|
195
|
+
:param _builtins.int vpc_id: The id of the parent VPC for the list of VPC IPs.
|
|
197
196
|
|
|
198
197
|
* `filter` - (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
|
|
199
198
|
"""
|
pulumi_linode/get_vpc_subnet.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -51,36 +50,36 @@ class GetVpcSubnetResult:
|
|
|
51
50
|
raise TypeError("Expected argument 'vpc_id' to be a int")
|
|
52
51
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def created(self) ->
|
|
55
|
+
def created(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The date and time when the VPC Subnet was created.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "created")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def id(self) ->
|
|
63
|
+
def id(self) -> _builtins.str:
|
|
65
64
|
return pulumi.get(self, "id")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def ipv4(self) ->
|
|
68
|
+
def ipv4(self) -> _builtins.str:
|
|
70
69
|
"""
|
|
71
70
|
The IPv4 range of this subnet in CIDR format.
|
|
72
71
|
"""
|
|
73
72
|
return pulumi.get(self, "ipv4")
|
|
74
73
|
|
|
75
|
-
@property
|
|
74
|
+
@_builtins.property
|
|
76
75
|
@pulumi.getter
|
|
77
|
-
def label(self) ->
|
|
76
|
+
def label(self) -> _builtins.str:
|
|
78
77
|
"""
|
|
79
78
|
The label of the VPC subnet.
|
|
80
79
|
"""
|
|
81
80
|
return pulumi.get(self, "label")
|
|
82
81
|
|
|
83
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
84
83
|
@pulumi.getter
|
|
85
84
|
def linodes(self) -> Sequence['outputs.GetVpcSubnetLinodeResult']:
|
|
86
85
|
"""
|
|
@@ -88,17 +87,17 @@ class GetVpcSubnetResult:
|
|
|
88
87
|
"""
|
|
89
88
|
return pulumi.get(self, "linodes")
|
|
90
89
|
|
|
91
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
92
91
|
@pulumi.getter
|
|
93
|
-
def updated(self) ->
|
|
92
|
+
def updated(self) -> _builtins.str:
|
|
94
93
|
"""
|
|
95
94
|
The date and time when the VPC Subnet was last updated.
|
|
96
95
|
"""
|
|
97
96
|
return pulumi.get(self, "updated")
|
|
98
97
|
|
|
99
|
-
@property
|
|
98
|
+
@_builtins.property
|
|
100
99
|
@pulumi.getter(name="vpcId")
|
|
101
|
-
def vpc_id(self) ->
|
|
100
|
+
def vpc_id(self) -> _builtins.int:
|
|
102
101
|
return pulumi.get(self, "vpc_id")
|
|
103
102
|
|
|
104
103
|
|
|
@@ -117,8 +116,8 @@ class AwaitableGetVpcSubnetResult(GetVpcSubnetResult):
|
|
|
117
116
|
vpc_id=self.vpc_id)
|
|
118
117
|
|
|
119
118
|
|
|
120
|
-
def get_vpc_subnet(id: Optional[
|
|
121
|
-
vpc_id: Optional[
|
|
119
|
+
def get_vpc_subnet(id: Optional[_builtins.str] = None,
|
|
120
|
+
vpc_id: Optional[_builtins.int] = None,
|
|
122
121
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcSubnetResult:
|
|
123
122
|
"""
|
|
124
123
|
Provides information about a Linode VPC subnet.
|
|
@@ -138,8 +137,8 @@ def get_vpc_subnet(id: Optional[builtins.str] = None,
|
|
|
138
137
|
```
|
|
139
138
|
|
|
140
139
|
|
|
141
|
-
:param
|
|
142
|
-
:param
|
|
140
|
+
:param _builtins.str id: The unique id of this VPC subnet.
|
|
141
|
+
:param _builtins.int vpc_id: The id of the parent VPC for this VPC Subnet.
|
|
143
142
|
"""
|
|
144
143
|
__args__ = dict()
|
|
145
144
|
__args__['id'] = id
|
|
@@ -155,8 +154,8 @@ def get_vpc_subnet(id: Optional[builtins.str] = None,
|
|
|
155
154
|
linodes=pulumi.get(__ret__, 'linodes'),
|
|
156
155
|
updated=pulumi.get(__ret__, 'updated'),
|
|
157
156
|
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
|
158
|
-
def get_vpc_subnet_output(id: Optional[pulumi.Input[
|
|
159
|
-
vpc_id: Optional[pulumi.Input[
|
|
157
|
+
def get_vpc_subnet_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
158
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
160
159
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcSubnetResult]:
|
|
161
160
|
"""
|
|
162
161
|
Provides information about a Linode VPC subnet.
|
|
@@ -176,8 +175,8 @@ def get_vpc_subnet_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
176
175
|
```
|
|
177
176
|
|
|
178
177
|
|
|
179
|
-
:param
|
|
180
|
-
:param
|
|
178
|
+
:param _builtins.str id: The unique id of this VPC subnet.
|
|
179
|
+
:param _builtins.int vpc_id: The id of the parent VPC for this VPC Subnet.
|
|
181
180
|
"""
|
|
182
181
|
__args__ = dict()
|
|
183
182
|
__args__['id'] = id
|
pulumi_linode/get_vpc_subnets.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -43,25 +42,25 @@ class GetVpcSubnetsResult:
|
|
|
43
42
|
raise TypeError("Expected argument 'vpc_subnets' to be a list")
|
|
44
43
|
pulumi.set(__self__, "vpc_subnets", vpc_subnets)
|
|
45
44
|
|
|
46
|
-
@property
|
|
45
|
+
@_builtins.property
|
|
47
46
|
@pulumi.getter
|
|
48
47
|
def filters(self) -> Optional[Sequence['outputs.GetVpcSubnetsFilterResult']]:
|
|
49
48
|
return pulumi.get(self, "filters")
|
|
50
49
|
|
|
51
|
-
@property
|
|
50
|
+
@_builtins.property
|
|
52
51
|
@pulumi.getter
|
|
53
|
-
def id(self) ->
|
|
52
|
+
def id(self) -> _builtins.str:
|
|
54
53
|
"""
|
|
55
54
|
The unique id of the VPC subnet.
|
|
56
55
|
"""
|
|
57
56
|
return pulumi.get(self, "id")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter(name="vpcId")
|
|
61
|
-
def vpc_id(self) ->
|
|
60
|
+
def vpc_id(self) -> _builtins.int:
|
|
62
61
|
return pulumi.get(self, "vpc_id")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter(name="vpcSubnets")
|
|
66
65
|
def vpc_subnets(self) -> Optional[Sequence['outputs.GetVpcSubnetsVpcSubnetResult']]:
|
|
67
66
|
return pulumi.get(self, "vpc_subnets")
|
|
@@ -80,7 +79,7 @@ class AwaitableGetVpcSubnetsResult(GetVpcSubnetsResult):
|
|
|
80
79
|
|
|
81
80
|
|
|
82
81
|
def get_vpc_subnets(filters: Optional[Sequence[Union['GetVpcSubnetsFilterArgs', 'GetVpcSubnetsFilterArgsDict']]] = None,
|
|
83
|
-
vpc_id: Optional[
|
|
82
|
+
vpc_id: Optional[_builtins.int] = None,
|
|
84
83
|
vpc_subnets: Optional[Sequence[Union['GetVpcSubnetsVpcSubnetArgs', 'GetVpcSubnetsVpcSubnetArgsDict']]] = None,
|
|
85
84
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcSubnetsResult:
|
|
86
85
|
"""
|
|
@@ -112,7 +111,7 @@ def get_vpc_subnets(filters: Optional[Sequence[Union['GetVpcSubnetsFilterArgs',
|
|
|
112
111
|
* `ipv4`
|
|
113
112
|
|
|
114
113
|
|
|
115
|
-
:param
|
|
114
|
+
:param _builtins.int vpc_id: The id of the parent VPC for the list of VPCs.
|
|
116
115
|
|
|
117
116
|
* `filter` - (Optional) A set of filters used to select Linode VPC subnets that meet certain requirements.
|
|
118
117
|
"""
|
|
@@ -129,7 +128,7 @@ def get_vpc_subnets(filters: Optional[Sequence[Union['GetVpcSubnetsFilterArgs',
|
|
|
129
128
|
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
130
129
|
vpc_subnets=pulumi.get(__ret__, 'vpc_subnets'))
|
|
131
130
|
def get_vpc_subnets_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVpcSubnetsFilterArgs', 'GetVpcSubnetsFilterArgsDict']]]]] = None,
|
|
132
|
-
vpc_id: Optional[pulumi.Input[
|
|
131
|
+
vpc_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
133
132
|
vpc_subnets: Optional[pulumi.Input[Optional[Sequence[Union['GetVpcSubnetsVpcSubnetArgs', 'GetVpcSubnetsVpcSubnetArgsDict']]]]] = None,
|
|
134
133
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcSubnetsResult]:
|
|
135
134
|
"""
|
|
@@ -161,7 +160,7 @@ def get_vpc_subnets_output(filters: Optional[pulumi.Input[Optional[Sequence[Unio
|
|
|
161
160
|
* `ipv4`
|
|
162
161
|
|
|
163
162
|
|
|
164
|
-
:param
|
|
163
|
+
:param _builtins.int vpc_id: The id of the parent VPC for the list of VPCs.
|
|
165
164
|
|
|
166
165
|
* `filter` - (Optional) A set of filters used to select Linode VPC subnets that meet certain requirements.
|
|
167
166
|
"""
|
pulumi_linode/get_vpcs.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -40,20 +39,20 @@ class GetVpcsResult:
|
|
|
40
39
|
raise TypeError("Expected argument 'vpcs' to be a list")
|
|
41
40
|
pulumi.set(__self__, "vpcs", vpcs)
|
|
42
41
|
|
|
43
|
-
@property
|
|
42
|
+
@_builtins.property
|
|
44
43
|
@pulumi.getter
|
|
45
44
|
def filters(self) -> Optional[Sequence['outputs.GetVpcsFilterResult']]:
|
|
46
45
|
return pulumi.get(self, "filters")
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter
|
|
50
|
-
def id(self) ->
|
|
49
|
+
def id(self) -> _builtins.str:
|
|
51
50
|
"""
|
|
52
51
|
The unique id of this VPC.
|
|
53
52
|
"""
|
|
54
53
|
return pulumi.get(self, "id")
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter
|
|
58
57
|
def vpcs(self) -> Optional[Sequence['outputs.GetVpcsVpcResult']]:
|
|
59
58
|
return pulumi.get(self, "vpcs")
|