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
|
|
@@ -198,434 +197,434 @@ class GetDatabaseMysqlV2Result:
|
|
|
198
197
|
raise TypeError("Expected argument 'version' to be a str")
|
|
199
198
|
pulumi.set(__self__, "version", version)
|
|
200
199
|
|
|
201
|
-
@property
|
|
200
|
+
@_builtins.property
|
|
202
201
|
@pulumi.getter(name="allowLists")
|
|
203
|
-
def allow_lists(self) -> Sequence[
|
|
202
|
+
def allow_lists(self) -> Sequence[_builtins.str]:
|
|
204
203
|
"""
|
|
205
204
|
A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
206
205
|
"""
|
|
207
206
|
return pulumi.get(self, "allow_lists")
|
|
208
207
|
|
|
209
|
-
@property
|
|
208
|
+
@_builtins.property
|
|
210
209
|
@pulumi.getter(name="caCert")
|
|
211
|
-
def ca_cert(self) ->
|
|
210
|
+
def ca_cert(self) -> _builtins.str:
|
|
212
211
|
"""
|
|
213
212
|
The base64-encoded SSL CA certificate for the Managed Database.
|
|
214
213
|
"""
|
|
215
214
|
return pulumi.get(self, "ca_cert")
|
|
216
215
|
|
|
217
|
-
@property
|
|
216
|
+
@_builtins.property
|
|
218
217
|
@pulumi.getter(name="clusterSize")
|
|
219
|
-
def cluster_size(self) ->
|
|
218
|
+
def cluster_size(self) -> _builtins.int:
|
|
220
219
|
"""
|
|
221
220
|
The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
222
221
|
"""
|
|
223
222
|
return pulumi.get(self, "cluster_size")
|
|
224
223
|
|
|
225
|
-
@property
|
|
224
|
+
@_builtins.property
|
|
226
225
|
@pulumi.getter
|
|
227
|
-
def created(self) ->
|
|
226
|
+
def created(self) -> _builtins.str:
|
|
228
227
|
"""
|
|
229
228
|
When this Managed Database was created.
|
|
230
229
|
"""
|
|
231
230
|
return pulumi.get(self, "created")
|
|
232
231
|
|
|
233
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
234
233
|
@pulumi.getter
|
|
235
|
-
def encrypted(self) ->
|
|
234
|
+
def encrypted(self) -> _builtins.bool:
|
|
236
235
|
"""
|
|
237
236
|
Whether the Managed Databases is encrypted.
|
|
238
237
|
"""
|
|
239
238
|
return pulumi.get(self, "encrypted")
|
|
240
239
|
|
|
241
|
-
@property
|
|
240
|
+
@_builtins.property
|
|
242
241
|
@pulumi.getter
|
|
243
|
-
def engine(self) ->
|
|
242
|
+
def engine(self) -> _builtins.str:
|
|
244
243
|
"""
|
|
245
244
|
The Managed Database engine. (e.g. `mysql`)
|
|
246
245
|
"""
|
|
247
246
|
return pulumi.get(self, "engine")
|
|
248
247
|
|
|
249
|
-
@property
|
|
248
|
+
@_builtins.property
|
|
250
249
|
@pulumi.getter(name="engineConfigBinlogRetentionPeriod")
|
|
251
|
-
def engine_config_binlog_retention_period(self) ->
|
|
250
|
+
def engine_config_binlog_retention_period(self) -> _builtins.int:
|
|
252
251
|
"""
|
|
253
252
|
The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default, for example if using the MySQL Debezium Kafka connector.
|
|
254
253
|
"""
|
|
255
254
|
return pulumi.get(self, "engine_config_binlog_retention_period")
|
|
256
255
|
|
|
257
|
-
@property
|
|
256
|
+
@_builtins.property
|
|
258
257
|
@pulumi.getter(name="engineConfigMysqlConnectTimeout")
|
|
259
|
-
def engine_config_mysql_connect_timeout(self) ->
|
|
258
|
+
def engine_config_mysql_connect_timeout(self) -> _builtins.int:
|
|
260
259
|
"""
|
|
261
260
|
The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
262
261
|
"""
|
|
263
262
|
return pulumi.get(self, "engine_config_mysql_connect_timeout")
|
|
264
263
|
|
|
265
|
-
@property
|
|
264
|
+
@_builtins.property
|
|
266
265
|
@pulumi.getter(name="engineConfigMysqlDefaultTimeZone")
|
|
267
|
-
def engine_config_mysql_default_time_zone(self) ->
|
|
266
|
+
def engine_config_mysql_default_time_zone(self) -> _builtins.str:
|
|
268
267
|
"""
|
|
269
268
|
Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or `SYSTEM` to use the MySQL server default.
|
|
270
269
|
"""
|
|
271
270
|
return pulumi.get(self, "engine_config_mysql_default_time_zone")
|
|
272
271
|
|
|
273
|
-
@property
|
|
272
|
+
@_builtins.property
|
|
274
273
|
@pulumi.getter(name="engineConfigMysqlGroupConcatMaxLen")
|
|
275
|
-
def engine_config_mysql_group_concat_max_len(self) ->
|
|
274
|
+
def engine_config_mysql_group_concat_max_len(self) -> _builtins.float:
|
|
276
275
|
"""
|
|
277
276
|
The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
278
277
|
"""
|
|
279
278
|
return pulumi.get(self, "engine_config_mysql_group_concat_max_len")
|
|
280
279
|
|
|
281
|
-
@property
|
|
280
|
+
@_builtins.property
|
|
282
281
|
@pulumi.getter(name="engineConfigMysqlInformationSchemaStatsExpiry")
|
|
283
|
-
def engine_config_mysql_information_schema_stats_expiry(self) ->
|
|
282
|
+
def engine_config_mysql_information_schema_stats_expiry(self) -> _builtins.int:
|
|
284
283
|
"""
|
|
285
284
|
The time, in seconds, before cached statistics expire.
|
|
286
285
|
"""
|
|
287
286
|
return pulumi.get(self, "engine_config_mysql_information_schema_stats_expiry")
|
|
288
287
|
|
|
289
|
-
@property
|
|
288
|
+
@_builtins.property
|
|
290
289
|
@pulumi.getter(name="engineConfigMysqlInnodbChangeBufferMaxSize")
|
|
291
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self) ->
|
|
290
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self) -> _builtins.int:
|
|
292
291
|
"""
|
|
293
292
|
Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
|
|
294
293
|
"""
|
|
295
294
|
return pulumi.get(self, "engine_config_mysql_innodb_change_buffer_max_size")
|
|
296
295
|
|
|
297
|
-
@property
|
|
296
|
+
@_builtins.property
|
|
298
297
|
@pulumi.getter(name="engineConfigMysqlInnodbFlushNeighbors")
|
|
299
|
-
def engine_config_mysql_innodb_flush_neighbors(self) ->
|
|
298
|
+
def engine_config_mysql_innodb_flush_neighbors(self) -> _builtins.int:
|
|
300
299
|
"""
|
|
301
300
|
Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
|
|
302
301
|
"""
|
|
303
302
|
return pulumi.get(self, "engine_config_mysql_innodb_flush_neighbors")
|
|
304
303
|
|
|
305
|
-
@property
|
|
304
|
+
@_builtins.property
|
|
306
305
|
@pulumi.getter(name="engineConfigMysqlInnodbFtMinTokenSize")
|
|
307
|
-
def engine_config_mysql_innodb_ft_min_token_size(self) ->
|
|
306
|
+
def engine_config_mysql_innodb_ft_min_token_size(self) -> _builtins.int:
|
|
308
307
|
"""
|
|
309
308
|
Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
|
|
310
309
|
"""
|
|
311
310
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_min_token_size")
|
|
312
311
|
|
|
313
|
-
@property
|
|
312
|
+
@_builtins.property
|
|
314
313
|
@pulumi.getter(name="engineConfigMysqlInnodbFtServerStopwordTable")
|
|
315
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self) ->
|
|
314
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> _builtins.str:
|
|
316
315
|
"""
|
|
317
316
|
This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
|
|
318
317
|
"""
|
|
319
318
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_server_stopword_table")
|
|
320
319
|
|
|
321
|
-
@property
|
|
320
|
+
@_builtins.property
|
|
322
321
|
@pulumi.getter(name="engineConfigMysqlInnodbLockWaitTimeout")
|
|
323
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self) ->
|
|
322
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self) -> _builtins.int:
|
|
324
323
|
"""
|
|
325
324
|
The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
326
325
|
"""
|
|
327
326
|
return pulumi.get(self, "engine_config_mysql_innodb_lock_wait_timeout")
|
|
328
327
|
|
|
329
|
-
@property
|
|
328
|
+
@_builtins.property
|
|
330
329
|
@pulumi.getter(name="engineConfigMysqlInnodbLogBufferSize")
|
|
331
|
-
def engine_config_mysql_innodb_log_buffer_size(self) ->
|
|
330
|
+
def engine_config_mysql_innodb_log_buffer_size(self) -> _builtins.int:
|
|
332
331
|
"""
|
|
333
332
|
The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
334
333
|
"""
|
|
335
334
|
return pulumi.get(self, "engine_config_mysql_innodb_log_buffer_size")
|
|
336
335
|
|
|
337
|
-
@property
|
|
336
|
+
@_builtins.property
|
|
338
337
|
@pulumi.getter(name="engineConfigMysqlInnodbOnlineAlterLogMaxSize")
|
|
339
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self) ->
|
|
338
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> _builtins.int:
|
|
340
339
|
"""
|
|
341
340
|
The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
|
|
342
341
|
"""
|
|
343
342
|
return pulumi.get(self, "engine_config_mysql_innodb_online_alter_log_max_size")
|
|
344
343
|
|
|
345
|
-
@property
|
|
344
|
+
@_builtins.property
|
|
346
345
|
@pulumi.getter(name="engineConfigMysqlInnodbReadIoThreads")
|
|
347
|
-
def engine_config_mysql_innodb_read_io_threads(self) ->
|
|
346
|
+
def engine_config_mysql_innodb_read_io_threads(self) -> _builtins.int:
|
|
348
347
|
"""
|
|
349
348
|
The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
|
|
350
349
|
"""
|
|
351
350
|
return pulumi.get(self, "engine_config_mysql_innodb_read_io_threads")
|
|
352
351
|
|
|
353
|
-
@property
|
|
352
|
+
@_builtins.property
|
|
354
353
|
@pulumi.getter(name="engineConfigMysqlInnodbRollbackOnTimeout")
|
|
355
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self) ->
|
|
354
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self) -> _builtins.bool:
|
|
356
355
|
"""
|
|
357
356
|
When enabled, a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service.
|
|
358
357
|
"""
|
|
359
358
|
return pulumi.get(self, "engine_config_mysql_innodb_rollback_on_timeout")
|
|
360
359
|
|
|
361
|
-
@property
|
|
360
|
+
@_builtins.property
|
|
362
361
|
@pulumi.getter(name="engineConfigMysqlInnodbThreadConcurrency")
|
|
363
|
-
def engine_config_mysql_innodb_thread_concurrency(self) ->
|
|
362
|
+
def engine_config_mysql_innodb_thread_concurrency(self) -> _builtins.int:
|
|
364
363
|
"""
|
|
365
364
|
Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
366
365
|
"""
|
|
367
366
|
return pulumi.get(self, "engine_config_mysql_innodb_thread_concurrency")
|
|
368
367
|
|
|
369
|
-
@property
|
|
368
|
+
@_builtins.property
|
|
370
369
|
@pulumi.getter(name="engineConfigMysqlInnodbWriteIoThreads")
|
|
371
|
-
def engine_config_mysql_innodb_write_io_threads(self) ->
|
|
370
|
+
def engine_config_mysql_innodb_write_io_threads(self) -> _builtins.int:
|
|
372
371
|
"""
|
|
373
372
|
The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service.
|
|
374
373
|
"""
|
|
375
374
|
return pulumi.get(self, "engine_config_mysql_innodb_write_io_threads")
|
|
376
375
|
|
|
377
|
-
@property
|
|
376
|
+
@_builtins.property
|
|
378
377
|
@pulumi.getter(name="engineConfigMysqlInteractiveTimeout")
|
|
379
|
-
def engine_config_mysql_interactive_timeout(self) ->
|
|
378
|
+
def engine_config_mysql_interactive_timeout(self) -> _builtins.int:
|
|
380
379
|
"""
|
|
381
380
|
The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
382
381
|
"""
|
|
383
382
|
return pulumi.get(self, "engine_config_mysql_interactive_timeout")
|
|
384
383
|
|
|
385
|
-
@property
|
|
384
|
+
@_builtins.property
|
|
386
385
|
@pulumi.getter(name="engineConfigMysqlInternalTmpMemStorageEngine")
|
|
387
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self) ->
|
|
386
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> _builtins.str:
|
|
388
387
|
"""
|
|
389
388
|
The storage engine for in-memory internal temporary tables.
|
|
390
389
|
"""
|
|
391
390
|
return pulumi.get(self, "engine_config_mysql_internal_tmp_mem_storage_engine")
|
|
392
391
|
|
|
393
|
-
@property
|
|
392
|
+
@_builtins.property
|
|
394
393
|
@pulumi.getter(name="engineConfigMysqlMaxAllowedPacket")
|
|
395
|
-
def engine_config_mysql_max_allowed_packet(self) ->
|
|
394
|
+
def engine_config_mysql_max_allowed_packet(self) -> _builtins.int:
|
|
396
395
|
"""
|
|
397
396
|
Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
398
397
|
"""
|
|
399
398
|
return pulumi.get(self, "engine_config_mysql_max_allowed_packet")
|
|
400
399
|
|
|
401
|
-
@property
|
|
400
|
+
@_builtins.property
|
|
402
401
|
@pulumi.getter(name="engineConfigMysqlMaxHeapTableSize")
|
|
403
|
-
def engine_config_mysql_max_heap_table_size(self) ->
|
|
402
|
+
def engine_config_mysql_max_heap_table_size(self) -> _builtins.int:
|
|
404
403
|
"""
|
|
405
404
|
Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
406
405
|
"""
|
|
407
406
|
return pulumi.get(self, "engine_config_mysql_max_heap_table_size")
|
|
408
407
|
|
|
409
|
-
@property
|
|
408
|
+
@_builtins.property
|
|
410
409
|
@pulumi.getter(name="engineConfigMysqlNetBufferLength")
|
|
411
|
-
def engine_config_mysql_net_buffer_length(self) ->
|
|
410
|
+
def engine_config_mysql_net_buffer_length(self) -> _builtins.int:
|
|
412
411
|
"""
|
|
413
412
|
Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
|
|
414
413
|
"""
|
|
415
414
|
return pulumi.get(self, "engine_config_mysql_net_buffer_length")
|
|
416
415
|
|
|
417
|
-
@property
|
|
416
|
+
@_builtins.property
|
|
418
417
|
@pulumi.getter(name="engineConfigMysqlNetReadTimeout")
|
|
419
|
-
def engine_config_mysql_net_read_timeout(self) ->
|
|
418
|
+
def engine_config_mysql_net_read_timeout(self) -> _builtins.int:
|
|
420
419
|
"""
|
|
421
420
|
The number of seconds to wait for more data from a connection before aborting the read.
|
|
422
421
|
"""
|
|
423
422
|
return pulumi.get(self, "engine_config_mysql_net_read_timeout")
|
|
424
423
|
|
|
425
|
-
@property
|
|
424
|
+
@_builtins.property
|
|
426
425
|
@pulumi.getter(name="engineConfigMysqlNetWriteTimeout")
|
|
427
|
-
def engine_config_mysql_net_write_timeout(self) ->
|
|
426
|
+
def engine_config_mysql_net_write_timeout(self) -> _builtins.int:
|
|
428
427
|
"""
|
|
429
428
|
The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
430
429
|
"""
|
|
431
430
|
return pulumi.get(self, "engine_config_mysql_net_write_timeout")
|
|
432
431
|
|
|
433
|
-
@property
|
|
432
|
+
@_builtins.property
|
|
434
433
|
@pulumi.getter(name="engineConfigMysqlSortBufferSize")
|
|
435
|
-
def engine_config_mysql_sort_buffer_size(self) ->
|
|
434
|
+
def engine_config_mysql_sort_buffer_size(self) -> _builtins.int:
|
|
436
435
|
"""
|
|
437
436
|
Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
438
437
|
"""
|
|
439
438
|
return pulumi.get(self, "engine_config_mysql_sort_buffer_size")
|
|
440
439
|
|
|
441
|
-
@property
|
|
440
|
+
@_builtins.property
|
|
442
441
|
@pulumi.getter(name="engineConfigMysqlSqlMode")
|
|
443
|
-
def engine_config_mysql_sql_mode(self) ->
|
|
442
|
+
def engine_config_mysql_sql_mode(self) -> _builtins.str:
|
|
444
443
|
"""
|
|
445
444
|
Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
|
|
446
445
|
"""
|
|
447
446
|
return pulumi.get(self, "engine_config_mysql_sql_mode")
|
|
448
447
|
|
|
449
|
-
@property
|
|
448
|
+
@_builtins.property
|
|
450
449
|
@pulumi.getter(name="engineConfigMysqlSqlRequirePrimaryKey")
|
|
451
|
-
def engine_config_mysql_sql_require_primary_key(self) ->
|
|
450
|
+
def engine_config_mysql_sql_require_primary_key(self) -> _builtins.bool:
|
|
452
451
|
"""
|
|
453
452
|
Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
|
|
454
453
|
"""
|
|
455
454
|
return pulumi.get(self, "engine_config_mysql_sql_require_primary_key")
|
|
456
455
|
|
|
457
|
-
@property
|
|
456
|
+
@_builtins.property
|
|
458
457
|
@pulumi.getter(name="engineConfigMysqlTmpTableSize")
|
|
459
|
-
def engine_config_mysql_tmp_table_size(self) ->
|
|
458
|
+
def engine_config_mysql_tmp_table_size(self) -> _builtins.int:
|
|
460
459
|
"""
|
|
461
460
|
Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
462
461
|
"""
|
|
463
462
|
return pulumi.get(self, "engine_config_mysql_tmp_table_size")
|
|
464
463
|
|
|
465
|
-
@property
|
|
464
|
+
@_builtins.property
|
|
466
465
|
@pulumi.getter(name="engineConfigMysqlWaitTimeout")
|
|
467
|
-
def engine_config_mysql_wait_timeout(self) ->
|
|
466
|
+
def engine_config_mysql_wait_timeout(self) -> _builtins.int:
|
|
468
467
|
"""
|
|
469
468
|
The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
470
469
|
"""
|
|
471
470
|
return pulumi.get(self, "engine_config_mysql_wait_timeout")
|
|
472
471
|
|
|
473
|
-
@property
|
|
472
|
+
@_builtins.property
|
|
474
473
|
@pulumi.getter(name="engineId")
|
|
475
|
-
def engine_id(self) ->
|
|
474
|
+
def engine_id(self) -> _builtins.str:
|
|
476
475
|
"""
|
|
477
476
|
The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
478
477
|
"""
|
|
479
478
|
return pulumi.get(self, "engine_id")
|
|
480
479
|
|
|
481
|
-
@property
|
|
480
|
+
@_builtins.property
|
|
482
481
|
@pulumi.getter(name="forkRestoreTime")
|
|
483
|
-
def fork_restore_time(self) ->
|
|
482
|
+
def fork_restore_time(self) -> _builtins.str:
|
|
484
483
|
"""
|
|
485
484
|
The database timestamp from which it was restored.
|
|
486
485
|
"""
|
|
487
486
|
return pulumi.get(self, "fork_restore_time")
|
|
488
487
|
|
|
489
|
-
@property
|
|
488
|
+
@_builtins.property
|
|
490
489
|
@pulumi.getter(name="forkSource")
|
|
491
|
-
def fork_source(self) ->
|
|
490
|
+
def fork_source(self) -> _builtins.int:
|
|
492
491
|
"""
|
|
493
492
|
The ID of the database that was forked from.
|
|
494
493
|
"""
|
|
495
494
|
return pulumi.get(self, "fork_source")
|
|
496
495
|
|
|
497
|
-
@property
|
|
496
|
+
@_builtins.property
|
|
498
497
|
@pulumi.getter(name="hostPrimary")
|
|
499
|
-
def host_primary(self) ->
|
|
498
|
+
def host_primary(self) -> _builtins.str:
|
|
500
499
|
"""
|
|
501
500
|
The primary host for the Managed Database.
|
|
502
501
|
"""
|
|
503
502
|
return pulumi.get(self, "host_primary")
|
|
504
503
|
|
|
505
|
-
@property
|
|
504
|
+
@_builtins.property
|
|
506
505
|
@pulumi.getter(name="hostSecondary")
|
|
507
|
-
def host_secondary(self) ->
|
|
506
|
+
def host_secondary(self) -> _builtins.str:
|
|
508
507
|
"""
|
|
509
508
|
The secondary/private host for the managed database.
|
|
510
509
|
"""
|
|
511
510
|
return pulumi.get(self, "host_secondary")
|
|
512
511
|
|
|
513
|
-
@property
|
|
512
|
+
@_builtins.property
|
|
514
513
|
@pulumi.getter
|
|
515
|
-
def id(self) ->
|
|
514
|
+
def id(self) -> _builtins.str:
|
|
516
515
|
return pulumi.get(self, "id")
|
|
517
516
|
|
|
518
|
-
@property
|
|
517
|
+
@_builtins.property
|
|
519
518
|
@pulumi.getter
|
|
520
|
-
def label(self) ->
|
|
519
|
+
def label(self) -> _builtins.str:
|
|
521
520
|
"""
|
|
522
521
|
A unique, user-defined string referring to the Managed Database.
|
|
523
522
|
"""
|
|
524
523
|
return pulumi.get(self, "label")
|
|
525
524
|
|
|
526
|
-
@property
|
|
525
|
+
@_builtins.property
|
|
527
526
|
@pulumi.getter
|
|
528
|
-
def members(self) -> Mapping[str,
|
|
527
|
+
def members(self) -> Mapping[str, _builtins.str]:
|
|
529
528
|
return pulumi.get(self, "members")
|
|
530
529
|
|
|
531
|
-
@property
|
|
530
|
+
@_builtins.property
|
|
532
531
|
@pulumi.getter(name="oldestRestoreTime")
|
|
533
|
-
def oldest_restore_time(self) ->
|
|
532
|
+
def oldest_restore_time(self) -> _builtins.str:
|
|
534
533
|
return pulumi.get(self, "oldest_restore_time")
|
|
535
534
|
|
|
536
|
-
@property
|
|
535
|
+
@_builtins.property
|
|
537
536
|
@pulumi.getter(name="pendingUpdates")
|
|
538
537
|
def pending_updates(self) -> Sequence['outputs.GetDatabaseMysqlV2PendingUpdateResult']:
|
|
539
538
|
return pulumi.get(self, "pending_updates")
|
|
540
539
|
|
|
541
|
-
@property
|
|
540
|
+
@_builtins.property
|
|
542
541
|
@pulumi.getter
|
|
543
|
-
def platform(self) ->
|
|
542
|
+
def platform(self) -> _builtins.str:
|
|
544
543
|
"""
|
|
545
544
|
The back-end platform for relational databases used by the service.
|
|
546
545
|
"""
|
|
547
546
|
return pulumi.get(self, "platform")
|
|
548
547
|
|
|
549
|
-
@property
|
|
548
|
+
@_builtins.property
|
|
550
549
|
@pulumi.getter
|
|
551
|
-
def port(self) ->
|
|
550
|
+
def port(self) -> _builtins.int:
|
|
552
551
|
"""
|
|
553
552
|
The access port for this Managed Database.
|
|
554
553
|
"""
|
|
555
554
|
return pulumi.get(self, "port")
|
|
556
555
|
|
|
557
|
-
@property
|
|
556
|
+
@_builtins.property
|
|
558
557
|
@pulumi.getter
|
|
559
|
-
def region(self) ->
|
|
558
|
+
def region(self) -> _builtins.str:
|
|
560
559
|
"""
|
|
561
560
|
The region to use for the Managed Database.
|
|
562
561
|
"""
|
|
563
562
|
return pulumi.get(self, "region")
|
|
564
563
|
|
|
565
|
-
@property
|
|
564
|
+
@_builtins.property
|
|
566
565
|
@pulumi.getter(name="rootPassword")
|
|
567
|
-
def root_password(self) ->
|
|
566
|
+
def root_password(self) -> _builtins.str:
|
|
568
567
|
"""
|
|
569
568
|
The randomly-generated root password for the Managed Database instance.
|
|
570
569
|
"""
|
|
571
570
|
return pulumi.get(self, "root_password")
|
|
572
571
|
|
|
573
|
-
@property
|
|
572
|
+
@_builtins.property
|
|
574
573
|
@pulumi.getter(name="rootUsername")
|
|
575
|
-
def root_username(self) ->
|
|
574
|
+
def root_username(self) -> _builtins.str:
|
|
576
575
|
"""
|
|
577
576
|
The root username for the Managed Database instance.
|
|
578
577
|
"""
|
|
579
578
|
return pulumi.get(self, "root_username")
|
|
580
579
|
|
|
581
|
-
@property
|
|
580
|
+
@_builtins.property
|
|
582
581
|
@pulumi.getter(name="sslConnection")
|
|
583
|
-
def ssl_connection(self) ->
|
|
582
|
+
def ssl_connection(self) -> _builtins.bool:
|
|
584
583
|
"""
|
|
585
584
|
Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
586
585
|
"""
|
|
587
586
|
return pulumi.get(self, "ssl_connection")
|
|
588
587
|
|
|
589
|
-
@property
|
|
588
|
+
@_builtins.property
|
|
590
589
|
@pulumi.getter
|
|
591
|
-
def status(self) ->
|
|
590
|
+
def status(self) -> _builtins.str:
|
|
592
591
|
"""
|
|
593
592
|
The operating status of the Managed Database.
|
|
594
593
|
"""
|
|
595
594
|
return pulumi.get(self, "status")
|
|
596
595
|
|
|
597
|
-
@property
|
|
596
|
+
@_builtins.property
|
|
598
597
|
@pulumi.getter
|
|
599
|
-
def suspended(self) ->
|
|
598
|
+
def suspended(self) -> _builtins.bool:
|
|
600
599
|
"""
|
|
601
600
|
Whether this Managed Database is suspended.
|
|
602
601
|
"""
|
|
603
602
|
return pulumi.get(self, "suspended")
|
|
604
603
|
|
|
605
|
-
@property
|
|
604
|
+
@_builtins.property
|
|
606
605
|
@pulumi.getter
|
|
607
|
-
def type(self) ->
|
|
606
|
+
def type(self) -> _builtins.str:
|
|
608
607
|
"""
|
|
609
608
|
The Linode Instance type used for the nodes of the Managed Database.
|
|
610
609
|
"""
|
|
611
610
|
return pulumi.get(self, "type")
|
|
612
611
|
|
|
613
|
-
@property
|
|
612
|
+
@_builtins.property
|
|
614
613
|
@pulumi.getter
|
|
615
|
-
def updated(self) ->
|
|
614
|
+
def updated(self) -> _builtins.str:
|
|
616
615
|
"""
|
|
617
616
|
When this Managed Database was last updated.
|
|
618
617
|
"""
|
|
619
618
|
return pulumi.get(self, "updated")
|
|
620
619
|
|
|
621
|
-
@property
|
|
620
|
+
@_builtins.property
|
|
622
621
|
@pulumi.getter
|
|
623
622
|
def updates(self) -> 'outputs.GetDatabaseMysqlV2UpdatesResult':
|
|
624
623
|
return pulumi.get(self, "updates")
|
|
625
624
|
|
|
626
|
-
@property
|
|
625
|
+
@_builtins.property
|
|
627
626
|
@pulumi.getter
|
|
628
|
-
def version(self) ->
|
|
627
|
+
def version(self) -> _builtins.str:
|
|
629
628
|
"""
|
|
630
629
|
The Managed Database engine version. (e.g. `13.2`)
|
|
631
630
|
"""
|
|
@@ -696,7 +695,7 @@ class AwaitableGetDatabaseMysqlV2Result(GetDatabaseMysqlV2Result):
|
|
|
696
695
|
version=self.version)
|
|
697
696
|
|
|
698
697
|
|
|
699
|
-
def get_database_mysql_v2(id: Optional[
|
|
698
|
+
def get_database_mysql_v2(id: Optional[_builtins.str] = None,
|
|
700
699
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseMysqlV2Result:
|
|
701
700
|
"""
|
|
702
701
|
Provides information about a Linode MySQL Database.
|
|
@@ -736,7 +735,7 @@ def get_database_mysql_v2(id: Optional[builtins.str] = None,
|
|
|
736
735
|
* `hour_of_day` - The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
737
736
|
|
|
738
737
|
|
|
739
|
-
:param
|
|
738
|
+
:param _builtins.str id: The ID of the MySQL database.
|
|
740
739
|
"""
|
|
741
740
|
__args__ = dict()
|
|
742
741
|
__args__['id'] = id
|
|
@@ -800,7 +799,7 @@ def get_database_mysql_v2(id: Optional[builtins.str] = None,
|
|
|
800
799
|
updated=pulumi.get(__ret__, 'updated'),
|
|
801
800
|
updates=pulumi.get(__ret__, 'updates'),
|
|
802
801
|
version=pulumi.get(__ret__, 'version'))
|
|
803
|
-
def get_database_mysql_v2_output(id: Optional[pulumi.Input[
|
|
802
|
+
def get_database_mysql_v2_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
804
803
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabaseMysqlV2Result]:
|
|
805
804
|
"""
|
|
806
805
|
Provides information about a Linode MySQL Database.
|
|
@@ -840,7 +839,7 @@ def get_database_mysql_v2_output(id: Optional[pulumi.Input[builtins.str]] = None
|
|
|
840
839
|
* `hour_of_day` - The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
841
840
|
|
|
842
841
|
|
|
843
|
-
:param
|
|
842
|
+
:param _builtins.str id: The ID of the MySQL database.
|
|
844
843
|
"""
|
|
845
844
|
__args__ = dict()
|
|
846
845
|
__args__['id'] = id
|