pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.0__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/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +6 -6
- pulumi_oci/database/_inputs.py +49 -1
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +128 -4
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +749 -0
- pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
- pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
- pulumi_oci/dataintegration/outputs.py +2826 -912
- pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
- pulumi_oci/datascience/_inputs.py +204 -0
- pulumi_oci/datascience/get_job.py +14 -1
- pulumi_oci/datascience/get_job_run.py +14 -1
- pulumi_oci/datascience/get_model_version_set.py +14 -1
- pulumi_oci/datascience/get_private_endpoint.py +14 -1
- pulumi_oci/datascience/get_project.py +14 -1
- pulumi_oci/datascience/job.py +63 -0
- pulumi_oci/datascience/job_run.py +63 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +549 -0
- pulumi_oci/datascience/private_endpoint.py +28 -0
- pulumi_oci/datascience/project.py +28 -0
- pulumi_oci/loganalytics/_inputs.py +80 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
- pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
- pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
- pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
- pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
- pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
- pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
- pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
- pulumi_oci/loganalytics/outputs.py +271 -4
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +40 -37
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -2358,6 +2358,12 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2358
2358
|
suggest = None
|
2359
2359
|
if key == "disasterRecoveryType":
|
2360
2360
|
suggest = "disaster_recovery_type"
|
2361
|
+
elif key == "isReplicateAutomaticBackups":
|
2362
|
+
suggest = "is_replicate_automatic_backups"
|
2363
|
+
elif key == "isSnapshotStandby":
|
2364
|
+
suggest = "is_snapshot_standby"
|
2365
|
+
elif key == "timeSnapshotStandbyEnabledTill":
|
2366
|
+
suggest = "time_snapshot_standby_enabled_till"
|
2361
2367
|
|
2362
2368
|
if suggest:
|
2363
2369
|
pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseRemoteDisasterRecoveryConfiguration. Access the value via the '{suggest}' property getter instead.")
|
@@ -2371,12 +2377,24 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2371
2377
|
return super().get(key, default)
|
2372
2378
|
|
2373
2379
|
def __init__(__self__, *,
|
2374
|
-
disaster_recovery_type: Optional[str] = None
|
2380
|
+
disaster_recovery_type: Optional[str] = None,
|
2381
|
+
is_replicate_automatic_backups: Optional[bool] = None,
|
2382
|
+
is_snapshot_standby: Optional[bool] = None,
|
2383
|
+
time_snapshot_standby_enabled_till: Optional[str] = None):
|
2375
2384
|
"""
|
2376
2385
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
2386
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2387
|
+
:param bool is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2388
|
+
:param str time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2377
2389
|
"""
|
2378
2390
|
if disaster_recovery_type is not None:
|
2379
2391
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
2392
|
+
if is_replicate_automatic_backups is not None:
|
2393
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
2394
|
+
if is_snapshot_standby is not None:
|
2395
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
2396
|
+
if time_snapshot_standby_enabled_till is not None:
|
2397
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
2380
2398
|
|
2381
2399
|
@property
|
2382
2400
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -2386,6 +2404,30 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2386
2404
|
"""
|
2387
2405
|
return pulumi.get(self, "disaster_recovery_type")
|
2388
2406
|
|
2407
|
+
@property
|
2408
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
2409
|
+
def is_replicate_automatic_backups(self) -> Optional[bool]:
|
2410
|
+
"""
|
2411
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2412
|
+
"""
|
2413
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
2414
|
+
|
2415
|
+
@property
|
2416
|
+
@pulumi.getter(name="isSnapshotStandby")
|
2417
|
+
def is_snapshot_standby(self) -> Optional[bool]:
|
2418
|
+
"""
|
2419
|
+
Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2420
|
+
"""
|
2421
|
+
return pulumi.get(self, "is_snapshot_standby")
|
2422
|
+
|
2423
|
+
@property
|
2424
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
2425
|
+
def time_snapshot_standby_enabled_till(self) -> Optional[str]:
|
2426
|
+
"""
|
2427
|
+
Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2428
|
+
"""
|
2429
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
2430
|
+
|
2389
2431
|
|
2390
2432
|
@pulumi.output_type
|
2391
2433
|
class AutonomousDatabaseResourcePoolSummary(dict):
|
@@ -15219,11 +15261,18 @@ class GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionItemResult
|
|
15219
15261
|
@pulumi.output_type
|
15220
15262
|
class GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
15221
15263
|
def __init__(__self__, *,
|
15222
|
-
disaster_recovery_type: str
|
15264
|
+
disaster_recovery_type: str,
|
15265
|
+
is_replicate_automatic_backups: bool,
|
15266
|
+
is_snapshot_standby: bool,
|
15267
|
+
time_snapshot_standby_enabled_till: str):
|
15223
15268
|
"""
|
15224
15269
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
15270
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15225
15271
|
"""
|
15226
15272
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
15273
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
15274
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
15275
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
15227
15276
|
|
15228
15277
|
@property
|
15229
15278
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -15233,6 +15282,24 @@ class GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
|
15233
15282
|
"""
|
15234
15283
|
return pulumi.get(self, "disaster_recovery_type")
|
15235
15284
|
|
15285
|
+
@property
|
15286
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
15287
|
+
def is_replicate_automatic_backups(self) -> bool:
|
15288
|
+
"""
|
15289
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15290
|
+
"""
|
15291
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
15292
|
+
|
15293
|
+
@property
|
15294
|
+
@pulumi.getter(name="isSnapshotStandby")
|
15295
|
+
def is_snapshot_standby(self) -> bool:
|
15296
|
+
return pulumi.get(self, "is_snapshot_standby")
|
15297
|
+
|
15298
|
+
@property
|
15299
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
15300
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
15301
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
15302
|
+
|
15236
15303
|
|
15237
15304
|
@pulumi.output_type
|
15238
15305
|
class GetAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -15439,6 +15506,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15439
15506
|
is_reconnect_clone_enabled: bool,
|
15440
15507
|
is_refreshable_clone: bool,
|
15441
15508
|
is_remote_data_guard_enabled: bool,
|
15509
|
+
is_replicate_automatic_backups: bool,
|
15442
15510
|
is_shrink_only: bool,
|
15443
15511
|
key_history_entries: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult'],
|
15444
15512
|
key_store_id: str,
|
@@ -15560,6 +15628,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15560
15628
|
:param bool is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
|
15561
15629
|
:param bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
|
15562
15630
|
:param bool is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
15631
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15563
15632
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryArgs'] key_history_entries: Key History Entry.
|
15564
15633
|
:param str key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
15565
15634
|
:param str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
@@ -15676,6 +15745,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15676
15745
|
pulumi.set(__self__, "is_reconnect_clone_enabled", is_reconnect_clone_enabled)
|
15677
15746
|
pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
|
15678
15747
|
pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
|
15748
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
15679
15749
|
pulumi.set(__self__, "is_shrink_only", is_shrink_only)
|
15680
15750
|
pulumi.set(__self__, "key_history_entries", key_history_entries)
|
15681
15751
|
pulumi.set(__self__, "key_store_id", key_store_id)
|
@@ -16158,6 +16228,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16158
16228
|
"""
|
16159
16229
|
return pulumi.get(self, "is_remote_data_guard_enabled")
|
16160
16230
|
|
16231
|
+
@property
|
16232
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
16233
|
+
def is_replicate_automatic_backups(self) -> bool:
|
16234
|
+
"""
|
16235
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
16236
|
+
"""
|
16237
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
16238
|
+
|
16161
16239
|
@property
|
16162
16240
|
@pulumi.getter(name="isShrinkOnly")
|
16163
16241
|
def is_shrink_only(self) -> bool:
|
@@ -17274,11 +17352,18 @@ class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict)
|
|
17274
17352
|
@pulumi.output_type
|
17275
17353
|
class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
17276
17354
|
def __init__(__self__, *,
|
17277
|
-
disaster_recovery_type: str
|
17355
|
+
disaster_recovery_type: str,
|
17356
|
+
is_replicate_automatic_backups: bool,
|
17357
|
+
is_snapshot_standby: bool,
|
17358
|
+
time_snapshot_standby_enabled_till: str):
|
17278
17359
|
"""
|
17279
17360
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
17361
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
17280
17362
|
"""
|
17281
17363
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
17364
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
17365
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
17366
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
17282
17367
|
|
17283
17368
|
@property
|
17284
17369
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -17288,6 +17373,24 @@ class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfiguratio
|
|
17288
17373
|
"""
|
17289
17374
|
return pulumi.get(self, "disaster_recovery_type")
|
17290
17375
|
|
17376
|
+
@property
|
17377
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
17378
|
+
def is_replicate_automatic_backups(self) -> bool:
|
17379
|
+
"""
|
17380
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
17381
|
+
"""
|
17382
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
17383
|
+
|
17384
|
+
@property
|
17385
|
+
@pulumi.getter(name="isSnapshotStandby")
|
17386
|
+
def is_snapshot_standby(self) -> bool:
|
17387
|
+
return pulumi.get(self, "is_snapshot_standby")
|
17388
|
+
|
17389
|
+
@property
|
17390
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
17391
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
17392
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
17393
|
+
|
17291
17394
|
|
17292
17395
|
@pulumi.output_type
|
17293
17396
|
class GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -19196,11 +19299,17 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult
|
|
19196
19299
|
@pulumi.output_type
|
19197
19300
|
class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
19198
19301
|
def __init__(__self__, *,
|
19199
|
-
disaster_recovery_type: str
|
19302
|
+
disaster_recovery_type: str,
|
19303
|
+
is_replicate_automatic_backups: bool,
|
19304
|
+
is_snapshot_standby: bool,
|
19305
|
+
time_snapshot_standby_enabled_till: str):
|
19200
19306
|
"""
|
19201
19307
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
19202
19308
|
"""
|
19203
19309
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
19310
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
19311
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
19312
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
19204
19313
|
|
19205
19314
|
@property
|
19206
19315
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -19210,6 +19319,21 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
|
|
19210
19319
|
"""
|
19211
19320
|
return pulumi.get(self, "disaster_recovery_type")
|
19212
19321
|
|
19322
|
+
@property
|
19323
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
19324
|
+
def is_replicate_automatic_backups(self) -> bool:
|
19325
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
19326
|
+
|
19327
|
+
@property
|
19328
|
+
@pulumi.getter(name="isSnapshotStandby")
|
19329
|
+
def is_snapshot_standby(self) -> bool:
|
19330
|
+
return pulumi.get(self, "is_snapshot_standby")
|
19331
|
+
|
19332
|
+
@property
|
19333
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
19334
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
19335
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
19336
|
+
|
19213
19337
|
|
19214
19338
|
@pulumi.output_type
|
19215
19339
|
class GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -9,6 +9,8 @@ from .get_workspace import *
|
|
9
9
|
from .get_workspace_application import *
|
10
10
|
from .get_workspace_application_patch import *
|
11
11
|
from .get_workspace_application_patches import *
|
12
|
+
from .get_workspace_application_schedule import *
|
13
|
+
from .get_workspace_application_schedules import *
|
12
14
|
from .get_workspace_applications import *
|
13
15
|
from .get_workspace_export_request import *
|
14
16
|
from .get_workspace_export_requests import *
|
@@ -22,6 +24,7 @@ from .get_workspaces import *
|
|
22
24
|
from .workspace import *
|
23
25
|
from .workspace_application import *
|
24
26
|
from .workspace_application_patch import *
|
27
|
+
from .workspace_application_schedule import *
|
25
28
|
from .workspace_export_request import *
|
26
29
|
from .workspace_folder import *
|
27
30
|
from .workspace_import_request import *
|