pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.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 +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/outputs.py
CHANGED
@@ -21,6 +21,7 @@ __all__ = [
|
|
21
21
|
'ConnectionIngressIp',
|
22
22
|
'ConnectionLock',
|
23
23
|
'DeploymentBackupLock',
|
24
|
+
'DeploymentBackupSchedule',
|
24
25
|
'DeploymentDeploymentDiagnosticData',
|
25
26
|
'DeploymentIngressIp',
|
26
27
|
'DeploymentLock',
|
@@ -53,6 +54,7 @@ __all__ = [
|
|
53
54
|
'GetDatabaseRegistrationsDatabaseRegistrationCollectionItemResult',
|
54
55
|
'GetDatabaseRegistrationsFilterResult',
|
55
56
|
'GetDeploymentBackupLockResult',
|
57
|
+
'GetDeploymentBackupScheduleResult',
|
56
58
|
'GetDeploymentBackupsDeploymentBackupCollectionResult',
|
57
59
|
'GetDeploymentBackupsDeploymentBackupCollectionItemResult',
|
58
60
|
'GetDeploymentBackupsDeploymentBackupCollectionItemLockResult',
|
@@ -82,6 +84,7 @@ __all__ = [
|
|
82
84
|
'GetDeploymentVersionsFilterResult',
|
83
85
|
'GetDeploymentsDeploymentCollectionResult',
|
84
86
|
'GetDeploymentsDeploymentCollectionItemResult',
|
87
|
+
'GetDeploymentsDeploymentCollectionItemBackupScheduleResult',
|
85
88
|
'GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult',
|
86
89
|
'GetDeploymentsDeploymentCollectionItemIngressIpResult',
|
87
90
|
'GetDeploymentsDeploymentCollectionItemLockResult',
|
@@ -410,6 +413,102 @@ class DeploymentBackupLock(dict):
|
|
410
413
|
return pulumi.get(self, "time_created")
|
411
414
|
|
412
415
|
|
416
|
+
@pulumi.output_type
|
417
|
+
class DeploymentBackupSchedule(dict):
|
418
|
+
@staticmethod
|
419
|
+
def __key_warning(key: str):
|
420
|
+
suggest = None
|
421
|
+
if key == "compartmentId":
|
422
|
+
suggest = "compartment_id"
|
423
|
+
elif key == "frequencyBackupScheduled":
|
424
|
+
suggest = "frequency_backup_scheduled"
|
425
|
+
elif key == "isMetadataOnly":
|
426
|
+
suggest = "is_metadata_only"
|
427
|
+
elif key == "timeBackupScheduled":
|
428
|
+
suggest = "time_backup_scheduled"
|
429
|
+
|
430
|
+
if suggest:
|
431
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentBackupSchedule. Access the value via the '{suggest}' property getter instead.")
|
432
|
+
|
433
|
+
def __getitem__(self, key: str) -> Any:
|
434
|
+
DeploymentBackupSchedule.__key_warning(key)
|
435
|
+
return super().__getitem__(key)
|
436
|
+
|
437
|
+
def get(self, key: str, default = None) -> Any:
|
438
|
+
DeploymentBackupSchedule.__key_warning(key)
|
439
|
+
return super().get(key, default)
|
440
|
+
|
441
|
+
def __init__(__self__, *,
|
442
|
+
bucket: str,
|
443
|
+
compartment_id: str,
|
444
|
+
frequency_backup_scheduled: str,
|
445
|
+
is_metadata_only: bool,
|
446
|
+
namespace: str,
|
447
|
+
time_backup_scheduled: str):
|
448
|
+
"""
|
449
|
+
:param str bucket: (Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
450
|
+
:param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
451
|
+
:param str frequency_backup_scheduled: (Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
452
|
+
:param bool is_metadata_only: (Updatable) Parameter to allow users to create backup without trails
|
453
|
+
:param str namespace: (Updatable) Name of namespace that serves as a container for all of your buckets
|
454
|
+
:param str time_backup_scheduled: (Updatable) The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
455
|
+
"""
|
456
|
+
pulumi.set(__self__, "bucket", bucket)
|
457
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
458
|
+
pulumi.set(__self__, "frequency_backup_scheduled", frequency_backup_scheduled)
|
459
|
+
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
460
|
+
pulumi.set(__self__, "namespace", namespace)
|
461
|
+
pulumi.set(__self__, "time_backup_scheduled", time_backup_scheduled)
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter
|
465
|
+
def bucket(self) -> str:
|
466
|
+
"""
|
467
|
+
(Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "bucket")
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="compartmentId")
|
473
|
+
def compartment_id(self) -> str:
|
474
|
+
"""
|
475
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
476
|
+
"""
|
477
|
+
return pulumi.get(self, "compartment_id")
|
478
|
+
|
479
|
+
@property
|
480
|
+
@pulumi.getter(name="frequencyBackupScheduled")
|
481
|
+
def frequency_backup_scheduled(self) -> str:
|
482
|
+
"""
|
483
|
+
(Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
484
|
+
"""
|
485
|
+
return pulumi.get(self, "frequency_backup_scheduled")
|
486
|
+
|
487
|
+
@property
|
488
|
+
@pulumi.getter(name="isMetadataOnly")
|
489
|
+
def is_metadata_only(self) -> bool:
|
490
|
+
"""
|
491
|
+
(Updatable) Parameter to allow users to create backup without trails
|
492
|
+
"""
|
493
|
+
return pulumi.get(self, "is_metadata_only")
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter
|
497
|
+
def namespace(self) -> str:
|
498
|
+
"""
|
499
|
+
(Updatable) Name of namespace that serves as a container for all of your buckets
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "namespace")
|
502
|
+
|
503
|
+
@property
|
504
|
+
@pulumi.getter(name="timeBackupScheduled")
|
505
|
+
def time_backup_scheduled(self) -> str:
|
506
|
+
"""
|
507
|
+
(Updatable) The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
508
|
+
"""
|
509
|
+
return pulumi.get(self, "time_backup_scheduled")
|
510
|
+
|
511
|
+
|
413
512
|
@pulumi.output_type
|
414
513
|
class DeploymentDeploymentDiagnosticData(dict):
|
415
514
|
@staticmethod
|
@@ -3346,6 +3445,79 @@ class GetDeploymentBackupLockResult(dict):
|
|
3346
3445
|
return pulumi.get(self, "type")
|
3347
3446
|
|
3348
3447
|
|
3448
|
+
@pulumi.output_type
|
3449
|
+
class GetDeploymentBackupScheduleResult(dict):
|
3450
|
+
def __init__(__self__, *,
|
3451
|
+
bucket: str,
|
3452
|
+
compartment_id: str,
|
3453
|
+
frequency_backup_scheduled: str,
|
3454
|
+
is_metadata_only: bool,
|
3455
|
+
namespace: str,
|
3456
|
+
time_backup_scheduled: str):
|
3457
|
+
"""
|
3458
|
+
:param str bucket: Name of the bucket where the object is to be uploaded in the object storage
|
3459
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
3460
|
+
:param str frequency_backup_scheduled: The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
3461
|
+
:param bool is_metadata_only: Parameter to allow users to create backup without trails
|
3462
|
+
:param str namespace: Name of namespace that serves as a container for all of your buckets
|
3463
|
+
:param str time_backup_scheduled: The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
3464
|
+
"""
|
3465
|
+
pulumi.set(__self__, "bucket", bucket)
|
3466
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
3467
|
+
pulumi.set(__self__, "frequency_backup_scheduled", frequency_backup_scheduled)
|
3468
|
+
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
3469
|
+
pulumi.set(__self__, "namespace", namespace)
|
3470
|
+
pulumi.set(__self__, "time_backup_scheduled", time_backup_scheduled)
|
3471
|
+
|
3472
|
+
@property
|
3473
|
+
@pulumi.getter
|
3474
|
+
def bucket(self) -> str:
|
3475
|
+
"""
|
3476
|
+
Name of the bucket where the object is to be uploaded in the object storage
|
3477
|
+
"""
|
3478
|
+
return pulumi.get(self, "bucket")
|
3479
|
+
|
3480
|
+
@property
|
3481
|
+
@pulumi.getter(name="compartmentId")
|
3482
|
+
def compartment_id(self) -> str:
|
3483
|
+
"""
|
3484
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
3485
|
+
"""
|
3486
|
+
return pulumi.get(self, "compartment_id")
|
3487
|
+
|
3488
|
+
@property
|
3489
|
+
@pulumi.getter(name="frequencyBackupScheduled")
|
3490
|
+
def frequency_backup_scheduled(self) -> str:
|
3491
|
+
"""
|
3492
|
+
The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
3493
|
+
"""
|
3494
|
+
return pulumi.get(self, "frequency_backup_scheduled")
|
3495
|
+
|
3496
|
+
@property
|
3497
|
+
@pulumi.getter(name="isMetadataOnly")
|
3498
|
+
def is_metadata_only(self) -> bool:
|
3499
|
+
"""
|
3500
|
+
Parameter to allow users to create backup without trails
|
3501
|
+
"""
|
3502
|
+
return pulumi.get(self, "is_metadata_only")
|
3503
|
+
|
3504
|
+
@property
|
3505
|
+
@pulumi.getter
|
3506
|
+
def namespace(self) -> str:
|
3507
|
+
"""
|
3508
|
+
Name of namespace that serves as a container for all of your buckets
|
3509
|
+
"""
|
3510
|
+
return pulumi.get(self, "namespace")
|
3511
|
+
|
3512
|
+
@property
|
3513
|
+
@pulumi.getter(name="timeBackupScheduled")
|
3514
|
+
def time_backup_scheduled(self) -> str:
|
3515
|
+
"""
|
3516
|
+
The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
3517
|
+
"""
|
3518
|
+
return pulumi.get(self, "time_backup_scheduled")
|
3519
|
+
|
3520
|
+
|
3349
3521
|
@pulumi.output_type
|
3350
3522
|
class GetDeploymentBackupsDeploymentBackupCollectionResult(dict):
|
3351
3523
|
def __init__(__self__, *,
|
@@ -3361,6 +3533,7 @@ class GetDeploymentBackupsDeploymentBackupCollectionResult(dict):
|
|
3361
3533
|
@pulumi.output_type
|
3362
3534
|
class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
|
3363
3535
|
def __init__(__self__, *,
|
3536
|
+
backup_source_type: str,
|
3364
3537
|
backup_type: str,
|
3365
3538
|
bucket: str,
|
3366
3539
|
compartment_id: str,
|
@@ -3386,6 +3559,7 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
|
|
3386
3559
|
time_of_backup: str,
|
3387
3560
|
time_updated: str):
|
3388
3561
|
"""
|
3562
|
+
:param str backup_source_type: Possible deployment backup source types.
|
3389
3563
|
:param str backup_type: Possible Deployment backup types.
|
3390
3564
|
:param str bucket: Name of the bucket where the object is to be uploaded in the object storage
|
3391
3565
|
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
@@ -3410,6 +3584,7 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
|
|
3410
3584
|
:param str time_of_backup: The time of the resource backup. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
3411
3585
|
:param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
3412
3586
|
"""
|
3587
|
+
pulumi.set(__self__, "backup_source_type", backup_source_type)
|
3413
3588
|
pulumi.set(__self__, "backup_type", backup_type)
|
3414
3589
|
pulumi.set(__self__, "bucket", bucket)
|
3415
3590
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -3435,6 +3610,14 @@ class GetDeploymentBackupsDeploymentBackupCollectionItemResult(dict):
|
|
3435
3610
|
pulumi.set(__self__, "time_of_backup", time_of_backup)
|
3436
3611
|
pulumi.set(__self__, "time_updated", time_updated)
|
3437
3612
|
|
3613
|
+
@property
|
3614
|
+
@pulumi.getter(name="backupSourceType")
|
3615
|
+
def backup_source_type(self) -> str:
|
3616
|
+
"""
|
3617
|
+
Possible deployment backup source types.
|
3618
|
+
"""
|
3619
|
+
return pulumi.get(self, "backup_source_type")
|
3620
|
+
|
3438
3621
|
@property
|
3439
3622
|
@pulumi.getter(name="backupType")
|
3440
3623
|
def backup_type(self) -> str:
|
@@ -5257,6 +5440,7 @@ class GetDeploymentsDeploymentCollectionResult(dict):
|
|
5257
5440
|
@pulumi.output_type
|
5258
5441
|
class GetDeploymentsDeploymentCollectionItemResult(dict):
|
5259
5442
|
def __init__(__self__, *,
|
5443
|
+
backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
|
5260
5444
|
category: str,
|
5261
5445
|
compartment_id: str,
|
5262
5446
|
cpu_core_count: int,
|
@@ -5297,11 +5481,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5297
5481
|
subnet_id: str,
|
5298
5482
|
system_tags: Mapping[str, str],
|
5299
5483
|
time_created: str,
|
5484
|
+
time_last_backup_scheduled: str,
|
5485
|
+
time_next_backup_scheduled: str,
|
5300
5486
|
time_of_next_maintenance: str,
|
5301
5487
|
time_ogg_version_supported_until: str,
|
5302
5488
|
time_updated: str,
|
5303
5489
|
time_upgrade_required: str):
|
5304
5490
|
"""
|
5491
|
+
:param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
|
5305
5492
|
:param str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
5306
5493
|
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
5307
5494
|
:param int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
|
@@ -5341,11 +5528,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5341
5528
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
5342
5529
|
:param Mapping[str, str] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
5343
5530
|
:param str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5531
|
+
:param str time_last_backup_scheduled: The timestamp of last deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
5532
|
+
:param str time_next_backup_scheduled: The timestamp of next deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-26T20:19:29.600Z`.
|
5344
5533
|
:param str time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5345
5534
|
:param str time_ogg_version_supported_until: The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5346
5535
|
:param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5347
5536
|
:param str time_upgrade_required: Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5348
5537
|
"""
|
5538
|
+
pulumi.set(__self__, "backup_schedules", backup_schedules)
|
5349
5539
|
pulumi.set(__self__, "category", category)
|
5350
5540
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
5351
5541
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -5386,11 +5576,21 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5386
5576
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
5387
5577
|
pulumi.set(__self__, "system_tags", system_tags)
|
5388
5578
|
pulumi.set(__self__, "time_created", time_created)
|
5579
|
+
pulumi.set(__self__, "time_last_backup_scheduled", time_last_backup_scheduled)
|
5580
|
+
pulumi.set(__self__, "time_next_backup_scheduled", time_next_backup_scheduled)
|
5389
5581
|
pulumi.set(__self__, "time_of_next_maintenance", time_of_next_maintenance)
|
5390
5582
|
pulumi.set(__self__, "time_ogg_version_supported_until", time_ogg_version_supported_until)
|
5391
5583
|
pulumi.set(__self__, "time_updated", time_updated)
|
5392
5584
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
5393
5585
|
|
5586
|
+
@property
|
5587
|
+
@pulumi.getter(name="backupSchedules")
|
5588
|
+
def backup_schedules(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult']:
|
5589
|
+
"""
|
5590
|
+
Defines the schedule of the deployment backup.
|
5591
|
+
"""
|
5592
|
+
return pulumi.get(self, "backup_schedules")
|
5593
|
+
|
5394
5594
|
@property
|
5395
5595
|
@pulumi.getter
|
5396
5596
|
def category(self) -> str:
|
@@ -5708,6 +5908,22 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5708
5908
|
"""
|
5709
5909
|
return pulumi.get(self, "time_created")
|
5710
5910
|
|
5911
|
+
@property
|
5912
|
+
@pulumi.getter(name="timeLastBackupScheduled")
|
5913
|
+
def time_last_backup_scheduled(self) -> str:
|
5914
|
+
"""
|
5915
|
+
The timestamp of last deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
5916
|
+
"""
|
5917
|
+
return pulumi.get(self, "time_last_backup_scheduled")
|
5918
|
+
|
5919
|
+
@property
|
5920
|
+
@pulumi.getter(name="timeNextBackupScheduled")
|
5921
|
+
def time_next_backup_scheduled(self) -> str:
|
5922
|
+
"""
|
5923
|
+
The timestamp of next deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-26T20:19:29.600Z`.
|
5924
|
+
"""
|
5925
|
+
return pulumi.get(self, "time_next_backup_scheduled")
|
5926
|
+
|
5711
5927
|
@property
|
5712
5928
|
@pulumi.getter(name="timeOfNextMaintenance")
|
5713
5929
|
def time_of_next_maintenance(self) -> str:
|
@@ -5741,6 +5957,79 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5741
5957
|
return pulumi.get(self, "time_upgrade_required")
|
5742
5958
|
|
5743
5959
|
|
5960
|
+
@pulumi.output_type
|
5961
|
+
class GetDeploymentsDeploymentCollectionItemBackupScheduleResult(dict):
|
5962
|
+
def __init__(__self__, *,
|
5963
|
+
bucket: str,
|
5964
|
+
compartment_id: str,
|
5965
|
+
frequency_backup_scheduled: str,
|
5966
|
+
is_metadata_only: bool,
|
5967
|
+
namespace: str,
|
5968
|
+
time_backup_scheduled: str):
|
5969
|
+
"""
|
5970
|
+
:param str bucket: Name of the bucket where the object is to be uploaded in the object storage
|
5971
|
+
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
5972
|
+
:param str frequency_backup_scheduled: The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
5973
|
+
:param bool is_metadata_only: Parameter to allow users to create backup without trails
|
5974
|
+
:param str namespace: Name of namespace that serves as a container for all of your buckets
|
5975
|
+
:param str time_backup_scheduled: The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
5976
|
+
"""
|
5977
|
+
pulumi.set(__self__, "bucket", bucket)
|
5978
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
5979
|
+
pulumi.set(__self__, "frequency_backup_scheduled", frequency_backup_scheduled)
|
5980
|
+
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
5981
|
+
pulumi.set(__self__, "namespace", namespace)
|
5982
|
+
pulumi.set(__self__, "time_backup_scheduled", time_backup_scheduled)
|
5983
|
+
|
5984
|
+
@property
|
5985
|
+
@pulumi.getter
|
5986
|
+
def bucket(self) -> str:
|
5987
|
+
"""
|
5988
|
+
Name of the bucket where the object is to be uploaded in the object storage
|
5989
|
+
"""
|
5990
|
+
return pulumi.get(self, "bucket")
|
5991
|
+
|
5992
|
+
@property
|
5993
|
+
@pulumi.getter(name="compartmentId")
|
5994
|
+
def compartment_id(self) -> str:
|
5995
|
+
"""
|
5996
|
+
The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
5997
|
+
"""
|
5998
|
+
return pulumi.get(self, "compartment_id")
|
5999
|
+
|
6000
|
+
@property
|
6001
|
+
@pulumi.getter(name="frequencyBackupScheduled")
|
6002
|
+
def frequency_backup_scheduled(self) -> str:
|
6003
|
+
"""
|
6004
|
+
The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
6005
|
+
"""
|
6006
|
+
return pulumi.get(self, "frequency_backup_scheduled")
|
6007
|
+
|
6008
|
+
@property
|
6009
|
+
@pulumi.getter(name="isMetadataOnly")
|
6010
|
+
def is_metadata_only(self) -> bool:
|
6011
|
+
"""
|
6012
|
+
Parameter to allow users to create backup without trails
|
6013
|
+
"""
|
6014
|
+
return pulumi.get(self, "is_metadata_only")
|
6015
|
+
|
6016
|
+
@property
|
6017
|
+
@pulumi.getter
|
6018
|
+
def namespace(self) -> str:
|
6019
|
+
"""
|
6020
|
+
Name of namespace that serves as a container for all of your buckets
|
6021
|
+
"""
|
6022
|
+
return pulumi.get(self, "namespace")
|
6023
|
+
|
6024
|
+
@property
|
6025
|
+
@pulumi.getter(name="timeBackupScheduled")
|
6026
|
+
def time_backup_scheduled(self) -> str:
|
6027
|
+
"""
|
6028
|
+
The start timestamp for the deployment backup schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-25T18:19:29.600Z`.
|
6029
|
+
"""
|
6030
|
+
return pulumi.get(self, "time_backup_scheduled")
|
6031
|
+
|
6032
|
+
|
5744
6033
|
@pulumi.output_type
|
5745
6034
|
class GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult(dict):
|
5746
6035
|
def __init__(__self__, *,
|