pulumi-linode 5.1.0a1752810302__py3-none-any.whl → 5.1.1a1753933550__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.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/METADATA +1 -1
- pulumi_linode-5.1.1a1753933550.dist-info/RECORD +126 -0
- pulumi_linode-5.1.0a1752810302.dist-info/RECORD +0 -126
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/top_level.txt +0 -0
pulumi_linode/get_kernel.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
|
|
@@ -56,67 +55,67 @@ class GetKernelResult:
|
|
|
56
55
|
raise TypeError("Expected argument 'xen' to be a bool")
|
|
57
56
|
pulumi.set(__self__, "xen", xen)
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def architecture(self) ->
|
|
60
|
+
def architecture(self) -> _builtins.str:
|
|
62
61
|
"""
|
|
63
62
|
The architecture of this Kernel.
|
|
64
63
|
"""
|
|
65
64
|
return pulumi.get(self, "architecture")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def built(self) ->
|
|
68
|
+
def built(self) -> _builtins.str:
|
|
70
69
|
return pulumi.get(self, "built")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
|
-
def deprecated(self) ->
|
|
73
|
+
def deprecated(self) -> _builtins.bool:
|
|
75
74
|
"""
|
|
76
75
|
Whether or not this Kernel is deprecated.
|
|
77
76
|
"""
|
|
78
77
|
return pulumi.get(self, "deprecated")
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter
|
|
82
|
-
def id(self) ->
|
|
81
|
+
def id(self) -> _builtins.str:
|
|
83
82
|
return pulumi.get(self, "id")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def kvm(self) ->
|
|
86
|
+
def kvm(self) -> _builtins.bool:
|
|
88
87
|
"""
|
|
89
88
|
If this Kernel is suitable for KVM Linodes.
|
|
90
89
|
"""
|
|
91
90
|
return pulumi.get(self, "kvm")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def label(self) ->
|
|
94
|
+
def label(self) -> _builtins.str:
|
|
96
95
|
"""
|
|
97
96
|
The friendly name of this Kernel.
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "label")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter
|
|
103
|
-
def pvops(self) ->
|
|
102
|
+
def pvops(self) -> _builtins.bool:
|
|
104
103
|
"""
|
|
105
104
|
If this Kernel is suitable for paravirtualized operations.
|
|
106
105
|
"""
|
|
107
106
|
return pulumi.get(self, "pvops")
|
|
108
107
|
|
|
109
|
-
@property
|
|
108
|
+
@_builtins.property
|
|
110
109
|
@pulumi.getter
|
|
111
|
-
def version(self) ->
|
|
110
|
+
def version(self) -> _builtins.str:
|
|
112
111
|
"""
|
|
113
112
|
Linux Kernel version
|
|
114
113
|
"""
|
|
115
114
|
return pulumi.get(self, "version")
|
|
116
115
|
|
|
117
|
-
@property
|
|
116
|
+
@_builtins.property
|
|
118
117
|
@pulumi.getter
|
|
119
|
-
def xen(self) ->
|
|
118
|
+
def xen(self) -> _builtins.bool:
|
|
120
119
|
"""
|
|
121
120
|
If this Kernel is suitable for Xen Linodes.
|
|
122
121
|
"""
|
|
@@ -140,7 +139,7 @@ class AwaitableGetKernelResult(GetKernelResult):
|
|
|
140
139
|
xen=self.xen)
|
|
141
140
|
|
|
142
141
|
|
|
143
|
-
def get_kernel(id: Optional[
|
|
142
|
+
def get_kernel(id: Optional[_builtins.str] = None,
|
|
144
143
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKernelResult:
|
|
145
144
|
"""
|
|
146
145
|
Provides information about a Linode kernel
|
|
@@ -158,7 +157,7 @@ def get_kernel(id: Optional[builtins.str] = None,
|
|
|
158
157
|
```
|
|
159
158
|
|
|
160
159
|
|
|
161
|
-
:param
|
|
160
|
+
:param _builtins.str id: The unique ID of this Kernel.
|
|
162
161
|
"""
|
|
163
162
|
__args__ = dict()
|
|
164
163
|
__args__['id'] = id
|
|
@@ -175,7 +174,7 @@ def get_kernel(id: Optional[builtins.str] = None,
|
|
|
175
174
|
pvops=pulumi.get(__ret__, 'pvops'),
|
|
176
175
|
version=pulumi.get(__ret__, 'version'),
|
|
177
176
|
xen=pulumi.get(__ret__, 'xen'))
|
|
178
|
-
def get_kernel_output(id: Optional[pulumi.Input[
|
|
177
|
+
def get_kernel_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
179
178
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetKernelResult]:
|
|
180
179
|
"""
|
|
181
180
|
Provides information about a Linode kernel
|
|
@@ -193,7 +192,7 @@ def get_kernel_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
193
192
|
```
|
|
194
193
|
|
|
195
194
|
|
|
196
|
-
:param
|
|
195
|
+
:param _builtins.str id: The unique ID of this Kernel.
|
|
197
196
|
"""
|
|
198
197
|
__args__ = dict()
|
|
199
198
|
__args__['id'] = id
|
pulumi_linode/get_kernels.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,32 +45,32 @@ class GetKernelsResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
47
46
|
pulumi.set(__self__, "order_by", order_by)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetKernelsFilterResult']]:
|
|
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 Kernel.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
63
|
def kernels(self) -> Optional[Sequence['outputs.GetKernelsKernelResult']]:
|
|
65
64
|
return pulumi.get(self, "kernels")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def order(self) -> Optional[
|
|
68
|
+
def order(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter(name="orderBy")
|
|
74
|
-
def order_by(self) -> Optional[
|
|
73
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
75
74
|
return pulumi.get(self, "order_by")
|
|
76
75
|
|
|
77
76
|
|
|
@@ -90,8 +89,8 @@ class AwaitableGetKernelsResult(GetKernelsResult):
|
|
|
90
89
|
|
|
91
90
|
def get_kernels(filters: Optional[Sequence[Union['GetKernelsFilterArgs', 'GetKernelsFilterArgsDict']]] = None,
|
|
92
91
|
kernels: Optional[Sequence[Union['GetKernelsKernelArgs', 'GetKernelsKernelArgsDict']]] = None,
|
|
93
|
-
order: Optional[
|
|
94
|
-
order_by: Optional[
|
|
92
|
+
order: Optional[_builtins.str] = None,
|
|
93
|
+
order_by: Optional[_builtins.str] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKernelsResult:
|
|
96
95
|
"""
|
|
97
96
|
Provides information about Linode Kernels that match a set of filters.
|
|
@@ -136,8 +135,8 @@ def get_kernels(filters: Optional[Sequence[Union['GetKernelsFilterArgs', 'GetKer
|
|
|
136
135
|
* `xen`
|
|
137
136
|
|
|
138
137
|
|
|
139
|
-
:param
|
|
140
|
-
:param
|
|
138
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
139
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
141
140
|
"""
|
|
142
141
|
__args__ = dict()
|
|
143
142
|
__args__['filters'] = filters
|
|
@@ -155,8 +154,8 @@ def get_kernels(filters: Optional[Sequence[Union['GetKernelsFilterArgs', 'GetKer
|
|
|
155
154
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
156
155
|
def get_kernels_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetKernelsFilterArgs', 'GetKernelsFilterArgsDict']]]]] = None,
|
|
157
156
|
kernels: Optional[pulumi.Input[Optional[Sequence[Union['GetKernelsKernelArgs', 'GetKernelsKernelArgsDict']]]]] = None,
|
|
158
|
-
order: Optional[pulumi.Input[Optional[
|
|
159
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
157
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
158
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
160
159
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetKernelsResult]:
|
|
161
160
|
"""
|
|
162
161
|
Provides information about Linode Kernels that match a set of filters.
|
|
@@ -201,8 +200,8 @@ def get_kernels_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['G
|
|
|
201
200
|
* `xen`
|
|
202
201
|
|
|
203
202
|
|
|
204
|
-
:param
|
|
205
|
-
:param
|
|
203
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
204
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
206
205
|
"""
|
|
207
206
|
__args__ = dict()
|
|
208
207
|
__args__['filters'] = filters
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -59,55 +58,55 @@ class GetLinodeObjectStorageBucketResult:
|
|
|
59
58
|
raise TypeError("Expected argument 'size' to be a int")
|
|
60
59
|
pulumi.set(__self__, "size", size)
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
63
|
@_utilities.deprecated("""The cluster attribute has been deprecated, please consider switching to the region attribute. For example, a cluster value of `us-mia-1` can be translated to a region value of `us-mia`.""")
|
|
65
|
-
def cluster(self) ->
|
|
64
|
+
def cluster(self) -> _builtins.str:
|
|
66
65
|
return pulumi.get(self, "cluster")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter
|
|
70
|
-
def created(self) ->
|
|
69
|
+
def created(self) -> _builtins.str:
|
|
71
70
|
return pulumi.get(self, "created")
|
|
72
71
|
|
|
73
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
74
73
|
@pulumi.getter(name="endpointType")
|
|
75
|
-
def endpoint_type(self) ->
|
|
74
|
+
def endpoint_type(self) -> _builtins.str:
|
|
76
75
|
return pulumi.get(self, "endpoint_type")
|
|
77
76
|
|
|
78
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
79
78
|
@pulumi.getter
|
|
80
|
-
def hostname(self) ->
|
|
79
|
+
def hostname(self) -> _builtins.str:
|
|
81
80
|
return pulumi.get(self, "hostname")
|
|
82
81
|
|
|
83
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
84
83
|
@pulumi.getter
|
|
85
|
-
def id(self) ->
|
|
84
|
+
def id(self) -> _builtins.str:
|
|
86
85
|
return pulumi.get(self, "id")
|
|
87
86
|
|
|
88
|
-
@property
|
|
87
|
+
@_builtins.property
|
|
89
88
|
@pulumi.getter
|
|
90
|
-
def label(self) ->
|
|
89
|
+
def label(self) -> _builtins.str:
|
|
91
90
|
return pulumi.get(self, "label")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def objects(self) ->
|
|
94
|
+
def objects(self) -> _builtins.int:
|
|
96
95
|
return pulumi.get(self, "objects")
|
|
97
96
|
|
|
98
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
99
98
|
@pulumi.getter
|
|
100
|
-
def region(self) ->
|
|
99
|
+
def region(self) -> _builtins.str:
|
|
101
100
|
return pulumi.get(self, "region")
|
|
102
101
|
|
|
103
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
104
103
|
@pulumi.getter(name="s3Endpoint")
|
|
105
|
-
def s3_endpoint(self) ->
|
|
104
|
+
def s3_endpoint(self) -> _builtins.str:
|
|
106
105
|
return pulumi.get(self, "s3_endpoint")
|
|
107
106
|
|
|
108
|
-
@property
|
|
107
|
+
@_builtins.property
|
|
109
108
|
@pulumi.getter
|
|
110
|
-
def size(self) ->
|
|
109
|
+
def size(self) -> _builtins.int:
|
|
111
110
|
return pulumi.get(self, "size")
|
|
112
111
|
|
|
113
112
|
|
|
@@ -129,9 +128,9 @@ class AwaitableGetLinodeObjectStorageBucketResult(GetLinodeObjectStorageBucketRe
|
|
|
129
128
|
size=self.size)
|
|
130
129
|
|
|
131
130
|
|
|
132
|
-
def get_linode_object_storage_bucket(cluster: Optional[
|
|
133
|
-
label: Optional[
|
|
134
|
-
region: Optional[
|
|
131
|
+
def get_linode_object_storage_bucket(cluster: Optional[_builtins.str] = None,
|
|
132
|
+
label: Optional[_builtins.str] = None,
|
|
133
|
+
region: Optional[_builtins.str] = None,
|
|
135
134
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLinodeObjectStorageBucketResult:
|
|
136
135
|
"""
|
|
137
136
|
Provides information about a Linode Object Storage Bucket
|
|
@@ -150,9 +149,9 @@ def get_linode_object_storage_bucket(cluster: Optional[builtins.str] = None,
|
|
|
150
149
|
```
|
|
151
150
|
|
|
152
151
|
|
|
153
|
-
:param
|
|
154
|
-
:param
|
|
155
|
-
:param
|
|
152
|
+
:param _builtins.str cluster: The ID of the Object Storage Cluster this bucket is in. Required if `region` is not configured.
|
|
153
|
+
:param _builtins.str label: The name of this bucket.
|
|
154
|
+
:param _builtins.str region: The ID of the region this bucket is in. Required if `cluster` is not configured.
|
|
156
155
|
"""
|
|
157
156
|
__args__ = dict()
|
|
158
157
|
__args__['cluster'] = cluster
|
|
@@ -172,9 +171,9 @@ def get_linode_object_storage_bucket(cluster: Optional[builtins.str] = None,
|
|
|
172
171
|
region=pulumi.get(__ret__, 'region'),
|
|
173
172
|
s3_endpoint=pulumi.get(__ret__, 's3_endpoint'),
|
|
174
173
|
size=pulumi.get(__ret__, 'size'))
|
|
175
|
-
def get_linode_object_storage_bucket_output(cluster: Optional[pulumi.Input[Optional[
|
|
176
|
-
label: Optional[pulumi.Input[
|
|
177
|
-
region: Optional[pulumi.Input[Optional[
|
|
174
|
+
def get_linode_object_storage_bucket_output(cluster: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
175
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
176
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
178
177
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLinodeObjectStorageBucketResult]:
|
|
179
178
|
"""
|
|
180
179
|
Provides information about a Linode Object Storage Bucket
|
|
@@ -193,9 +192,9 @@ def get_linode_object_storage_bucket_output(cluster: Optional[pulumi.Input[Optio
|
|
|
193
192
|
```
|
|
194
193
|
|
|
195
194
|
|
|
196
|
-
:param
|
|
197
|
-
:param
|
|
198
|
-
:param
|
|
195
|
+
:param _builtins.str cluster: The ID of the Object Storage Cluster this bucket is in. Required if `region` is not configured.
|
|
196
|
+
:param _builtins.str label: The name of this bucket.
|
|
197
|
+
:param _builtins.str region: The ID of the region this bucket is in. Required if `cluster` is not configured.
|
|
199
198
|
"""
|
|
200
199
|
__args__ = dict()
|
|
201
200
|
__args__['cluster'] = cluster
|
pulumi_linode/get_lke_cluster.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
|
|
@@ -76,23 +75,23 @@ class GetLkeClusterResult:
|
|
|
76
75
|
raise TypeError("Expected argument 'updated' to be a str")
|
|
77
76
|
pulumi.set(__self__, "updated", updated)
|
|
78
77
|
|
|
79
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
80
79
|
@pulumi.getter(name="apiEndpoints")
|
|
81
|
-
def api_endpoints(self) -> Sequence[
|
|
80
|
+
def api_endpoints(self) -> Sequence[_builtins.str]:
|
|
82
81
|
"""
|
|
83
82
|
The endpoints for the Kubernetes API server.
|
|
84
83
|
"""
|
|
85
84
|
return pulumi.get(self, "api_endpoints")
|
|
86
85
|
|
|
87
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
88
87
|
@pulumi.getter(name="aplEnabled")
|
|
89
|
-
def apl_enabled(self) ->
|
|
88
|
+
def apl_enabled(self) -> _builtins.bool:
|
|
90
89
|
"""
|
|
91
90
|
Enables the App Platform Layer
|
|
92
91
|
"""
|
|
93
92
|
return pulumi.get(self, "apl_enabled")
|
|
94
93
|
|
|
95
|
-
@property
|
|
94
|
+
@_builtins.property
|
|
96
95
|
@pulumi.getter(name="controlPlanes")
|
|
97
96
|
def control_planes(self) -> Optional[Sequence['outputs.GetLkeClusterControlPlaneResult']]:
|
|
98
97
|
"""
|
|
@@ -100,55 +99,55 @@ class GetLkeClusterResult:
|
|
|
100
99
|
"""
|
|
101
100
|
return pulumi.get(self, "control_planes")
|
|
102
101
|
|
|
103
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
104
103
|
@pulumi.getter
|
|
105
|
-
def created(self) ->
|
|
104
|
+
def created(self) -> _builtins.str:
|
|
106
105
|
"""
|
|
107
106
|
When this Kubernetes cluster was created.
|
|
108
107
|
"""
|
|
109
108
|
return pulumi.get(self, "created")
|
|
110
109
|
|
|
111
|
-
@property
|
|
110
|
+
@_builtins.property
|
|
112
111
|
@pulumi.getter(name="dashboardUrl")
|
|
113
|
-
def dashboard_url(self) ->
|
|
112
|
+
def dashboard_url(self) -> _builtins.str:
|
|
114
113
|
"""
|
|
115
114
|
The Kubernetes Dashboard access URL for this cluster. LKE Enterprise does not have a dashboard URL.
|
|
116
115
|
"""
|
|
117
116
|
return pulumi.get(self, "dashboard_url")
|
|
118
117
|
|
|
119
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
120
119
|
@pulumi.getter
|
|
121
|
-
def id(self) ->
|
|
120
|
+
def id(self) -> _builtins.int:
|
|
122
121
|
"""
|
|
123
122
|
The ID of the node.
|
|
124
123
|
"""
|
|
125
124
|
return pulumi.get(self, "id")
|
|
126
125
|
|
|
127
|
-
@property
|
|
126
|
+
@_builtins.property
|
|
128
127
|
@pulumi.getter(name="k8sVersion")
|
|
129
|
-
def k8s_version(self) ->
|
|
128
|
+
def k8s_version(self) -> _builtins.str:
|
|
130
129
|
"""
|
|
131
130
|
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
132
131
|
"""
|
|
133
132
|
return pulumi.get(self, "k8s_version")
|
|
134
133
|
|
|
135
|
-
@property
|
|
134
|
+
@_builtins.property
|
|
136
135
|
@pulumi.getter
|
|
137
|
-
def kubeconfig(self) ->
|
|
136
|
+
def kubeconfig(self) -> _builtins.str:
|
|
138
137
|
"""
|
|
139
138
|
The base64 encoded kubeconfig for the Kubernetes cluster.
|
|
140
139
|
"""
|
|
141
140
|
return pulumi.get(self, "kubeconfig")
|
|
142
141
|
|
|
143
|
-
@property
|
|
142
|
+
@_builtins.property
|
|
144
143
|
@pulumi.getter
|
|
145
|
-
def label(self) ->
|
|
144
|
+
def label(self) -> _builtins.str:
|
|
146
145
|
"""
|
|
147
146
|
The unique label for the cluster.
|
|
148
147
|
"""
|
|
149
148
|
return pulumi.get(self, "label")
|
|
150
149
|
|
|
151
|
-
@property
|
|
150
|
+
@_builtins.property
|
|
152
151
|
@pulumi.getter
|
|
153
152
|
def pools(self) -> Optional[Sequence['outputs.GetLkeClusterPoolResult']]:
|
|
154
153
|
"""
|
|
@@ -156,41 +155,41 @@ class GetLkeClusterResult:
|
|
|
156
155
|
"""
|
|
157
156
|
return pulumi.get(self, "pools")
|
|
158
157
|
|
|
159
|
-
@property
|
|
158
|
+
@_builtins.property
|
|
160
159
|
@pulumi.getter
|
|
161
|
-
def region(self) ->
|
|
160
|
+
def region(self) -> _builtins.str:
|
|
162
161
|
"""
|
|
163
162
|
This Kubernetes cluster's location.
|
|
164
163
|
"""
|
|
165
164
|
return pulumi.get(self, "region")
|
|
166
165
|
|
|
167
|
-
@property
|
|
166
|
+
@_builtins.property
|
|
168
167
|
@pulumi.getter
|
|
169
|
-
def status(self) ->
|
|
168
|
+
def status(self) -> _builtins.str:
|
|
170
169
|
"""
|
|
171
170
|
The status of the node. (`ready`, `not_ready`)
|
|
172
171
|
"""
|
|
173
172
|
return pulumi.get(self, "status")
|
|
174
173
|
|
|
175
|
-
@property
|
|
174
|
+
@_builtins.property
|
|
176
175
|
@pulumi.getter
|
|
177
|
-
def tags(self) -> Sequence[
|
|
176
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
178
177
|
"""
|
|
179
178
|
An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
180
179
|
"""
|
|
181
180
|
return pulumi.get(self, "tags")
|
|
182
181
|
|
|
183
|
-
@property
|
|
182
|
+
@_builtins.property
|
|
184
183
|
@pulumi.getter
|
|
185
|
-
def tier(self) ->
|
|
184
|
+
def tier(self) -> _builtins.str:
|
|
186
185
|
"""
|
|
187
186
|
The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
188
187
|
"""
|
|
189
188
|
return pulumi.get(self, "tier")
|
|
190
189
|
|
|
191
|
-
@property
|
|
190
|
+
@_builtins.property
|
|
192
191
|
@pulumi.getter
|
|
193
|
-
def updated(self) ->
|
|
192
|
+
def updated(self) -> _builtins.str:
|
|
194
193
|
"""
|
|
195
194
|
When this Kubernetes cluster was updated.
|
|
196
195
|
"""
|
|
@@ -221,7 +220,7 @@ class AwaitableGetLkeClusterResult(GetLkeClusterResult):
|
|
|
221
220
|
|
|
222
221
|
|
|
223
222
|
def get_lke_cluster(control_planes: Optional[Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']]] = None,
|
|
224
|
-
id: Optional[
|
|
223
|
+
id: Optional[_builtins.int] = None,
|
|
225
224
|
pools: Optional[Sequence[Union['GetLkeClusterPoolArgs', 'GetLkeClusterPoolArgsDict']]] = None,
|
|
226
225
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLkeClusterResult:
|
|
227
226
|
"""
|
|
@@ -239,7 +238,7 @@ def get_lke_cluster(control_planes: Optional[Sequence[Union['GetLkeClusterContro
|
|
|
239
238
|
|
|
240
239
|
|
|
241
240
|
:param Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']] control_planes: The settings for the Kubernetes Control Plane.
|
|
242
|
-
:param
|
|
241
|
+
:param _builtins.int id: The LKE Cluster's ID.
|
|
243
242
|
:param Sequence[Union['GetLkeClusterPoolArgs', 'GetLkeClusterPoolArgsDict']] pools: Node pools associated with this cluster.
|
|
244
243
|
"""
|
|
245
244
|
__args__ = dict()
|
|
@@ -266,7 +265,7 @@ def get_lke_cluster(control_planes: Optional[Sequence[Union['GetLkeClusterContro
|
|
|
266
265
|
tier=pulumi.get(__ret__, 'tier'),
|
|
267
266
|
updated=pulumi.get(__ret__, 'updated'))
|
|
268
267
|
def get_lke_cluster_output(control_planes: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']]]]] = None,
|
|
269
|
-
id: Optional[pulumi.Input[
|
|
268
|
+
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
270
269
|
pools: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClusterPoolArgs', 'GetLkeClusterPoolArgsDict']]]]] = None,
|
|
271
270
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLkeClusterResult]:
|
|
272
271
|
"""
|
|
@@ -284,7 +283,7 @@ def get_lke_cluster_output(control_planes: Optional[pulumi.Input[Optional[Sequen
|
|
|
284
283
|
|
|
285
284
|
|
|
286
285
|
:param Sequence[Union['GetLkeClusterControlPlaneArgs', 'GetLkeClusterControlPlaneArgsDict']] control_planes: The settings for the Kubernetes Control Plane.
|
|
287
|
-
:param
|
|
286
|
+
:param _builtins.int id: The LKE Cluster's ID.
|
|
288
287
|
:param Sequence[Union['GetLkeClusterPoolArgs', 'GetLkeClusterPoolArgsDict']] pools: Node pools associated with this cluster.
|
|
289
288
|
"""
|
|
290
289
|
__args__ = dict()
|
|
@@ -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,32 +45,32 @@ class GetLkeClustersResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
47
46
|
pulumi.set(__self__, "order_by", order_by)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetLkeClustersFilterResult']]:
|
|
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 LKE Cluster's ID.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter(name="lkeClusters")
|
|
64
63
|
def lke_clusters(self) -> Optional[Sequence['outputs.GetLkeClustersLkeClusterResult']]:
|
|
65
64
|
return pulumi.get(self, "lke_clusters")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def order(self) -> Optional[
|
|
68
|
+
def order(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter(name="orderBy")
|
|
74
|
-
def order_by(self) -> Optional[
|
|
73
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
75
74
|
return pulumi.get(self, "order_by")
|
|
76
75
|
|
|
77
76
|
|
|
@@ -90,8 +89,8 @@ class AwaitableGetLkeClustersResult(GetLkeClustersResult):
|
|
|
90
89
|
|
|
91
90
|
def get_lke_clusters(filters: Optional[Sequence[Union['GetLkeClustersFilterArgs', 'GetLkeClustersFilterArgsDict']]] = None,
|
|
92
91
|
lke_clusters: Optional[Sequence[Union['GetLkeClustersLkeClusterArgs', 'GetLkeClustersLkeClusterArgsDict']]] = None,
|
|
93
|
-
order: Optional[
|
|
94
|
-
order_by: Optional[
|
|
92
|
+
order: Optional[_builtins.str] = None,
|
|
93
|
+
order_by: Optional[_builtins.str] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLkeClustersResult:
|
|
96
95
|
"""
|
|
97
96
|
Provides information about a list of current Linode Kubernetes (LKE) clusters on your account that match a set of filters.
|
|
@@ -129,8 +128,8 @@ def get_lke_clusters(filters: Optional[Sequence[Union['GetLkeClustersFilterArgs'
|
|
|
129
128
|
* `updated`
|
|
130
129
|
|
|
131
130
|
|
|
132
|
-
:param
|
|
133
|
-
:param
|
|
131
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
132
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
134
133
|
"""
|
|
135
134
|
__args__ = dict()
|
|
136
135
|
__args__['filters'] = filters
|
|
@@ -148,8 +147,8 @@ def get_lke_clusters(filters: Optional[Sequence[Union['GetLkeClustersFilterArgs'
|
|
|
148
147
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
149
148
|
def get_lke_clusters_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClustersFilterArgs', 'GetLkeClustersFilterArgsDict']]]]] = None,
|
|
150
149
|
lke_clusters: Optional[pulumi.Input[Optional[Sequence[Union['GetLkeClustersLkeClusterArgs', 'GetLkeClustersLkeClusterArgsDict']]]]] = None,
|
|
151
|
-
order: Optional[pulumi.Input[Optional[
|
|
152
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
150
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
151
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
153
152
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLkeClustersResult]:
|
|
154
153
|
"""
|
|
155
154
|
Provides information about a list of current Linode Kubernetes (LKE) clusters on your account that match a set of filters.
|
|
@@ -187,8 +186,8 @@ def get_lke_clusters_output(filters: Optional[pulumi.Input[Optional[Sequence[Uni
|
|
|
187
186
|
* `updated`
|
|
188
187
|
|
|
189
188
|
|
|
190
|
-
:param
|
|
191
|
-
:param
|
|
189
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
190
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
192
191
|
"""
|
|
193
192
|
__args__ = dict()
|
|
194
193
|
__args__['filters'] = filters
|