pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__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/__init__.py +8 -0
- pulumi_oci/database/autonomous_database.py +155 -14
- pulumi_oci/database/get_autonomous_database.py +41 -2
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +68 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
- pulumi_oci/databasemanagement/outputs.py +267 -75
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +4504 -0
- pulumi_oci/dataintegration/get_workspace_task.py +443 -0
- pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
- pulumi_oci/dataintegration/outputs.py +16511 -4723
- pulumi_oci/dataintegration/workspace_task.py +1364 -0
- pulumi_oci/devops/_inputs.py +18 -2
- pulumi_oci/devops/deploy_artifact.py +2 -0
- pulumi_oci/devops/deploy_stage.py +141 -0
- pulumi_oci/devops/get_deploy_stage.py +40 -1
- pulumi_oci/devops/outputs.py +75 -6
- pulumi_oci/logging/_inputs.py +2751 -187
- pulumi_oci/logging/outputs.py +4981 -768
- pulumi_oci/logging/unified_agent_configuration.py +34 -208
- pulumi_oci/monitoring/_inputs.py +136 -0
- pulumi_oci/monitoring/alarm.py +173 -0
- pulumi_oci/monitoring/get_alarm.py +40 -1
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +305 -0
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +41 -34
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
@@ -371,12 +371,14 @@ __all__ = [
|
|
371
371
|
'GetManagedMySqlDatabaseConfigurationDataFilterResult',
|
372
372
|
'GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionResult',
|
373
373
|
'GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionItemResult',
|
374
|
+
'GetManagedMySqlDatabaseHeatWaveNodeResult',
|
374
375
|
'GetManagedMySqlDatabaseSqlDataFilterResult',
|
375
376
|
'GetManagedMySqlDatabaseSqlDataMySqlDataCollectionResult',
|
376
377
|
'GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult',
|
377
378
|
'GetManagedMySqlDatabasesFilterResult',
|
378
379
|
'GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionResult',
|
379
380
|
'GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult',
|
381
|
+
'GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeResult',
|
380
382
|
'GetNamedCredentialContentResult',
|
381
383
|
'GetNamedCredentialsFilterResult',
|
382
384
|
'GetNamedCredentialsNamedCredentialCollectionResult',
|
@@ -26076,6 +26078,46 @@ class GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionIt
|
|
26076
26078
|
return pulumi.get(self, "value")
|
26077
26079
|
|
26078
26080
|
|
26081
|
+
@pulumi.output_type
|
26082
|
+
class GetManagedMySqlDatabaseHeatWaveNodeResult(dict):
|
26083
|
+
def __init__(__self__, *,
|
26084
|
+
id: str,
|
26085
|
+
status: str,
|
26086
|
+
time_created: str):
|
26087
|
+
"""
|
26088
|
+
:param str id: The ID associated with the HeatWave node.
|
26089
|
+
:param str status: The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
26090
|
+
:param str time_created: The date and time the node was created.
|
26091
|
+
"""
|
26092
|
+
pulumi.set(__self__, "id", id)
|
26093
|
+
pulumi.set(__self__, "status", status)
|
26094
|
+
pulumi.set(__self__, "time_created", time_created)
|
26095
|
+
|
26096
|
+
@property
|
26097
|
+
@pulumi.getter
|
26098
|
+
def id(self) -> str:
|
26099
|
+
"""
|
26100
|
+
The ID associated with the HeatWave node.
|
26101
|
+
"""
|
26102
|
+
return pulumi.get(self, "id")
|
26103
|
+
|
26104
|
+
@property
|
26105
|
+
@pulumi.getter
|
26106
|
+
def status(self) -> str:
|
26107
|
+
"""
|
26108
|
+
The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
26109
|
+
"""
|
26110
|
+
return pulumi.get(self, "status")
|
26111
|
+
|
26112
|
+
@property
|
26113
|
+
@pulumi.getter(name="timeCreated")
|
26114
|
+
def time_created(self) -> str:
|
26115
|
+
"""
|
26116
|
+
The date and time the node was created.
|
26117
|
+
"""
|
26118
|
+
return pulumi.get(self, "time_created")
|
26119
|
+
|
26120
|
+
|
26079
26121
|
@pulumi.output_type
|
26080
26122
|
class GetManagedMySqlDatabaseSqlDataFilterResult(dict):
|
26081
26123
|
def __init__(__self__, *,
|
@@ -26108,7 +26150,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionResult(dict):
|
|
26108
26150
|
def __init__(__self__, *,
|
26109
26151
|
items: Sequence['outputs.GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult']):
|
26110
26152
|
"""
|
26111
|
-
:param Sequence['GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemArgs'] items:
|
26153
|
+
:param Sequence['GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemArgs'] items: The list of SQLDataSummary records.
|
26112
26154
|
"""
|
26113
26155
|
pulumi.set(__self__, "items", items)
|
26114
26156
|
|
@@ -26116,7 +26158,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionResult(dict):
|
|
26116
26158
|
@pulumi.getter
|
26117
26159
|
def items(self) -> Sequence['outputs.GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult']:
|
26118
26160
|
"""
|
26119
|
-
|
26161
|
+
The list of SQLDataSummary records.
|
26120
26162
|
"""
|
26121
26163
|
return pulumi.get(self, "items")
|
26122
26164
|
|
@@ -26129,6 +26171,8 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26129
26171
|
digest: str,
|
26130
26172
|
digest_text: str,
|
26131
26173
|
first_seen: str,
|
26174
|
+
heat_wave_offloaded: float,
|
26175
|
+
heat_wave_out_of_memory: float,
|
26132
26176
|
last_seen: str,
|
26133
26177
|
max_timer_wait: float,
|
26134
26178
|
min_timer_wait: float,
|
@@ -26157,44 +26201,48 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26157
26201
|
sum_timer_wait: float,
|
26158
26202
|
sum_warnings: float):
|
26159
26203
|
"""
|
26160
|
-
:param float avg_timer_wait: The
|
26161
|
-
:param float count_star: The
|
26162
|
-
:param str digest: The
|
26163
|
-
:param str digest_text: The
|
26164
|
-
:param str first_seen:
|
26165
|
-
:param
|
26166
|
-
:param float
|
26167
|
-
:param
|
26168
|
-
:param float
|
26169
|
-
:param float
|
26170
|
-
:param float
|
26171
|
-
:param
|
26172
|
-
:param float
|
26173
|
-
:param
|
26174
|
-
:param float
|
26175
|
-
:param float
|
26176
|
-
:param float
|
26177
|
-
:param float
|
26178
|
-
:param float
|
26179
|
-
:param float
|
26180
|
-
:param float
|
26181
|
-
:param float
|
26182
|
-
:param float
|
26183
|
-
:param float
|
26184
|
-
:param float
|
26185
|
-
:param float
|
26186
|
-
:param float
|
26187
|
-
:param float
|
26188
|
-
:param float
|
26189
|
-
:param float
|
26190
|
-
:param float
|
26191
|
-
:param float
|
26204
|
+
:param float avg_timer_wait: The average execution time.
|
26205
|
+
:param float count_star: The number Of times the query has been executed.
|
26206
|
+
:param str digest: The digest information of the normalized query.
|
26207
|
+
:param str digest_text: The normalized query.
|
26208
|
+
:param str first_seen: The date and time the query was first seen. If the table is truncated, the first seen value is reset.
|
26209
|
+
:param float heat_wave_offloaded: The number of query executions offloaded to HeatWave.
|
26210
|
+
:param float heat_wave_out_of_memory: The number of query executions with HeatWave out-of-memory errors.
|
26211
|
+
:param str last_seen: The date and time the query was last seen.
|
26212
|
+
:param float max_timer_wait: The slowest the query has been executed.
|
26213
|
+
:param float min_timer_wait: The fastest the query has been executed.
|
26214
|
+
:param float quantile95: The 95th percentile of the query latency. That is, 95%!o(MISSING)f the queries complete in the time given or in less time.
|
26215
|
+
:param float quantile99: The 99th percentile of the query latency.
|
26216
|
+
:param float quantile999: The 99.9th percentile of the query latency.
|
26217
|
+
:param str schema_name: The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
|
26218
|
+
:param float sum_created_temp_disk_tables: The total number of On-Disk internal temporary tables that have been created by the query.
|
26219
|
+
:param float sum_created_temp_tables: The total number of internal temporary tables (in memory or on disk), which have been created by the query.
|
26220
|
+
:param float sum_errors: The total number of errors that have been encountered executing the query.
|
26221
|
+
:param float sum_lock_time: The total amount of time that has been spent waiting for table locks.
|
26222
|
+
:param float sum_no_good_index_used: The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
|
26223
|
+
:param float sum_no_index_used: The total number of times no index was used to execute the query.
|
26224
|
+
:param float sum_rows_affected: The total number of rows that have been modified by the query.
|
26225
|
+
:param float sum_rows_examined: The total number of rows that have been examined by the query.
|
26226
|
+
:param float sum_rows_sent: The total number of rows that have been returned (sent) to the client.
|
26227
|
+
:param float sum_select_full_join: The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
|
26228
|
+
:param float sum_select_full_range_join: The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
|
26229
|
+
:param float sum_select_range: The total number of times the query has used a range search. This is the same as the select_range status variable.
|
26230
|
+
:param float sum_select_range_check: The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
|
26231
|
+
:param float sum_select_scan: The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
|
26232
|
+
:param float sum_sort_merge_passes: The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
|
26233
|
+
:param float sum_sort_range: The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
|
26234
|
+
:param float sum_sort_rows: The total number of rows sorted. This is the same as the sort_rowsStatus variable.
|
26235
|
+
:param float sum_sort_scan: The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
|
26236
|
+
:param float sum_timer_wait: The total amount of time that has been spent executing the query.
|
26237
|
+
:param float sum_warnings: The total number of warnings that have been encountered executing the query.
|
26192
26238
|
"""
|
26193
26239
|
pulumi.set(__self__, "avg_timer_wait", avg_timer_wait)
|
26194
26240
|
pulumi.set(__self__, "count_star", count_star)
|
26195
26241
|
pulumi.set(__self__, "digest", digest)
|
26196
26242
|
pulumi.set(__self__, "digest_text", digest_text)
|
26197
26243
|
pulumi.set(__self__, "first_seen", first_seen)
|
26244
|
+
pulumi.set(__self__, "heat_wave_offloaded", heat_wave_offloaded)
|
26245
|
+
pulumi.set(__self__, "heat_wave_out_of_memory", heat_wave_out_of_memory)
|
26198
26246
|
pulumi.set(__self__, "last_seen", last_seen)
|
26199
26247
|
pulumi.set(__self__, "max_timer_wait", max_timer_wait)
|
26200
26248
|
pulumi.set(__self__, "min_timer_wait", min_timer_wait)
|
@@ -26227,7 +26275,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26227
26275
|
@pulumi.getter(name="avgTimerWait")
|
26228
26276
|
def avg_timer_wait(self) -> float:
|
26229
26277
|
"""
|
26230
|
-
The
|
26278
|
+
The average execution time.
|
26231
26279
|
"""
|
26232
26280
|
return pulumi.get(self, "avg_timer_wait")
|
26233
26281
|
|
@@ -26235,7 +26283,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26235
26283
|
@pulumi.getter(name="countStar")
|
26236
26284
|
def count_star(self) -> float:
|
26237
26285
|
"""
|
26238
|
-
The
|
26286
|
+
The number Of times the query has been executed.
|
26239
26287
|
"""
|
26240
26288
|
return pulumi.get(self, "count_star")
|
26241
26289
|
|
@@ -26243,7 +26291,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26243
26291
|
@pulumi.getter
|
26244
26292
|
def digest(self) -> str:
|
26245
26293
|
"""
|
26246
|
-
The
|
26294
|
+
The digest information of the normalized query.
|
26247
26295
|
"""
|
26248
26296
|
return pulumi.get(self, "digest")
|
26249
26297
|
|
@@ -26251,7 +26299,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26251
26299
|
@pulumi.getter(name="digestText")
|
26252
26300
|
def digest_text(self) -> str:
|
26253
26301
|
"""
|
26254
|
-
The
|
26302
|
+
The normalized query.
|
26255
26303
|
"""
|
26256
26304
|
return pulumi.get(self, "digest_text")
|
26257
26305
|
|
@@ -26259,15 +26307,31 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26259
26307
|
@pulumi.getter(name="firstSeen")
|
26260
26308
|
def first_seen(self) -> str:
|
26261
26309
|
"""
|
26262
|
-
|
26310
|
+
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
|
26263
26311
|
"""
|
26264
26312
|
return pulumi.get(self, "first_seen")
|
26265
26313
|
|
26314
|
+
@property
|
26315
|
+
@pulumi.getter(name="heatWaveOffloaded")
|
26316
|
+
def heat_wave_offloaded(self) -> float:
|
26317
|
+
"""
|
26318
|
+
The number of query executions offloaded to HeatWave.
|
26319
|
+
"""
|
26320
|
+
return pulumi.get(self, "heat_wave_offloaded")
|
26321
|
+
|
26322
|
+
@property
|
26323
|
+
@pulumi.getter(name="heatWaveOutOfMemory")
|
26324
|
+
def heat_wave_out_of_memory(self) -> float:
|
26325
|
+
"""
|
26326
|
+
The number of query executions with HeatWave out-of-memory errors.
|
26327
|
+
"""
|
26328
|
+
return pulumi.get(self, "heat_wave_out_of_memory")
|
26329
|
+
|
26266
26330
|
@property
|
26267
26331
|
@pulumi.getter(name="lastSeen")
|
26268
26332
|
def last_seen(self) -> str:
|
26269
26333
|
"""
|
26270
|
-
|
26334
|
+
The date and time the query was last seen.
|
26271
26335
|
"""
|
26272
26336
|
return pulumi.get(self, "last_seen")
|
26273
26337
|
|
@@ -26275,7 +26339,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26275
26339
|
@pulumi.getter(name="maxTimerWait")
|
26276
26340
|
def max_timer_wait(self) -> float:
|
26277
26341
|
"""
|
26278
|
-
The
|
26342
|
+
The slowest the query has been executed.
|
26279
26343
|
"""
|
26280
26344
|
return pulumi.get(self, "max_timer_wait")
|
26281
26345
|
|
@@ -26283,7 +26347,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26283
26347
|
@pulumi.getter(name="minTimerWait")
|
26284
26348
|
def min_timer_wait(self) -> float:
|
26285
26349
|
"""
|
26286
|
-
The
|
26350
|
+
The fastest the query has been executed.
|
26287
26351
|
"""
|
26288
26352
|
return pulumi.get(self, "min_timer_wait")
|
26289
26353
|
|
@@ -26291,7 +26355,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26291
26355
|
@pulumi.getter
|
26292
26356
|
def quantile95(self) -> float:
|
26293
26357
|
"""
|
26294
|
-
The 95th
|
26358
|
+
The 95th percentile of the query latency. That is, 95%!o(MISSING)f the queries complete in the time given or in less time.
|
26295
26359
|
"""
|
26296
26360
|
return pulumi.get(self, "quantile95")
|
26297
26361
|
|
@@ -26299,7 +26363,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26299
26363
|
@pulumi.getter
|
26300
26364
|
def quantile99(self) -> float:
|
26301
26365
|
"""
|
26302
|
-
The 99th
|
26366
|
+
The 99th percentile of the query latency.
|
26303
26367
|
"""
|
26304
26368
|
return pulumi.get(self, "quantile99")
|
26305
26369
|
|
@@ -26307,7 +26371,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26307
26371
|
@pulumi.getter
|
26308
26372
|
def quantile999(self) -> float:
|
26309
26373
|
"""
|
26310
|
-
The 99.9th
|
26374
|
+
The 99.9th percentile of the query latency.
|
26311
26375
|
"""
|
26312
26376
|
return pulumi.get(self, "quantile999")
|
26313
26377
|
|
@@ -26315,7 +26379,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26315
26379
|
@pulumi.getter(name="schemaName")
|
26316
26380
|
def schema_name(self) -> str:
|
26317
26381
|
"""
|
26318
|
-
The
|
26382
|
+
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
|
26319
26383
|
"""
|
26320
26384
|
return pulumi.get(self, "schema_name")
|
26321
26385
|
|
@@ -26323,7 +26387,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26323
26387
|
@pulumi.getter(name="sumCreatedTempDiskTables")
|
26324
26388
|
def sum_created_temp_disk_tables(self) -> float:
|
26325
26389
|
"""
|
26326
|
-
The
|
26390
|
+
The total number of On-Disk internal temporary tables that have been created by the query.
|
26327
26391
|
"""
|
26328
26392
|
return pulumi.get(self, "sum_created_temp_disk_tables")
|
26329
26393
|
|
@@ -26331,7 +26395,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26331
26395
|
@pulumi.getter(name="sumCreatedTempTables")
|
26332
26396
|
def sum_created_temp_tables(self) -> float:
|
26333
26397
|
"""
|
26334
|
-
The
|
26398
|
+
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
|
26335
26399
|
"""
|
26336
26400
|
return pulumi.get(self, "sum_created_temp_tables")
|
26337
26401
|
|
@@ -26339,7 +26403,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26339
26403
|
@pulumi.getter(name="sumErrors")
|
26340
26404
|
def sum_errors(self) -> float:
|
26341
26405
|
"""
|
26342
|
-
The
|
26406
|
+
The total number of errors that have been encountered executing the query.
|
26343
26407
|
"""
|
26344
26408
|
return pulumi.get(self, "sum_errors")
|
26345
26409
|
|
@@ -26347,7 +26411,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26347
26411
|
@pulumi.getter(name="sumLockTime")
|
26348
26412
|
def sum_lock_time(self) -> float:
|
26349
26413
|
"""
|
26350
|
-
The
|
26414
|
+
The total amount of time that has been spent waiting for table locks.
|
26351
26415
|
"""
|
26352
26416
|
return pulumi.get(self, "sum_lock_time")
|
26353
26417
|
|
@@ -26355,7 +26419,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26355
26419
|
@pulumi.getter(name="sumNoGoodIndexUsed")
|
26356
26420
|
def sum_no_good_index_used(self) -> float:
|
26357
26421
|
"""
|
26358
|
-
The
|
26422
|
+
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
|
26359
26423
|
"""
|
26360
26424
|
return pulumi.get(self, "sum_no_good_index_used")
|
26361
26425
|
|
@@ -26363,7 +26427,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26363
26427
|
@pulumi.getter(name="sumNoIndexUsed")
|
26364
26428
|
def sum_no_index_used(self) -> float:
|
26365
26429
|
"""
|
26366
|
-
The
|
26430
|
+
The total number of times no index was used to execute the query.
|
26367
26431
|
"""
|
26368
26432
|
return pulumi.get(self, "sum_no_index_used")
|
26369
26433
|
|
@@ -26371,7 +26435,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26371
26435
|
@pulumi.getter(name="sumRowsAffected")
|
26372
26436
|
def sum_rows_affected(self) -> float:
|
26373
26437
|
"""
|
26374
|
-
The
|
26438
|
+
The total number of rows that have been modified by the query.
|
26375
26439
|
"""
|
26376
26440
|
return pulumi.get(self, "sum_rows_affected")
|
26377
26441
|
|
@@ -26379,7 +26443,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26379
26443
|
@pulumi.getter(name="sumRowsExamined")
|
26380
26444
|
def sum_rows_examined(self) -> float:
|
26381
26445
|
"""
|
26382
|
-
The
|
26446
|
+
The total number of rows that have been examined by the query.
|
26383
26447
|
"""
|
26384
26448
|
return pulumi.get(self, "sum_rows_examined")
|
26385
26449
|
|
@@ -26387,7 +26451,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26387
26451
|
@pulumi.getter(name="sumRowsSent")
|
26388
26452
|
def sum_rows_sent(self) -> float:
|
26389
26453
|
"""
|
26390
|
-
The
|
26454
|
+
The total number of rows that have been returned (sent) to the client.
|
26391
26455
|
"""
|
26392
26456
|
return pulumi.get(self, "sum_rows_sent")
|
26393
26457
|
|
@@ -26395,7 +26459,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26395
26459
|
@pulumi.getter(name="sumSelectFullJoin")
|
26396
26460
|
def sum_select_full_join(self) -> float:
|
26397
26461
|
"""
|
26398
|
-
The
|
26462
|
+
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
|
26399
26463
|
"""
|
26400
26464
|
return pulumi.get(self, "sum_select_full_join")
|
26401
26465
|
|
@@ -26403,7 +26467,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26403
26467
|
@pulumi.getter(name="sumSelectFullRangeJoin")
|
26404
26468
|
def sum_select_full_range_join(self) -> float:
|
26405
26469
|
"""
|
26406
|
-
The
|
26470
|
+
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
|
26407
26471
|
"""
|
26408
26472
|
return pulumi.get(self, "sum_select_full_range_join")
|
26409
26473
|
|
@@ -26411,7 +26475,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26411
26475
|
@pulumi.getter(name="sumSelectRange")
|
26412
26476
|
def sum_select_range(self) -> float:
|
26413
26477
|
"""
|
26414
|
-
The
|
26478
|
+
The total number of times the query has used a range search. This is the same as the select_range status variable.
|
26415
26479
|
"""
|
26416
26480
|
return pulumi.get(self, "sum_select_range")
|
26417
26481
|
|
@@ -26419,7 +26483,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26419
26483
|
@pulumi.getter(name="sumSelectRangeCheck")
|
26420
26484
|
def sum_select_range_check(self) -> float:
|
26421
26485
|
"""
|
26422
|
-
The
|
26486
|
+
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
|
26423
26487
|
"""
|
26424
26488
|
return pulumi.get(self, "sum_select_range_check")
|
26425
26489
|
|
@@ -26427,7 +26491,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26427
26491
|
@pulumi.getter(name="sumSelectScan")
|
26428
26492
|
def sum_select_scan(self) -> float:
|
26429
26493
|
"""
|
26430
|
-
The
|
26494
|
+
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
|
26431
26495
|
"""
|
26432
26496
|
return pulumi.get(self, "sum_select_scan")
|
26433
26497
|
|
@@ -26435,7 +26499,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26435
26499
|
@pulumi.getter(name="sumSortMergePasses")
|
26436
26500
|
def sum_sort_merge_passes(self) -> float:
|
26437
26501
|
"""
|
26438
|
-
The
|
26502
|
+
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
|
26439
26503
|
"""
|
26440
26504
|
return pulumi.get(self, "sum_sort_merge_passes")
|
26441
26505
|
|
@@ -26443,7 +26507,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26443
26507
|
@pulumi.getter(name="sumSortRange")
|
26444
26508
|
def sum_sort_range(self) -> float:
|
26445
26509
|
"""
|
26446
|
-
The
|
26510
|
+
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
|
26447
26511
|
"""
|
26448
26512
|
return pulumi.get(self, "sum_sort_range")
|
26449
26513
|
|
@@ -26451,7 +26515,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26451
26515
|
@pulumi.getter(name="sumSortRows")
|
26452
26516
|
def sum_sort_rows(self) -> float:
|
26453
26517
|
"""
|
26454
|
-
The
|
26518
|
+
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
|
26455
26519
|
"""
|
26456
26520
|
return pulumi.get(self, "sum_sort_rows")
|
26457
26521
|
|
@@ -26459,7 +26523,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26459
26523
|
@pulumi.getter(name="sumSortScan")
|
26460
26524
|
def sum_sort_scan(self) -> float:
|
26461
26525
|
"""
|
26462
|
-
The
|
26526
|
+
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
|
26463
26527
|
"""
|
26464
26528
|
return pulumi.get(self, "sum_sort_scan")
|
26465
26529
|
|
@@ -26467,7 +26531,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26467
26531
|
@pulumi.getter(name="sumTimerWait")
|
26468
26532
|
def sum_timer_wait(self) -> float:
|
26469
26533
|
"""
|
26470
|
-
The
|
26534
|
+
The total amount of time that has been spent executing the query.
|
26471
26535
|
"""
|
26472
26536
|
return pulumi.get(self, "sum_timer_wait")
|
26473
26537
|
|
@@ -26475,7 +26539,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
|
|
26475
26539
|
@pulumi.getter(name="sumWarnings")
|
26476
26540
|
def sum_warnings(self) -> float:
|
26477
26541
|
"""
|
26478
|
-
The
|
26542
|
+
The total number of warnings that have been encountered executing the query.
|
26479
26543
|
"""
|
26480
26544
|
return pulumi.get(self, "sum_warnings")
|
26481
26545
|
|
@@ -26531,23 +26595,47 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
26531
26595
|
compartment_id: str,
|
26532
26596
|
db_name: str,
|
26533
26597
|
db_version: str,
|
26598
|
+
heat_wave_cluster_display_name: str,
|
26599
|
+
heat_wave_memory_size: int,
|
26600
|
+
heat_wave_node_shape: str,
|
26601
|
+
heat_wave_nodes: Sequence['outputs.GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeResult'],
|
26534
26602
|
id: str,
|
26603
|
+
is_heat_wave_active: bool,
|
26604
|
+
is_heat_wave_enabled: bool,
|
26605
|
+
is_lakehouse_enabled: bool,
|
26535
26606
|
name: str,
|
26536
|
-
time_created: str
|
26607
|
+
time_created: str,
|
26608
|
+
time_created_heat_wave: str):
|
26537
26609
|
"""
|
26538
26610
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
26539
|
-
:param str db_name: MySQL Database
|
26540
|
-
:param str db_version: MySQL Database
|
26541
|
-
:param str
|
26611
|
+
:param str db_name: The name of the MySQL Database.
|
26612
|
+
:param str db_version: The version of the MySQL Database.
|
26613
|
+
:param str heat_wave_cluster_display_name: The name of the HeatWave cluster.
|
26614
|
+
:param int heat_wave_memory_size: The total memory belonging to the HeatWave cluster in GBs.
|
26615
|
+
:param str heat_wave_node_shape: Shape of the nodes in the HeatWave cluster.
|
26616
|
+
:param Sequence['GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeArgs'] heat_wave_nodes: The information about an individual HeatWave nodes in the cluster.
|
26617
|
+
:param str id: The ID associated with the HeatWave node.
|
26618
|
+
:param bool is_heat_wave_active: If the HeatWave cluster is active or not.
|
26619
|
+
:param bool is_heat_wave_enabled: If HeatWave is enabled for this db system or not.
|
26620
|
+
:param bool is_lakehouse_enabled: If HeatWave Lakehouse is enabled for the db system or not.
|
26542
26621
|
:param str name: The name of the Managed MySQL Database.
|
26543
|
-
:param str time_created: The date and time the
|
26622
|
+
:param str time_created: The date and time the node was created.
|
26623
|
+
:param str time_created_heat_wave: The date and time the Managed MySQL Database was created.
|
26544
26624
|
"""
|
26545
26625
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
26546
26626
|
pulumi.set(__self__, "db_name", db_name)
|
26547
26627
|
pulumi.set(__self__, "db_version", db_version)
|
26628
|
+
pulumi.set(__self__, "heat_wave_cluster_display_name", heat_wave_cluster_display_name)
|
26629
|
+
pulumi.set(__self__, "heat_wave_memory_size", heat_wave_memory_size)
|
26630
|
+
pulumi.set(__self__, "heat_wave_node_shape", heat_wave_node_shape)
|
26631
|
+
pulumi.set(__self__, "heat_wave_nodes", heat_wave_nodes)
|
26548
26632
|
pulumi.set(__self__, "id", id)
|
26633
|
+
pulumi.set(__self__, "is_heat_wave_active", is_heat_wave_active)
|
26634
|
+
pulumi.set(__self__, "is_heat_wave_enabled", is_heat_wave_enabled)
|
26635
|
+
pulumi.set(__self__, "is_lakehouse_enabled", is_lakehouse_enabled)
|
26549
26636
|
pulumi.set(__self__, "name", name)
|
26550
26637
|
pulumi.set(__self__, "time_created", time_created)
|
26638
|
+
pulumi.set(__self__, "time_created_heat_wave", time_created_heat_wave)
|
26551
26639
|
|
26552
26640
|
@property
|
26553
26641
|
@pulumi.getter(name="compartmentId")
|
@@ -26561,7 +26649,7 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
26561
26649
|
@pulumi.getter(name="dbName")
|
26562
26650
|
def db_name(self) -> str:
|
26563
26651
|
"""
|
26564
|
-
MySQL Database
|
26652
|
+
The name of the MySQL Database.
|
26565
26653
|
"""
|
26566
26654
|
return pulumi.get(self, "db_name")
|
26567
26655
|
|
@@ -26569,18 +26657,74 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
26569
26657
|
@pulumi.getter(name="dbVersion")
|
26570
26658
|
def db_version(self) -> str:
|
26571
26659
|
"""
|
26572
|
-
MySQL Database
|
26660
|
+
The version of the MySQL Database.
|
26573
26661
|
"""
|
26574
26662
|
return pulumi.get(self, "db_version")
|
26575
26663
|
|
26664
|
+
@property
|
26665
|
+
@pulumi.getter(name="heatWaveClusterDisplayName")
|
26666
|
+
def heat_wave_cluster_display_name(self) -> str:
|
26667
|
+
"""
|
26668
|
+
The name of the HeatWave cluster.
|
26669
|
+
"""
|
26670
|
+
return pulumi.get(self, "heat_wave_cluster_display_name")
|
26671
|
+
|
26672
|
+
@property
|
26673
|
+
@pulumi.getter(name="heatWaveMemorySize")
|
26674
|
+
def heat_wave_memory_size(self) -> int:
|
26675
|
+
"""
|
26676
|
+
The total memory belonging to the HeatWave cluster in GBs.
|
26677
|
+
"""
|
26678
|
+
return pulumi.get(self, "heat_wave_memory_size")
|
26679
|
+
|
26680
|
+
@property
|
26681
|
+
@pulumi.getter(name="heatWaveNodeShape")
|
26682
|
+
def heat_wave_node_shape(self) -> str:
|
26683
|
+
"""
|
26684
|
+
Shape of the nodes in the HeatWave cluster.
|
26685
|
+
"""
|
26686
|
+
return pulumi.get(self, "heat_wave_node_shape")
|
26687
|
+
|
26688
|
+
@property
|
26689
|
+
@pulumi.getter(name="heatWaveNodes")
|
26690
|
+
def heat_wave_nodes(self) -> Sequence['outputs.GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeResult']:
|
26691
|
+
"""
|
26692
|
+
The information about an individual HeatWave nodes in the cluster.
|
26693
|
+
"""
|
26694
|
+
return pulumi.get(self, "heat_wave_nodes")
|
26695
|
+
|
26576
26696
|
@property
|
26577
26697
|
@pulumi.getter
|
26578
26698
|
def id(self) -> str:
|
26579
26699
|
"""
|
26580
|
-
The
|
26700
|
+
The ID associated with the HeatWave node.
|
26581
26701
|
"""
|
26582
26702
|
return pulumi.get(self, "id")
|
26583
26703
|
|
26704
|
+
@property
|
26705
|
+
@pulumi.getter(name="isHeatWaveActive")
|
26706
|
+
def is_heat_wave_active(self) -> bool:
|
26707
|
+
"""
|
26708
|
+
If the HeatWave cluster is active or not.
|
26709
|
+
"""
|
26710
|
+
return pulumi.get(self, "is_heat_wave_active")
|
26711
|
+
|
26712
|
+
@property
|
26713
|
+
@pulumi.getter(name="isHeatWaveEnabled")
|
26714
|
+
def is_heat_wave_enabled(self) -> bool:
|
26715
|
+
"""
|
26716
|
+
If HeatWave is enabled for this db system or not.
|
26717
|
+
"""
|
26718
|
+
return pulumi.get(self, "is_heat_wave_enabled")
|
26719
|
+
|
26720
|
+
@property
|
26721
|
+
@pulumi.getter(name="isLakehouseEnabled")
|
26722
|
+
def is_lakehouse_enabled(self) -> bool:
|
26723
|
+
"""
|
26724
|
+
If HeatWave Lakehouse is enabled for the db system or not.
|
26725
|
+
"""
|
26726
|
+
return pulumi.get(self, "is_lakehouse_enabled")
|
26727
|
+
|
26584
26728
|
@property
|
26585
26729
|
@pulumi.getter
|
26586
26730
|
def name(self) -> str:
|
@@ -26593,7 +26737,55 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
26593
26737
|
@pulumi.getter(name="timeCreated")
|
26594
26738
|
def time_created(self) -> str:
|
26595
26739
|
"""
|
26596
|
-
The date and time the
|
26740
|
+
The date and time the node was created.
|
26741
|
+
"""
|
26742
|
+
return pulumi.get(self, "time_created")
|
26743
|
+
|
26744
|
+
@property
|
26745
|
+
@pulumi.getter(name="timeCreatedHeatWave")
|
26746
|
+
def time_created_heat_wave(self) -> str:
|
26747
|
+
"""
|
26748
|
+
The date and time the Managed MySQL Database was created.
|
26749
|
+
"""
|
26750
|
+
return pulumi.get(self, "time_created_heat_wave")
|
26751
|
+
|
26752
|
+
|
26753
|
+
@pulumi.output_type
|
26754
|
+
class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeResult(dict):
|
26755
|
+
def __init__(__self__, *,
|
26756
|
+
id: str,
|
26757
|
+
status: str,
|
26758
|
+
time_created: str):
|
26759
|
+
"""
|
26760
|
+
:param str id: The ID associated with the HeatWave node.
|
26761
|
+
:param str status: The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
26762
|
+
:param str time_created: The date and time the node was created.
|
26763
|
+
"""
|
26764
|
+
pulumi.set(__self__, "id", id)
|
26765
|
+
pulumi.set(__self__, "status", status)
|
26766
|
+
pulumi.set(__self__, "time_created", time_created)
|
26767
|
+
|
26768
|
+
@property
|
26769
|
+
@pulumi.getter
|
26770
|
+
def id(self) -> str:
|
26771
|
+
"""
|
26772
|
+
The ID associated with the HeatWave node.
|
26773
|
+
"""
|
26774
|
+
return pulumi.get(self, "id")
|
26775
|
+
|
26776
|
+
@property
|
26777
|
+
@pulumi.getter
|
26778
|
+
def status(self) -> str:
|
26779
|
+
"""
|
26780
|
+
The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
26781
|
+
"""
|
26782
|
+
return pulumi.get(self, "status")
|
26783
|
+
|
26784
|
+
@property
|
26785
|
+
@pulumi.getter(name="timeCreated")
|
26786
|
+
def time_created(self) -> str:
|
26787
|
+
"""
|
26788
|
+
The date and time the node was created.
|
26597
26789
|
"""
|
26598
26790
|
return pulumi.get(self, "time_created")
|
26599
26791
|
|