pulumi-oci 1.42.0a1718951234__py3-none-any.whl → 1.42.0a1719263894__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.
- pulumi_oci/_utilities.py +35 -0
- pulumi_oci/budget/budget.py +3 -9
- pulumi_oci/budget/get_budget.py +1 -3
- pulumi_oci/budget/outputs.py +1 -3
- pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py +2 -2
- pulumi_oci/containerengine/get_node_pool.py +2 -6
- pulumi_oci/containerengine/node_pool.py +6 -18
- pulumi_oci/containerengine/outputs.py +2 -6
- pulumi_oci/core/_inputs.py +5 -15
- pulumi_oci/core/boot_volume.py +3 -9
- pulumi_oci/core/get_boot_volume.py +1 -3
- pulumi_oci/core/get_instance.py +3 -9
- pulumi_oci/core/get_virtual_circuit.py +2 -6
- pulumi_oci/core/get_volume.py +2 -6
- pulumi_oci/core/instance.py +9 -27
- pulumi_oci/core/outputs.py +24 -72
- pulumi_oci/core/virtual_circuit.py +5 -15
- pulumi_oci/core/volume.py +6 -18
- pulumi_oci/core/volume_attachment.py +3 -9
- pulumi_oci/core/volume_backup.py +4 -12
- pulumi_oci/core/volume_group.py +3 -9
- pulumi_oci/database/autonomous_database.py +3 -9
- pulumi_oci/database/autonomous_exadata_infrastructure.py +3 -9
- pulumi_oci/database/backup_destination.py +3 -9
- pulumi_oci/database/get_autonomous_database.py +1 -3
- pulumi_oci/database/get_autonomous_database_wallet.py +1 -3
- pulumi_oci/database/get_autonomous_exadata_infrastructure.py +1 -3
- pulumi_oci/database/get_backup_destination.py +1 -3
- pulumi_oci/database/outputs.py +4 -12
- pulumi_oci/datasafe/discovery_jobs_result.py +7 -21
- pulumi_oci/datasafe/get_discovery_jobs_result.py +2 -6
- pulumi_oci/datasafe/outputs.py +3 -9
- pulumi_oci/dns/get_records.py +1 -3
- pulumi_oci/dns/outputs.py +3 -9
- pulumi_oci/dns/record.py +9 -27
- pulumi_oci/identity/outputs.py +3 -9
- pulumi_oci/identity/policy.py +6 -18
- pulumi_oci/loadbalancer/load_balancer.py +2 -6
- pulumi_oci/loadbalancer/outputs.py +1 -3
- pulumi_oci/mysql/_inputs.py +7 -21
- pulumi_oci/mysql/outputs.py +21 -63
- pulumi_oci/objectstorage/get_preauthrequest.py +1 -3
- pulumi_oci/objectstorage/get_replication_policy.py +1 -3
- pulumi_oci/objectstorage/outputs.py +2 -6
- pulumi_oci/objectstorage/preauthrequest.py +3 -9
- pulumi_oci/objectstorage/replication_policy.py +3 -9
- pulumi_oci/ocvp/esxi_host.py +18 -54
- pulumi_oci/ocvp/get_exsi_host.py +6 -18
- pulumi_oci/ocvp/get_sddc.py +31 -93
- pulumi_oci/ocvp/get_supported_host_shapes.py +1 -3
- pulumi_oci/ocvp/outputs.py +39 -117
- pulumi_oci/ocvp/sddc.py +83 -249
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +1 -3
- pulumi_oci/recoverymod/outputs.py +1 -3
- pulumi_oci/recoverymod/recovery_service_subnet.py +3 -9
- {pulumi_oci-1.42.0a1718951234.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/METADATA +1 -1
- {pulumi_oci-1.42.0a1718951234.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/RECORD +60 -60
- {pulumi_oci-1.42.0a1718951234.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.42.0a1718951234.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/top_level.txt +0 -0
pulumi_oci/mysql/outputs.py
CHANGED
@@ -2170,13 +2170,11 @@ class MysqlConfigurationVariables(dict):
|
|
2170
2170
|
|
2171
2171
|
@property
|
2172
2172
|
@pulumi.getter(name="generatedRandomPasswordLength")
|
2173
|
+
@_utilities.deprecated("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2173
2174
|
def generated_random_password_length(self) -> Optional[int]:
|
2174
2175
|
"""
|
2175
2176
|
("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
2176
2177
|
"""
|
2177
|
-
warnings.warn("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2178
|
-
pulumi.log.warn("""generated_random_password_length is deprecated: The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2179
|
-
|
2180
2178
|
return pulumi.get(self, "generated_random_password_length")
|
2181
2179
|
|
2182
2180
|
@property
|
@@ -2487,13 +2485,11 @@ class MysqlConfigurationVariables(dict):
|
|
2487
2485
|
|
2488
2486
|
@property
|
2489
2487
|
@pulumi.getter(name="mysqlZstdDefaultCompressionLevel")
|
2488
|
+
@_utilities.deprecated("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2490
2489
|
def mysql_zstd_default_compression_level(self) -> Optional[int]:
|
2491
2490
|
"""
|
2492
2491
|
DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
2493
2492
|
"""
|
2494
|
-
warnings.warn("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2495
|
-
pulumi.log.warn("""mysql_zstd_default_compression_level is deprecated: The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2496
|
-
|
2497
2493
|
return pulumi.get(self, "mysql_zstd_default_compression_level")
|
2498
2494
|
|
2499
2495
|
@property
|
@@ -2524,13 +2520,11 @@ class MysqlConfigurationVariables(dict):
|
|
2524
2520
|
|
2525
2521
|
@property
|
2526
2522
|
@pulumi.getter(name="mysqlxDocumentIdUniquePrefix")
|
2523
|
+
@_utilities.deprecated("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2527
2524
|
def mysqlx_document_id_unique_prefix(self) -> Optional[int]:
|
2528
2525
|
"""
|
2529
2526
|
("mysqlx_document_id_unique_prefix") DEPRECATED -- variable should not be settable and will be ignored
|
2530
2527
|
"""
|
2531
|
-
warnings.warn("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2532
|
-
pulumi.log.warn("""mysqlx_document_id_unique_prefix is deprecated: The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2533
|
-
|
2534
2528
|
return pulumi.get(self, "mysqlx_document_id_unique_prefix")
|
2535
2529
|
|
2536
2530
|
@property
|
@@ -2543,13 +2537,11 @@ class MysqlConfigurationVariables(dict):
|
|
2543
2537
|
|
2544
2538
|
@property
|
2545
2539
|
@pulumi.getter(name="mysqlxIdleWorkerThreadTimeout")
|
2540
|
+
@_utilities.deprecated("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2546
2541
|
def mysqlx_idle_worker_thread_timeout(self) -> Optional[int]:
|
2547
2542
|
"""
|
2548
2543
|
("mysqlx_idle_worker_thread_timeout") DEPRECATED -- variable should not be settable and will be ignored
|
2549
2544
|
"""
|
2550
|
-
warnings.warn("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2551
|
-
pulumi.log.warn("""mysqlx_idle_worker_thread_timeout is deprecated: The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2552
|
-
|
2553
2545
|
return pulumi.get(self, "mysqlx_idle_worker_thread_timeout")
|
2554
2546
|
|
2555
2547
|
@property
|
@@ -2590,13 +2582,11 @@ class MysqlConfigurationVariables(dict):
|
|
2590
2582
|
|
2591
2583
|
@property
|
2592
2584
|
@pulumi.getter(name="mysqlxMinWorkerThreads")
|
2585
|
+
@_utilities.deprecated("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2593
2586
|
def mysqlx_min_worker_threads(self) -> Optional[int]:
|
2594
2587
|
"""
|
2595
2588
|
("mysqlx_min_worker_threads") DEPRECATED -- variable should not be settable and will be ignored
|
2596
2589
|
"""
|
2597
|
-
warnings.warn("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2598
|
-
pulumi.log.warn("""mysqlx_min_worker_threads is deprecated: The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2599
|
-
|
2600
2590
|
return pulumi.get(self, "mysqlx_min_worker_threads")
|
2601
2591
|
|
2602
2592
|
@property
|
@@ -2675,24 +2665,20 @@ class MysqlConfigurationVariables(dict):
|
|
2675
2665
|
|
2676
2666
|
@property
|
2677
2667
|
@pulumi.getter(name="queryAllocBlockSize")
|
2668
|
+
@_utilities.deprecated("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2678
2669
|
def query_alloc_block_size(self) -> Optional[str]:
|
2679
2670
|
"""
|
2680
2671
|
("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
2681
2672
|
"""
|
2682
|
-
warnings.warn("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2683
|
-
pulumi.log.warn("""query_alloc_block_size is deprecated: The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2684
|
-
|
2685
2673
|
return pulumi.get(self, "query_alloc_block_size")
|
2686
2674
|
|
2687
2675
|
@property
|
2688
2676
|
@pulumi.getter(name="queryPreallocSize")
|
2677
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2689
2678
|
def query_prealloc_size(self) -> Optional[str]:
|
2690
2679
|
"""
|
2691
2680
|
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
2692
2681
|
"""
|
2693
|
-
warnings.warn("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
2694
|
-
pulumi.log.warn("""query_prealloc_size is deprecated: The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
2695
|
-
|
2696
2682
|
return pulumi.get(self, "query_prealloc_size")
|
2697
2683
|
|
2698
2684
|
@property
|
@@ -6836,13 +6822,11 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
6836
6822
|
|
6837
6823
|
@property
|
6838
6824
|
@pulumi.getter(name="generatedRandomPasswordLength")
|
6825
|
+
@_utilities.deprecated("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
6839
6826
|
def generated_random_password_length(self) -> int:
|
6840
6827
|
"""
|
6841
6828
|
("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
6842
6829
|
"""
|
6843
|
-
warnings.warn("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
6844
|
-
pulumi.log.warn("""generated_random_password_length is deprecated: The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
6845
|
-
|
6846
6830
|
return pulumi.get(self, "generated_random_password_length")
|
6847
6831
|
|
6848
6832
|
@property
|
@@ -7107,13 +7091,11 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7107
7091
|
|
7108
7092
|
@property
|
7109
7093
|
@pulumi.getter(name="mysqlZstdDefaultCompressionLevel")
|
7094
|
+
@_utilities.deprecated("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7110
7095
|
def mysql_zstd_default_compression_level(self) -> int:
|
7111
7096
|
"""
|
7112
7097
|
DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
7113
7098
|
"""
|
7114
|
-
warnings.warn("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7115
|
-
pulumi.log.warn("""mysql_zstd_default_compression_level is deprecated: The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7116
|
-
|
7117
7099
|
return pulumi.get(self, "mysql_zstd_default_compression_level")
|
7118
7100
|
|
7119
7101
|
@property
|
@@ -7142,13 +7124,11 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7142
7124
|
|
7143
7125
|
@property
|
7144
7126
|
@pulumi.getter(name="mysqlxDocumentIdUniquePrefix")
|
7127
|
+
@_utilities.deprecated("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7145
7128
|
def mysqlx_document_id_unique_prefix(self) -> int:
|
7146
7129
|
"""
|
7147
7130
|
("mysqlx_document_id_unique_prefix") DEPRECATED -- variable should not be settable and will be ignored
|
7148
7131
|
"""
|
7149
|
-
warnings.warn("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7150
|
-
pulumi.log.warn("""mysqlx_document_id_unique_prefix is deprecated: The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7151
|
-
|
7152
7132
|
return pulumi.get(self, "mysqlx_document_id_unique_prefix")
|
7153
7133
|
|
7154
7134
|
@property
|
@@ -7161,13 +7141,11 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7161
7141
|
|
7162
7142
|
@property
|
7163
7143
|
@pulumi.getter(name="mysqlxIdleWorkerThreadTimeout")
|
7144
|
+
@_utilities.deprecated("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7164
7145
|
def mysqlx_idle_worker_thread_timeout(self) -> int:
|
7165
7146
|
"""
|
7166
7147
|
("mysqlx_idle_worker_thread_timeout") DEPRECATED -- variable should not be settable and will be ignored
|
7167
7148
|
"""
|
7168
|
-
warnings.warn("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7169
|
-
pulumi.log.warn("""mysqlx_idle_worker_thread_timeout is deprecated: The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7170
|
-
|
7171
7149
|
return pulumi.get(self, "mysqlx_idle_worker_thread_timeout")
|
7172
7150
|
|
7173
7151
|
@property
|
@@ -7204,13 +7182,11 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7204
7182
|
|
7205
7183
|
@property
|
7206
7184
|
@pulumi.getter(name="mysqlxMinWorkerThreads")
|
7185
|
+
@_utilities.deprecated("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7207
7186
|
def mysqlx_min_worker_threads(self) -> int:
|
7208
7187
|
"""
|
7209
7188
|
("mysqlx_min_worker_threads") DEPRECATED -- variable should not be settable and will be ignored
|
7210
7189
|
"""
|
7211
|
-
warnings.warn("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7212
|
-
pulumi.log.warn("""mysqlx_min_worker_threads is deprecated: The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7213
|
-
|
7214
7190
|
return pulumi.get(self, "mysqlx_min_worker_threads")
|
7215
7191
|
|
7216
7192
|
@property
|
@@ -7279,24 +7255,20 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7279
7255
|
|
7280
7256
|
@property
|
7281
7257
|
@pulumi.getter(name="queryAllocBlockSize")
|
7258
|
+
@_utilities.deprecated("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7282
7259
|
def query_alloc_block_size(self) -> str:
|
7283
7260
|
"""
|
7284
7261
|
("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
7285
7262
|
"""
|
7286
|
-
warnings.warn("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7287
|
-
pulumi.log.warn("""query_alloc_block_size is deprecated: The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7288
|
-
|
7289
7263
|
return pulumi.get(self, "query_alloc_block_size")
|
7290
7264
|
|
7291
7265
|
@property
|
7292
7266
|
@pulumi.getter(name="queryPreallocSize")
|
7267
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7293
7268
|
def query_prealloc_size(self) -> str:
|
7294
7269
|
"""
|
7295
7270
|
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
7296
7271
|
"""
|
7297
|
-
warnings.warn("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7298
|
-
pulumi.log.warn("""query_prealloc_size is deprecated: The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7299
|
-
|
7300
7272
|
return pulumi.get(self, "query_prealloc_size")
|
7301
7273
|
|
7302
7274
|
@property
|
@@ -7920,13 +7892,11 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
7920
7892
|
|
7921
7893
|
@property
|
7922
7894
|
@pulumi.getter(name="generatedRandomPasswordLength")
|
7895
|
+
@_utilities.deprecated("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7923
7896
|
def generated_random_password_length(self) -> int:
|
7924
7897
|
"""
|
7925
7898
|
("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
7926
7899
|
"""
|
7927
|
-
warnings.warn("""The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
7928
|
-
pulumi.log.warn("""generated_random_password_length is deprecated: The 'generated_random_password_length' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
7929
|
-
|
7930
7900
|
return pulumi.get(self, "generated_random_password_length")
|
7931
7901
|
|
7932
7902
|
@property
|
@@ -8191,13 +8161,11 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8191
8161
|
|
8192
8162
|
@property
|
8193
8163
|
@pulumi.getter(name="mysqlZstdDefaultCompressionLevel")
|
8164
|
+
@_utilities.deprecated("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8194
8165
|
def mysql_zstd_default_compression_level(self) -> int:
|
8195
8166
|
"""
|
8196
8167
|
DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
8197
8168
|
"""
|
8198
|
-
warnings.warn("""The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8199
|
-
pulumi.log.warn("""mysql_zstd_default_compression_level is deprecated: The 'mysql_zstd_default_compression_level' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8200
|
-
|
8201
8169
|
return pulumi.get(self, "mysql_zstd_default_compression_level")
|
8202
8170
|
|
8203
8171
|
@property
|
@@ -8226,13 +8194,11 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8226
8194
|
|
8227
8195
|
@property
|
8228
8196
|
@pulumi.getter(name="mysqlxDocumentIdUniquePrefix")
|
8197
|
+
@_utilities.deprecated("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8229
8198
|
def mysqlx_document_id_unique_prefix(self) -> int:
|
8230
8199
|
"""
|
8231
8200
|
("mysqlx_document_id_unique_prefix") DEPRECATED -- variable should not be settable and will be ignored
|
8232
8201
|
"""
|
8233
|
-
warnings.warn("""The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8234
|
-
pulumi.log.warn("""mysqlx_document_id_unique_prefix is deprecated: The 'mysqlx_document_id_unique_prefix' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8235
|
-
|
8236
8202
|
return pulumi.get(self, "mysqlx_document_id_unique_prefix")
|
8237
8203
|
|
8238
8204
|
@property
|
@@ -8245,13 +8211,11 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8245
8211
|
|
8246
8212
|
@property
|
8247
8213
|
@pulumi.getter(name="mysqlxIdleWorkerThreadTimeout")
|
8214
|
+
@_utilities.deprecated("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8248
8215
|
def mysqlx_idle_worker_thread_timeout(self) -> int:
|
8249
8216
|
"""
|
8250
8217
|
("mysqlx_idle_worker_thread_timeout") DEPRECATED -- variable should not be settable and will be ignored
|
8251
8218
|
"""
|
8252
|
-
warnings.warn("""The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8253
|
-
pulumi.log.warn("""mysqlx_idle_worker_thread_timeout is deprecated: The 'mysqlx_idle_worker_thread_timeout' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8254
|
-
|
8255
8219
|
return pulumi.get(self, "mysqlx_idle_worker_thread_timeout")
|
8256
8220
|
|
8257
8221
|
@property
|
@@ -8288,13 +8252,11 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8288
8252
|
|
8289
8253
|
@property
|
8290
8254
|
@pulumi.getter(name="mysqlxMinWorkerThreads")
|
8255
|
+
@_utilities.deprecated("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8291
8256
|
def mysqlx_min_worker_threads(self) -> int:
|
8292
8257
|
"""
|
8293
8258
|
("mysqlx_min_worker_threads") DEPRECATED -- variable should not be settable and will be ignored
|
8294
8259
|
"""
|
8295
|
-
warnings.warn("""The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8296
|
-
pulumi.log.warn("""mysqlx_min_worker_threads is deprecated: The 'mysqlx_min_worker_threads' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8297
|
-
|
8298
8260
|
return pulumi.get(self, "mysqlx_min_worker_threads")
|
8299
8261
|
|
8300
8262
|
@property
|
@@ -8363,24 +8325,20 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8363
8325
|
|
8364
8326
|
@property
|
8365
8327
|
@pulumi.getter(name="queryAllocBlockSize")
|
8328
|
+
@_utilities.deprecated("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8366
8329
|
def query_alloc_block_size(self) -> str:
|
8367
8330
|
"""
|
8368
8331
|
("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
8369
8332
|
"""
|
8370
|
-
warnings.warn("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8371
|
-
pulumi.log.warn("""query_alloc_block_size is deprecated: The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8372
|
-
|
8373
8333
|
return pulumi.get(self, "query_alloc_block_size")
|
8374
8334
|
|
8375
8335
|
@property
|
8376
8336
|
@pulumi.getter(name="queryPreallocSize")
|
8337
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8377
8338
|
def query_prealloc_size(self) -> str:
|
8378
8339
|
"""
|
8379
8340
|
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
8380
8341
|
"""
|
8381
|
-
warnings.warn("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
8382
|
-
pulumi.log.warn("""query_prealloc_size is deprecated: The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
8383
|
-
|
8384
8342
|
return pulumi.get(self, "query_prealloc_size")
|
8385
8343
|
|
8386
8344
|
@property
|
@@ -125,13 +125,11 @@ class GetPreauthrequestResult:
|
|
125
125
|
|
126
126
|
@property
|
127
127
|
@pulumi.getter
|
128
|
+
@_utilities.deprecated("""The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
128
129
|
def object(self) -> str:
|
129
130
|
"""
|
130
131
|
Deprecated. Instead use `object_name`.The name of the object that is being granted access to by the pre-authenticated request. Avoid entering confidential information. The object name can be null and if so, the pre-authenticated request grants access to the entire bucket. Example: test/object1.log
|
131
132
|
"""
|
132
|
-
warnings.warn("""The 'object' field has been deprecated. Please use 'object_name' instead.""", DeprecationWarning)
|
133
|
-
pulumi.log.warn("""object is deprecated: The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
134
|
-
|
135
133
|
return pulumi.get(self, "object")
|
136
134
|
|
137
135
|
@property
|
@@ -66,10 +66,8 @@ class GetReplicationPolicyResult:
|
|
66
66
|
|
67
67
|
@property
|
68
68
|
@pulumi.getter(name="deleteObjectInDestinationBucket")
|
69
|
+
@_utilities.deprecated("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
69
70
|
def delete_object_in_destination_bucket(self) -> str:
|
70
|
-
warnings.warn("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
71
|
-
pulumi.log.warn("""delete_object_in_destination_bucket is deprecated: The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
72
|
-
|
73
71
|
return pulumi.get(self, "delete_object_in_destination_bucket")
|
74
72
|
|
75
73
|
@property
|
@@ -1508,13 +1508,11 @@ class GetPreauthrequestsPreauthenticatedRequestResult(dict):
|
|
1508
1508
|
|
1509
1509
|
@property
|
1510
1510
|
@pulumi.getter
|
1511
|
+
@_utilities.deprecated("""The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
1511
1512
|
def object(self) -> str:
|
1512
1513
|
"""
|
1513
1514
|
Deprecated. Instead use `object_name`.The name of the object that is being granted access to by the pre-authenticated request. Avoid entering confidential information. The object name can be null and if so, the pre-authenticated request grants access to the entire bucket. Example: test/object1.log
|
1514
1515
|
"""
|
1515
|
-
warnings.warn("""The 'object' field has been deprecated. Please use 'object_name' instead.""", DeprecationWarning)
|
1516
|
-
pulumi.log.warn("""object is deprecated: The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
1517
|
-
|
1518
1516
|
return pulumi.get(self, "object")
|
1519
1517
|
|
1520
1518
|
@property
|
@@ -1628,10 +1626,8 @@ class GetReplicationPoliciesReplicationPolicyResult(dict):
|
|
1628
1626
|
|
1629
1627
|
@property
|
1630
1628
|
@pulumi.getter(name="deleteObjectInDestinationBucket")
|
1629
|
+
@_utilities.deprecated("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
1631
1630
|
def delete_object_in_destination_bucket(self) -> str:
|
1632
|
-
warnings.warn("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
1633
|
-
pulumi.log.warn("""delete_object_in_destination_bucket is deprecated: The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
1634
|
-
|
1635
1631
|
return pulumi.get(self, "delete_object_in_destination_bucket")
|
1636
1632
|
|
1637
1633
|
@property
|
@@ -131,13 +131,11 @@ class PreauthrequestArgs:
|
|
131
131
|
|
132
132
|
@property
|
133
133
|
@pulumi.getter
|
134
|
+
@_utilities.deprecated("""The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
134
135
|
def object(self) -> Optional[pulumi.Input[str]]:
|
135
136
|
"""
|
136
137
|
Deprecated. Instead use `object_name`. Requests that include both `object` and `object_name` will be rejected. (Optional) The name of the object that is being granted access to by the pre-authenticated request. Avoid entering confidential information. The object name can be null and if so, the pre-authenticated request grants access to the entire bucket if the access type allows that. The object name can be a prefix as well, in that case pre-authenticated request grants access to all the objects within the bucket starting with that prefix provided that we have the correct access type.
|
137
138
|
"""
|
138
|
-
warnings.warn("""The 'object' field has been deprecated. Please use 'object_name' instead.""", DeprecationWarning)
|
139
|
-
pulumi.log.warn("""object is deprecated: The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
140
|
-
|
141
139
|
return pulumi.get(self, "object")
|
142
140
|
|
143
141
|
@object.setter
|
@@ -305,13 +303,11 @@ class _PreauthrequestState:
|
|
305
303
|
|
306
304
|
@property
|
307
305
|
@pulumi.getter
|
306
|
+
@_utilities.deprecated("""The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
308
307
|
def object(self) -> Optional[pulumi.Input[str]]:
|
309
308
|
"""
|
310
309
|
Deprecated. Instead use `object_name`. Requests that include both `object` and `object_name` will be rejected. (Optional) The name of the object that is being granted access to by the pre-authenticated request. Avoid entering confidential information. The object name can be null and if so, the pre-authenticated request grants access to the entire bucket if the access type allows that. The object name can be a prefix as well, in that case pre-authenticated request grants access to all the objects within the bucket starting with that prefix provided that we have the correct access type.
|
311
310
|
"""
|
312
|
-
warnings.warn("""The 'object' field has been deprecated. Please use 'object_name' instead.""", DeprecationWarning)
|
313
|
-
pulumi.log.warn("""object is deprecated: The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
314
|
-
|
315
311
|
return pulumi.get(self, "object")
|
316
312
|
|
317
313
|
@object.setter
|
@@ -638,13 +634,11 @@ class Preauthrequest(pulumi.CustomResource):
|
|
638
634
|
|
639
635
|
@property
|
640
636
|
@pulumi.getter
|
637
|
+
@_utilities.deprecated("""The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
641
638
|
def object(self) -> pulumi.Output[str]:
|
642
639
|
"""
|
643
640
|
Deprecated. Instead use `object_name`. Requests that include both `object` and `object_name` will be rejected. (Optional) The name of the object that is being granted access to by the pre-authenticated request. Avoid entering confidential information. The object name can be null and if so, the pre-authenticated request grants access to the entire bucket if the access type allows that. The object name can be a prefix as well, in that case pre-authenticated request grants access to all the objects within the bucket starting with that prefix provided that we have the correct access type.
|
644
641
|
"""
|
645
|
-
warnings.warn("""The 'object' field has been deprecated. Please use 'object_name' instead.""", DeprecationWarning)
|
646
|
-
pulumi.log.warn("""object is deprecated: The 'object' field has been deprecated. Please use 'object_name' instead.""")
|
647
|
-
|
648
642
|
return pulumi.get(self, "object")
|
649
643
|
|
650
644
|
@property
|
@@ -98,10 +98,8 @@ class ReplicationPolicyArgs:
|
|
98
98
|
|
99
99
|
@property
|
100
100
|
@pulumi.getter(name="deleteObjectInDestinationBucket")
|
101
|
+
@_utilities.deprecated("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
101
102
|
def delete_object_in_destination_bucket(self) -> Optional[pulumi.Input[str]]:
|
102
|
-
warnings.warn("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
103
|
-
pulumi.log.warn("""delete_object_in_destination_bucket is deprecated: The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
104
|
-
|
105
103
|
return pulumi.get(self, "delete_object_in_destination_bucket")
|
106
104
|
|
107
105
|
@delete_object_in_destination_bucket.setter
|
@@ -188,10 +186,8 @@ class _ReplicationPolicyState:
|
|
188
186
|
|
189
187
|
@property
|
190
188
|
@pulumi.getter(name="deleteObjectInDestinationBucket")
|
189
|
+
@_utilities.deprecated("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
191
190
|
def delete_object_in_destination_bucket(self) -> Optional[pulumi.Input[str]]:
|
192
|
-
warnings.warn("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
193
|
-
pulumi.log.warn("""delete_object_in_destination_bucket is deprecated: The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
194
|
-
|
195
191
|
return pulumi.get(self, "delete_object_in_destination_bucket")
|
196
192
|
|
197
193
|
@delete_object_in_destination_bucket.setter
|
@@ -498,10 +494,8 @@ class ReplicationPolicy(pulumi.CustomResource):
|
|
498
494
|
|
499
495
|
@property
|
500
496
|
@pulumi.getter(name="deleteObjectInDestinationBucket")
|
497
|
+
@_utilities.deprecated("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
501
498
|
def delete_object_in_destination_bucket(self) -> pulumi.Output[Optional[str]]:
|
502
|
-
warnings.warn("""The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
503
|
-
pulumi.log.warn("""delete_object_in_destination_bucket is deprecated: The 'delete_object_in_destination_bucket' field has been deprecated. It is no longer supported.""")
|
504
|
-
|
505
499
|
return pulumi.get(self, "delete_object_in_destination_bucket")
|
506
500
|
|
507
501
|
@property
|