pulumi-linode 5.1.0a1752772340__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 +5224 -5147
- 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 +34 -35
- 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 +5340 -5291
- 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.0a1752772340.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.0a1752772340.dist-info/RECORD +0 -126
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.1.1a1753933550.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
|
|
@@ -70,99 +69,99 @@ class GetNodeBalancerResult:
|
|
|
70
69
|
raise TypeError("Expected argument 'updated' to be a str")
|
|
71
70
|
pulumi.set(__self__, "updated", updated)
|
|
72
71
|
|
|
73
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
74
73
|
@pulumi.getter(name="clientConnThrottle")
|
|
75
|
-
def client_conn_throttle(self) ->
|
|
74
|
+
def client_conn_throttle(self) -> _builtins.int:
|
|
76
75
|
"""
|
|
77
76
|
Throttle connections per second (0-20).
|
|
78
77
|
"""
|
|
79
78
|
return pulumi.get(self, "client_conn_throttle")
|
|
80
79
|
|
|
81
|
-
@property
|
|
80
|
+
@_builtins.property
|
|
82
81
|
@pulumi.getter(name="clientUdpSessThrottle")
|
|
83
|
-
def client_udp_sess_throttle(self) ->
|
|
82
|
+
def client_udp_sess_throttle(self) -> _builtins.int:
|
|
84
83
|
"""
|
|
85
84
|
Throttle UDP sessions per second (0-20).
|
|
86
85
|
"""
|
|
87
86
|
return pulumi.get(self, "client_udp_sess_throttle")
|
|
88
87
|
|
|
89
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
90
89
|
@pulumi.getter
|
|
91
|
-
def created(self) ->
|
|
90
|
+
def created(self) -> _builtins.str:
|
|
92
91
|
"""
|
|
93
92
|
When this firewall was created.
|
|
94
93
|
"""
|
|
95
94
|
return pulumi.get(self, "created")
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter
|
|
99
98
|
def firewalls(self) -> Optional[Sequence['outputs.GetNodeBalancerFirewallResult']]:
|
|
100
99
|
return pulumi.get(self, "firewalls")
|
|
101
100
|
|
|
102
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
103
102
|
@pulumi.getter
|
|
104
|
-
def hostname(self) ->
|
|
103
|
+
def hostname(self) -> _builtins.str:
|
|
105
104
|
"""
|
|
106
105
|
This NodeBalancer's hostname, ending with .ip.linodeusercontent.com
|
|
107
106
|
"""
|
|
108
107
|
return pulumi.get(self, "hostname")
|
|
109
108
|
|
|
110
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
111
110
|
@pulumi.getter
|
|
112
|
-
def id(self) ->
|
|
111
|
+
def id(self) -> _builtins.int:
|
|
113
112
|
"""
|
|
114
113
|
The Firewall's ID.
|
|
115
114
|
"""
|
|
116
115
|
return pulumi.get(self, "id")
|
|
117
116
|
|
|
118
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
119
118
|
@pulumi.getter
|
|
120
|
-
def ipv4(self) ->
|
|
119
|
+
def ipv4(self) -> _builtins.str:
|
|
121
120
|
"""
|
|
122
121
|
A list of IPv4 addresses or networks. Must be in IP/mask format.
|
|
123
122
|
"""
|
|
124
123
|
return pulumi.get(self, "ipv4")
|
|
125
124
|
|
|
126
|
-
@property
|
|
125
|
+
@_builtins.property
|
|
127
126
|
@pulumi.getter
|
|
128
|
-
def ipv6(self) ->
|
|
127
|
+
def ipv6(self) -> _builtins.str:
|
|
129
128
|
"""
|
|
130
129
|
A list of IPv6 addresses or networks. Must be in IP/mask format.
|
|
131
130
|
"""
|
|
132
131
|
return pulumi.get(self, "ipv6")
|
|
133
132
|
|
|
134
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
135
134
|
@pulumi.getter
|
|
136
|
-
def label(self) ->
|
|
135
|
+
def label(self) -> _builtins.str:
|
|
137
136
|
"""
|
|
138
137
|
Used to identify this rule. For display purposes only.
|
|
139
138
|
"""
|
|
140
139
|
return pulumi.get(self, "label")
|
|
141
140
|
|
|
142
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
143
142
|
@pulumi.getter
|
|
144
|
-
def region(self) ->
|
|
143
|
+
def region(self) -> _builtins.str:
|
|
145
144
|
"""
|
|
146
145
|
The Region where this Linode NodeBalancer is located. NodeBalancers only support backends in the same Region.
|
|
147
146
|
"""
|
|
148
147
|
return pulumi.get(self, "region")
|
|
149
148
|
|
|
150
|
-
@property
|
|
149
|
+
@_builtins.property
|
|
151
150
|
@pulumi.getter
|
|
152
|
-
def tags(self) -> Sequence[
|
|
151
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
153
152
|
"""
|
|
154
153
|
The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
|
|
155
154
|
"""
|
|
156
155
|
return pulumi.get(self, "tags")
|
|
157
156
|
|
|
158
|
-
@property
|
|
157
|
+
@_builtins.property
|
|
159
158
|
@pulumi.getter
|
|
160
159
|
def transfers(self) -> Sequence['outputs.GetNodeBalancerTransferResult']:
|
|
161
160
|
return pulumi.get(self, "transfers")
|
|
162
161
|
|
|
163
|
-
@property
|
|
162
|
+
@_builtins.property
|
|
164
163
|
@pulumi.getter
|
|
165
|
-
def updated(self) ->
|
|
164
|
+
def updated(self) -> _builtins.str:
|
|
166
165
|
"""
|
|
167
166
|
When this firewall was last updated.
|
|
168
167
|
"""
|
|
@@ -191,7 +190,7 @@ class AwaitableGetNodeBalancerResult(GetNodeBalancerResult):
|
|
|
191
190
|
|
|
192
191
|
|
|
193
192
|
def get_node_balancer(firewalls: Optional[Sequence[Union['GetNodeBalancerFirewallArgs', 'GetNodeBalancerFirewallArgsDict']]] = None,
|
|
194
|
-
id: Optional[
|
|
193
|
+
id: Optional[_builtins.int] = None,
|
|
195
194
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNodeBalancerResult:
|
|
196
195
|
"""
|
|
197
196
|
Provides details about a Linode NodeBalancer.
|
|
@@ -207,7 +206,7 @@ def get_node_balancer(firewalls: Optional[Sequence[Union['GetNodeBalancerFirewal
|
|
|
207
206
|
```
|
|
208
207
|
|
|
209
208
|
|
|
210
|
-
:param
|
|
209
|
+
:param _builtins.int id: The NodeBalancer's ID.
|
|
211
210
|
"""
|
|
212
211
|
__args__ = dict()
|
|
213
212
|
__args__['firewalls'] = firewalls
|
|
@@ -230,7 +229,7 @@ def get_node_balancer(firewalls: Optional[Sequence[Union['GetNodeBalancerFirewal
|
|
|
230
229
|
transfers=pulumi.get(__ret__, 'transfers'),
|
|
231
230
|
updated=pulumi.get(__ret__, 'updated'))
|
|
232
231
|
def get_node_balancer_output(firewalls: Optional[pulumi.Input[Optional[Sequence[Union['GetNodeBalancerFirewallArgs', 'GetNodeBalancerFirewallArgsDict']]]]] = None,
|
|
233
|
-
id: Optional[pulumi.Input[
|
|
232
|
+
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
234
233
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNodeBalancerResult]:
|
|
235
234
|
"""
|
|
236
235
|
Provides details about a Linode NodeBalancer.
|
|
@@ -246,7 +245,7 @@ def get_node_balancer_output(firewalls: Optional[pulumi.Input[Optional[Sequence[
|
|
|
246
245
|
```
|
|
247
246
|
|
|
248
247
|
|
|
249
|
-
:param
|
|
248
|
+
:param _builtins.int id: The NodeBalancer's ID.
|
|
250
249
|
"""
|
|
251
250
|
__args__ = dict()
|
|
252
251
|
__args__['firewalls'] = firewalls
|
|
@@ -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
|
|
@@ -90,149 +89,149 @@ class GetNodeBalancerConfigResult:
|
|
|
90
89
|
raise TypeError("Expected argument 'udp_session_timeout' to be a int")
|
|
91
90
|
pulumi.set(__self__, "udp_session_timeout", udp_session_timeout)
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def algorithm(self) ->
|
|
94
|
+
def algorithm(self) -> _builtins.str:
|
|
96
95
|
"""
|
|
97
96
|
What algorithm this NodeBalancer should use for routing traffic to backends (`roundrobin`, `leastconn`, `source`)
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "algorithm")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter
|
|
103
|
-
def check(self) ->
|
|
102
|
+
def check(self) -> _builtins.str:
|
|
104
103
|
"""
|
|
105
104
|
The type of check to perform against backends to ensure they are serving requests. This is used to determine if backends are up or down. If none no check is performed. connection requires only a connection to the backend to succeed. http and http_body rely on the backend serving HTTP, and that the response returned matches what is expected. (`none`, `connection`, `http`, `http_body`)
|
|
106
105
|
"""
|
|
107
106
|
return pulumi.get(self, "check")
|
|
108
107
|
|
|
109
|
-
@property
|
|
108
|
+
@_builtins.property
|
|
110
109
|
@pulumi.getter(name="checkAttempts")
|
|
111
|
-
def check_attempts(self) ->
|
|
110
|
+
def check_attempts(self) -> _builtins.int:
|
|
112
111
|
"""
|
|
113
112
|
How many times to attempt a check before considering a backend to be down. (1-30)
|
|
114
113
|
"""
|
|
115
114
|
return pulumi.get(self, "check_attempts")
|
|
116
115
|
|
|
117
|
-
@property
|
|
116
|
+
@_builtins.property
|
|
118
117
|
@pulumi.getter(name="checkBody")
|
|
119
|
-
def check_body(self) ->
|
|
118
|
+
def check_body(self) -> _builtins.str:
|
|
120
119
|
return pulumi.get(self, "check_body")
|
|
121
120
|
|
|
122
|
-
@property
|
|
121
|
+
@_builtins.property
|
|
123
122
|
@pulumi.getter(name="checkInterval")
|
|
124
|
-
def check_interval(self) ->
|
|
123
|
+
def check_interval(self) -> _builtins.int:
|
|
125
124
|
"""
|
|
126
125
|
How often, in seconds, to check that backends are up and serving requests.
|
|
127
126
|
"""
|
|
128
127
|
return pulumi.get(self, "check_interval")
|
|
129
128
|
|
|
130
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
131
130
|
@pulumi.getter(name="checkPassive")
|
|
132
|
-
def check_passive(self) ->
|
|
131
|
+
def check_passive(self) -> _builtins.bool:
|
|
133
132
|
"""
|
|
134
133
|
If true, any response from this backend with a 5xx status code will be enough for it to be considered unhealthy and taken out of rotation.
|
|
135
134
|
"""
|
|
136
135
|
return pulumi.get(self, "check_passive")
|
|
137
136
|
|
|
138
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
139
138
|
@pulumi.getter(name="checkPath")
|
|
140
|
-
def check_path(self) ->
|
|
139
|
+
def check_path(self) -> _builtins.str:
|
|
141
140
|
"""
|
|
142
141
|
The URL path to check on each backend. If the backend does not respond to this request it is considered to be down.
|
|
143
142
|
"""
|
|
144
143
|
return pulumi.get(self, "check_path")
|
|
145
144
|
|
|
146
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
147
146
|
@pulumi.getter(name="checkTimeout")
|
|
148
|
-
def check_timeout(self) ->
|
|
147
|
+
def check_timeout(self) -> _builtins.int:
|
|
149
148
|
"""
|
|
150
149
|
How long, in seconds, to wait for a check attempt before considering it failed. (1-30)
|
|
151
150
|
"""
|
|
152
151
|
return pulumi.get(self, "check_timeout")
|
|
153
152
|
|
|
154
|
-
@property
|
|
153
|
+
@_builtins.property
|
|
155
154
|
@pulumi.getter(name="cipherSuite")
|
|
156
|
-
def cipher_suite(self) ->
|
|
155
|
+
def cipher_suite(self) -> _builtins.str:
|
|
157
156
|
"""
|
|
158
157
|
What ciphers to use for SSL connections served by this NodeBalancer. `legacy` is considered insecure and should only be used if necessary. (`recommended`, `legacy`)
|
|
159
158
|
"""
|
|
160
159
|
return pulumi.get(self, "cipher_suite")
|
|
161
160
|
|
|
162
|
-
@property
|
|
161
|
+
@_builtins.property
|
|
163
162
|
@pulumi.getter
|
|
164
|
-
def id(self) ->
|
|
163
|
+
def id(self) -> _builtins.int:
|
|
165
164
|
return pulumi.get(self, "id")
|
|
166
165
|
|
|
167
|
-
@property
|
|
166
|
+
@_builtins.property
|
|
168
167
|
@pulumi.getter(name="nodeStatuses")
|
|
169
168
|
def node_statuses(self) -> Sequence['outputs.GetNodeBalancerConfigNodeStatusResult']:
|
|
170
169
|
return pulumi.get(self, "node_statuses")
|
|
171
170
|
|
|
172
|
-
@property
|
|
171
|
+
@_builtins.property
|
|
173
172
|
@pulumi.getter(name="nodebalancerId")
|
|
174
|
-
def nodebalancer_id(self) ->
|
|
173
|
+
def nodebalancer_id(self) -> _builtins.int:
|
|
175
174
|
return pulumi.get(self, "nodebalancer_id")
|
|
176
175
|
|
|
177
|
-
@property
|
|
176
|
+
@_builtins.property
|
|
178
177
|
@pulumi.getter
|
|
179
|
-
def port(self) ->
|
|
178
|
+
def port(self) -> _builtins.int:
|
|
180
179
|
"""
|
|
181
180
|
The TCP port this Config is for.
|
|
182
181
|
"""
|
|
183
182
|
return pulumi.get(self, "port")
|
|
184
183
|
|
|
185
|
-
@property
|
|
184
|
+
@_builtins.property
|
|
186
185
|
@pulumi.getter
|
|
187
|
-
def protocol(self) ->
|
|
186
|
+
def protocol(self) -> _builtins.str:
|
|
188
187
|
"""
|
|
189
188
|
The protocol this port is configured to serve. If this is set to https you must include an ssl_cert and an ssl_key. (`http`, `https`, `tcp`) (Defaults to `http`)
|
|
190
189
|
"""
|
|
191
190
|
return pulumi.get(self, "protocol")
|
|
192
191
|
|
|
193
|
-
@property
|
|
192
|
+
@_builtins.property
|
|
194
193
|
@pulumi.getter(name="proxyProtocol")
|
|
195
|
-
def proxy_protocol(self) ->
|
|
194
|
+
def proxy_protocol(self) -> _builtins.str:
|
|
196
195
|
"""
|
|
197
196
|
The version of ProxyProtocol to use for the underlying NodeBalancer. This requires protocol to be `tcp`. (`none`, `v1`, and `v2`) (Defaults to `none`)
|
|
198
197
|
"""
|
|
199
198
|
return pulumi.get(self, "proxy_protocol")
|
|
200
199
|
|
|
201
|
-
@property
|
|
200
|
+
@_builtins.property
|
|
202
201
|
@pulumi.getter(name="sslCommonname")
|
|
203
|
-
def ssl_commonname(self) ->
|
|
202
|
+
def ssl_commonname(self) -> _builtins.str:
|
|
204
203
|
"""
|
|
205
204
|
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.
|
|
206
205
|
"""
|
|
207
206
|
return pulumi.get(self, "ssl_commonname")
|
|
208
207
|
|
|
209
|
-
@property
|
|
208
|
+
@_builtins.property
|
|
210
209
|
@pulumi.getter(name="sslFingerprint")
|
|
211
|
-
def ssl_fingerprint(self) ->
|
|
210
|
+
def ssl_fingerprint(self) -> _builtins.str:
|
|
212
211
|
"""
|
|
213
212
|
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.
|
|
214
213
|
"""
|
|
215
214
|
return pulumi.get(self, "ssl_fingerprint")
|
|
216
215
|
|
|
217
|
-
@property
|
|
216
|
+
@_builtins.property
|
|
218
217
|
@pulumi.getter
|
|
219
|
-
def stickiness(self) ->
|
|
218
|
+
def stickiness(self) -> _builtins.str:
|
|
220
219
|
"""
|
|
221
220
|
Controls how session stickiness is handled on this port. (`none`, `table`, `http_cookie`)
|
|
222
221
|
"""
|
|
223
222
|
return pulumi.get(self, "stickiness")
|
|
224
223
|
|
|
225
|
-
@property
|
|
224
|
+
@_builtins.property
|
|
226
225
|
@pulumi.getter(name="udpCheckPort")
|
|
227
|
-
def udp_check_port(self) ->
|
|
226
|
+
def udp_check_port(self) -> _builtins.int:
|
|
228
227
|
"""
|
|
229
228
|
Specifies the port on the backend node used for active health checks, which may differ from the port serving traffic.
|
|
230
229
|
"""
|
|
231
230
|
return pulumi.get(self, "udp_check_port")
|
|
232
231
|
|
|
233
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
234
233
|
@pulumi.getter(name="udpSessionTimeout")
|
|
235
|
-
def udp_session_timeout(self) ->
|
|
234
|
+
def udp_session_timeout(self) -> _builtins.int:
|
|
236
235
|
"""
|
|
237
236
|
The idle time in seconds after which a session that hasn’t received packets is destroyed.
|
|
238
237
|
"""
|
|
@@ -267,8 +266,8 @@ class AwaitableGetNodeBalancerConfigResult(GetNodeBalancerConfigResult):
|
|
|
267
266
|
udp_session_timeout=self.udp_session_timeout)
|
|
268
267
|
|
|
269
268
|
|
|
270
|
-
def get_node_balancer_config(id: Optional[
|
|
271
|
-
nodebalancer_id: Optional[
|
|
269
|
+
def get_node_balancer_config(id: Optional[_builtins.int] = None,
|
|
270
|
+
nodebalancer_id: Optional[_builtins.int] = None,
|
|
272
271
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNodeBalancerConfigResult:
|
|
273
272
|
"""
|
|
274
273
|
Provides details about a Linode NodeBalancer Config.
|
|
@@ -285,8 +284,8 @@ def get_node_balancer_config(id: Optional[builtins.int] = None,
|
|
|
285
284
|
```
|
|
286
285
|
|
|
287
286
|
|
|
288
|
-
:param
|
|
289
|
-
:param
|
|
287
|
+
:param _builtins.int id: The config's ID.
|
|
288
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer that contains the config.
|
|
290
289
|
"""
|
|
291
290
|
__args__ = dict()
|
|
292
291
|
__args__['id'] = id
|
|
@@ -315,8 +314,8 @@ def get_node_balancer_config(id: Optional[builtins.int] = None,
|
|
|
315
314
|
stickiness=pulumi.get(__ret__, 'stickiness'),
|
|
316
315
|
udp_check_port=pulumi.get(__ret__, 'udp_check_port'),
|
|
317
316
|
udp_session_timeout=pulumi.get(__ret__, 'udp_session_timeout'))
|
|
318
|
-
def get_node_balancer_config_output(id: Optional[pulumi.Input[
|
|
319
|
-
nodebalancer_id: Optional[pulumi.Input[
|
|
317
|
+
def get_node_balancer_config_output(id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
318
|
+
nodebalancer_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
320
319
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNodeBalancerConfigResult]:
|
|
321
320
|
"""
|
|
322
321
|
Provides details about a Linode NodeBalancer Config.
|
|
@@ -333,8 +332,8 @@ def get_node_balancer_config_output(id: Optional[pulumi.Input[builtins.int]] = N
|
|
|
333
332
|
```
|
|
334
333
|
|
|
335
334
|
|
|
336
|
-
:param
|
|
337
|
-
:param
|
|
335
|
+
:param _builtins.int id: The config's ID.
|
|
336
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer that contains the config.
|
|
338
337
|
"""
|
|
339
338
|
__args__ = dict()
|
|
340
339
|
__args__['id'] = id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -53,56 +52,56 @@ class GetNodeBalancerNodeResult:
|
|
|
53
52
|
raise TypeError("Expected argument 'weight' to be a int")
|
|
54
53
|
pulumi.set(__self__, "weight", weight)
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter
|
|
58
|
-
def address(self) ->
|
|
57
|
+
def address(self) -> _builtins.str:
|
|
59
58
|
"""
|
|
60
59
|
The private IP Address where this backend can be reached.
|
|
61
60
|
"""
|
|
62
61
|
return pulumi.get(self, "address")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter(name="configId")
|
|
66
|
-
def config_id(self) ->
|
|
65
|
+
def config_id(self) -> _builtins.int:
|
|
67
66
|
return pulumi.get(self, "config_id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def id(self) ->
|
|
70
|
+
def id(self) -> _builtins.int:
|
|
72
71
|
return pulumi.get(self, "id")
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def label(self) ->
|
|
75
|
+
def label(self) -> _builtins.str:
|
|
77
76
|
"""
|
|
78
77
|
The label of the Linode NodeBalancer Node. This is for display purposes only.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "label")
|
|
81
80
|
|
|
82
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
83
82
|
@pulumi.getter
|
|
84
|
-
def mode(self) ->
|
|
83
|
+
def mode(self) -> _builtins.str:
|
|
85
84
|
"""
|
|
86
85
|
The mode this NodeBalancer should use when sending traffic to this backend. If set to `accept` this backend is accepting traffic. If set to `reject` this backend will not receive traffic. If set to `drain` this backend will not receive new traffic, but connections already pinned to it will continue to be routed to it. (`accept`, `reject`, `drain`, `backup`)
|
|
87
86
|
"""
|
|
88
87
|
return pulumi.get(self, "mode")
|
|
89
88
|
|
|
90
|
-
@property
|
|
89
|
+
@_builtins.property
|
|
91
90
|
@pulumi.getter(name="nodebalancerId")
|
|
92
|
-
def nodebalancer_id(self) ->
|
|
91
|
+
def nodebalancer_id(self) -> _builtins.int:
|
|
93
92
|
return pulumi.get(self, "nodebalancer_id")
|
|
94
93
|
|
|
95
|
-
@property
|
|
94
|
+
@_builtins.property
|
|
96
95
|
@pulumi.getter
|
|
97
|
-
def status(self) ->
|
|
96
|
+
def status(self) -> _builtins.str:
|
|
98
97
|
"""
|
|
99
98
|
The current status of this node, based on the configured checks of its NodeBalancer Config. (`unknown`, `UP`, `DOWN`).
|
|
100
99
|
"""
|
|
101
100
|
return pulumi.get(self, "status")
|
|
102
101
|
|
|
103
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
104
103
|
@pulumi.getter
|
|
105
|
-
def weight(self) ->
|
|
104
|
+
def weight(self) -> _builtins.int:
|
|
106
105
|
"""
|
|
107
106
|
Used when picking a backend to serve a request and is not pinned to a single backend yet. Nodes with a higher weight will receive more traffic. (1-255).
|
|
108
107
|
"""
|
|
@@ -125,9 +124,9 @@ class AwaitableGetNodeBalancerNodeResult(GetNodeBalancerNodeResult):
|
|
|
125
124
|
weight=self.weight)
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
def get_node_balancer_node(config_id: Optional[
|
|
129
|
-
id: Optional[
|
|
130
|
-
nodebalancer_id: Optional[
|
|
127
|
+
def get_node_balancer_node(config_id: Optional[_builtins.int] = None,
|
|
128
|
+
id: Optional[_builtins.int] = None,
|
|
129
|
+
nodebalancer_id: Optional[_builtins.int] = None,
|
|
131
130
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNodeBalancerNodeResult:
|
|
132
131
|
"""
|
|
133
132
|
Provides details about a Linode NodeBalancer node.
|
|
@@ -145,9 +144,9 @@ def get_node_balancer_node(config_id: Optional[builtins.int] = None,
|
|
|
145
144
|
```
|
|
146
145
|
|
|
147
146
|
|
|
148
|
-
:param
|
|
149
|
-
:param
|
|
150
|
-
:param
|
|
147
|
+
:param _builtins.int config_id: The ID of the config that contains the Node.
|
|
148
|
+
:param _builtins.int id: The node's ID.
|
|
149
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer that contains the node.
|
|
151
150
|
"""
|
|
152
151
|
__args__ = dict()
|
|
153
152
|
__args__['configId'] = config_id
|
|
@@ -165,9 +164,9 @@ def get_node_balancer_node(config_id: Optional[builtins.int] = None,
|
|
|
165
164
|
nodebalancer_id=pulumi.get(__ret__, 'nodebalancer_id'),
|
|
166
165
|
status=pulumi.get(__ret__, 'status'),
|
|
167
166
|
weight=pulumi.get(__ret__, 'weight'))
|
|
168
|
-
def get_node_balancer_node_output(config_id: Optional[pulumi.Input[
|
|
169
|
-
id: Optional[pulumi.Input[
|
|
170
|
-
nodebalancer_id: Optional[pulumi.Input[
|
|
167
|
+
def get_node_balancer_node_output(config_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
168
|
+
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
169
|
+
nodebalancer_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
171
170
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNodeBalancerNodeResult]:
|
|
172
171
|
"""
|
|
173
172
|
Provides details about a Linode NodeBalancer node.
|
|
@@ -185,9 +184,9 @@ def get_node_balancer_node_output(config_id: Optional[pulumi.Input[builtins.int]
|
|
|
185
184
|
```
|
|
186
185
|
|
|
187
186
|
|
|
188
|
-
:param
|
|
189
|
-
:param
|
|
190
|
-
:param
|
|
187
|
+
:param _builtins.int config_id: The ID of the config that contains the Node.
|
|
188
|
+
:param _builtins.int id: The node's ID.
|
|
189
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer that contains the node.
|
|
191
190
|
"""
|
|
192
191
|
__args__ = dict()
|
|
193
192
|
__args__['configId'] = config_id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -49,40 +48,40 @@ class GetNodebalancerConfigsResult:
|
|
|
49
48
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
50
49
|
pulumi.set(__self__, "order_by", order_by)
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
53
|
def filters(self) -> Optional[Sequence['outputs.GetNodebalancerConfigsFilterResult']]:
|
|
55
54
|
return pulumi.get(self, "filters")
|
|
56
55
|
|
|
57
|
-
@property
|
|
56
|
+
@_builtins.property
|
|
58
57
|
@pulumi.getter
|
|
59
|
-
def id(self) ->
|
|
58
|
+
def id(self) -> _builtins.str:
|
|
60
59
|
"""
|
|
61
60
|
The config's ID.
|
|
62
61
|
"""
|
|
63
62
|
return pulumi.get(self, "id")
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter(name="nodebalancerConfigs")
|
|
67
66
|
def nodebalancer_configs(self) -> Optional[Sequence['outputs.GetNodebalancerConfigsNodebalancerConfigResult']]:
|
|
68
67
|
return pulumi.get(self, "nodebalancer_configs")
|
|
69
68
|
|
|
70
|
-
@property
|
|
69
|
+
@_builtins.property
|
|
71
70
|
@pulumi.getter(name="nodebalancerId")
|
|
72
|
-
def nodebalancer_id(self) ->
|
|
71
|
+
def nodebalancer_id(self) -> _builtins.int:
|
|
73
72
|
"""
|
|
74
73
|
The ID of the NodeBalancer that contains the config.
|
|
75
74
|
"""
|
|
76
75
|
return pulumi.get(self, "nodebalancer_id")
|
|
77
76
|
|
|
78
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
79
78
|
@pulumi.getter
|
|
80
|
-
def order(self) -> Optional[
|
|
79
|
+
def order(self) -> Optional[_builtins.str]:
|
|
81
80
|
return pulumi.get(self, "order")
|
|
82
81
|
|
|
83
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
84
83
|
@pulumi.getter(name="orderBy")
|
|
85
|
-
def order_by(self) -> Optional[
|
|
84
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
86
85
|
return pulumi.get(self, "order_by")
|
|
87
86
|
|
|
88
87
|
|
|
@@ -102,9 +101,9 @@ class AwaitableGetNodebalancerConfigsResult(GetNodebalancerConfigsResult):
|
|
|
102
101
|
|
|
103
102
|
def get_nodebalancer_configs(filters: Optional[Sequence[Union['GetNodebalancerConfigsFilterArgs', 'GetNodebalancerConfigsFilterArgsDict']]] = None,
|
|
104
103
|
nodebalancer_configs: Optional[Sequence[Union['GetNodebalancerConfigsNodebalancerConfigArgs', 'GetNodebalancerConfigsNodebalancerConfigArgsDict']]] = None,
|
|
105
|
-
nodebalancer_id: Optional[
|
|
106
|
-
order: Optional[
|
|
107
|
-
order_by: Optional[
|
|
104
|
+
nodebalancer_id: Optional[_builtins.int] = None,
|
|
105
|
+
order: Optional[_builtins.str] = None,
|
|
106
|
+
order_by: Optional[_builtins.str] = None,
|
|
108
107
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNodebalancerConfigsResult:
|
|
109
108
|
"""
|
|
110
109
|
Provides information about Linode NodeBalancer Configs that match a set of filters.
|
|
@@ -153,11 +152,11 @@ def get_nodebalancer_configs(filters: Optional[Sequence[Union['GetNodebalancerCo
|
|
|
153
152
|
* `ssl_commonname`
|
|
154
153
|
|
|
155
154
|
|
|
156
|
-
:param
|
|
155
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer to access.
|
|
157
156
|
|
|
158
157
|
* `filter` - (Optional) A set of filters used to select Linode NodeBalancers that meet certain requirements.
|
|
159
|
-
:param
|
|
160
|
-
:param
|
|
158
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
159
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
161
160
|
"""
|
|
162
161
|
__args__ = dict()
|
|
163
162
|
__args__['filters'] = filters
|
|
@@ -177,9 +176,9 @@ def get_nodebalancer_configs(filters: Optional[Sequence[Union['GetNodebalancerCo
|
|
|
177
176
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
178
177
|
def get_nodebalancer_configs_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetNodebalancerConfigsFilterArgs', 'GetNodebalancerConfigsFilterArgsDict']]]]] = None,
|
|
179
178
|
nodebalancer_configs: Optional[pulumi.Input[Optional[Sequence[Union['GetNodebalancerConfigsNodebalancerConfigArgs', 'GetNodebalancerConfigsNodebalancerConfigArgsDict']]]]] = None,
|
|
180
|
-
nodebalancer_id: Optional[pulumi.Input[
|
|
181
|
-
order: Optional[pulumi.Input[Optional[
|
|
182
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
179
|
+
nodebalancer_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
180
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
181
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
183
182
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNodebalancerConfigsResult]:
|
|
184
183
|
"""
|
|
185
184
|
Provides information about Linode NodeBalancer Configs that match a set of filters.
|
|
@@ -228,11 +227,11 @@ def get_nodebalancer_configs_output(filters: Optional[pulumi.Input[Optional[Sequ
|
|
|
228
227
|
* `ssl_commonname`
|
|
229
228
|
|
|
230
229
|
|
|
231
|
-
:param
|
|
230
|
+
:param _builtins.int nodebalancer_id: The ID of the NodeBalancer to access.
|
|
232
231
|
|
|
233
232
|
* `filter` - (Optional) A set of filters used to select Linode NodeBalancers that meet certain requirements.
|
|
234
|
-
:param
|
|
235
|
-
:param
|
|
233
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
234
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
236
235
|
"""
|
|
237
236
|
__args__ = dict()
|
|
238
237
|
__args__['filters'] = filters
|