pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__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 +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- 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 +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- 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/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_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- 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/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/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/_inputs.py
CHANGED
@@ -25,6 +25,8 @@ __all__ = [
|
|
25
25
|
'ConnectionLockArgsDict',
|
26
26
|
'DeploymentBackupLockArgs',
|
27
27
|
'DeploymentBackupLockArgsDict',
|
28
|
+
'DeploymentBackupScheduleArgs',
|
29
|
+
'DeploymentBackupScheduleArgsDict',
|
28
30
|
'DeploymentDeploymentDiagnosticDataArgs',
|
29
31
|
'DeploymentDeploymentDiagnosticDataArgsDict',
|
30
32
|
'DeploymentIngressIpArgs',
|
@@ -437,6 +439,132 @@ class DeploymentBackupLockArgs:
|
|
437
439
|
pulumi.set(self, "time_created", value)
|
438
440
|
|
439
441
|
|
442
|
+
if not MYPY:
|
443
|
+
class DeploymentBackupScheduleArgsDict(TypedDict):
|
444
|
+
bucket: pulumi.Input[str]
|
445
|
+
"""
|
446
|
+
(Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
447
|
+
"""
|
448
|
+
compartment_id: pulumi.Input[str]
|
449
|
+
"""
|
450
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
451
|
+
"""
|
452
|
+
frequency_backup_scheduled: pulumi.Input[str]
|
453
|
+
"""
|
454
|
+
(Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
455
|
+
"""
|
456
|
+
is_metadata_only: pulumi.Input[bool]
|
457
|
+
"""
|
458
|
+
(Updatable) Parameter to allow users to create backup without trails
|
459
|
+
"""
|
460
|
+
namespace: pulumi.Input[str]
|
461
|
+
"""
|
462
|
+
(Updatable) Name of namespace that serves as a container for all of your buckets
|
463
|
+
"""
|
464
|
+
time_backup_scheduled: pulumi.Input[str]
|
465
|
+
"""
|
466
|
+
(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`.
|
467
|
+
"""
|
468
|
+
elif False:
|
469
|
+
DeploymentBackupScheduleArgsDict: TypeAlias = Mapping[str, Any]
|
470
|
+
|
471
|
+
@pulumi.input_type
|
472
|
+
class DeploymentBackupScheduleArgs:
|
473
|
+
def __init__(__self__, *,
|
474
|
+
bucket: pulumi.Input[str],
|
475
|
+
compartment_id: pulumi.Input[str],
|
476
|
+
frequency_backup_scheduled: pulumi.Input[str],
|
477
|
+
is_metadata_only: pulumi.Input[bool],
|
478
|
+
namespace: pulumi.Input[str],
|
479
|
+
time_backup_scheduled: pulumi.Input[str]):
|
480
|
+
"""
|
481
|
+
:param pulumi.Input[str] bucket: (Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
482
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
483
|
+
:param pulumi.Input[str] frequency_backup_scheduled: (Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
484
|
+
:param pulumi.Input[bool] is_metadata_only: (Updatable) Parameter to allow users to create backup without trails
|
485
|
+
:param pulumi.Input[str] namespace: (Updatable) Name of namespace that serves as a container for all of your buckets
|
486
|
+
:param pulumi.Input[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`.
|
487
|
+
"""
|
488
|
+
pulumi.set(__self__, "bucket", bucket)
|
489
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
490
|
+
pulumi.set(__self__, "frequency_backup_scheduled", frequency_backup_scheduled)
|
491
|
+
pulumi.set(__self__, "is_metadata_only", is_metadata_only)
|
492
|
+
pulumi.set(__self__, "namespace", namespace)
|
493
|
+
pulumi.set(__self__, "time_backup_scheduled", time_backup_scheduled)
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter
|
497
|
+
def bucket(self) -> pulumi.Input[str]:
|
498
|
+
"""
|
499
|
+
(Updatable) Name of the bucket where the object is to be uploaded in the object storage
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "bucket")
|
502
|
+
|
503
|
+
@bucket.setter
|
504
|
+
def bucket(self, value: pulumi.Input[str]):
|
505
|
+
pulumi.set(self, "bucket", value)
|
506
|
+
|
507
|
+
@property
|
508
|
+
@pulumi.getter(name="compartmentId")
|
509
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
510
|
+
"""
|
511
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
512
|
+
"""
|
513
|
+
return pulumi.get(self, "compartment_id")
|
514
|
+
|
515
|
+
@compartment_id.setter
|
516
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
517
|
+
pulumi.set(self, "compartment_id", value)
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="frequencyBackupScheduled")
|
521
|
+
def frequency_backup_scheduled(self) -> pulumi.Input[str]:
|
522
|
+
"""
|
523
|
+
(Updatable) The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "frequency_backup_scheduled")
|
526
|
+
|
527
|
+
@frequency_backup_scheduled.setter
|
528
|
+
def frequency_backup_scheduled(self, value: pulumi.Input[str]):
|
529
|
+
pulumi.set(self, "frequency_backup_scheduled", value)
|
530
|
+
|
531
|
+
@property
|
532
|
+
@pulumi.getter(name="isMetadataOnly")
|
533
|
+
def is_metadata_only(self) -> pulumi.Input[bool]:
|
534
|
+
"""
|
535
|
+
(Updatable) Parameter to allow users to create backup without trails
|
536
|
+
"""
|
537
|
+
return pulumi.get(self, "is_metadata_only")
|
538
|
+
|
539
|
+
@is_metadata_only.setter
|
540
|
+
def is_metadata_only(self, value: pulumi.Input[bool]):
|
541
|
+
pulumi.set(self, "is_metadata_only", value)
|
542
|
+
|
543
|
+
@property
|
544
|
+
@pulumi.getter
|
545
|
+
def namespace(self) -> pulumi.Input[str]:
|
546
|
+
"""
|
547
|
+
(Updatable) Name of namespace that serves as a container for all of your buckets
|
548
|
+
"""
|
549
|
+
return pulumi.get(self, "namespace")
|
550
|
+
|
551
|
+
@namespace.setter
|
552
|
+
def namespace(self, value: pulumi.Input[str]):
|
553
|
+
pulumi.set(self, "namespace", value)
|
554
|
+
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="timeBackupScheduled")
|
557
|
+
def time_backup_scheduled(self) -> pulumi.Input[str]:
|
558
|
+
"""
|
559
|
+
(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`.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "time_backup_scheduled")
|
562
|
+
|
563
|
+
@time_backup_scheduled.setter
|
564
|
+
def time_backup_scheduled(self, value: pulumi.Input[str]):
|
565
|
+
pulumi.set(self, "time_backup_scheduled", value)
|
566
|
+
|
567
|
+
|
440
568
|
if not MYPY:
|
441
569
|
class DeploymentDeploymentDiagnosticDataArgsDict(TypedDict):
|
442
570
|
bucket: NotRequired[pulumi.Input[str]]
|
@@ -28,6 +28,7 @@ class DeploymentArgs:
|
|
28
28
|
is_auto_scaling_enabled: pulumi.Input[bool],
|
29
29
|
license_model: pulumi.Input[str],
|
30
30
|
subnet_id: pulumi.Input[str],
|
31
|
+
backup_schedule: Optional[pulumi.Input['DeploymentBackupScheduleArgs']] = None,
|
31
32
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
33
|
deployment_backup_id: Optional[pulumi.Input[str]] = None,
|
33
34
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -52,6 +53,7 @@ class DeploymentArgs:
|
|
52
53
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
53
54
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
54
55
|
:param pulumi.Input[str] subnet_id: (Updatable) 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.
|
56
|
+
:param pulumi.Input['DeploymentBackupScheduleArgs'] backup_schedule: (Updatable) Defines the backup schedule details for create operation.
|
55
57
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
56
58
|
:param pulumi.Input[str] deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
57
59
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
@@ -73,6 +75,8 @@ class DeploymentArgs:
|
|
73
75
|
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
74
76
|
pulumi.set(__self__, "license_model", license_model)
|
75
77
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
78
|
+
if backup_schedule is not None:
|
79
|
+
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
76
80
|
if defined_tags is not None:
|
77
81
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
78
82
|
if deployment_backup_id is not None:
|
@@ -188,6 +192,18 @@ class DeploymentArgs:
|
|
188
192
|
def subnet_id(self, value: pulumi.Input[str]):
|
189
193
|
pulumi.set(self, "subnet_id", value)
|
190
194
|
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="backupSchedule")
|
197
|
+
def backup_schedule(self) -> Optional[pulumi.Input['DeploymentBackupScheduleArgs']]:
|
198
|
+
"""
|
199
|
+
(Updatable) Defines the backup schedule details for create operation.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "backup_schedule")
|
202
|
+
|
203
|
+
@backup_schedule.setter
|
204
|
+
def backup_schedule(self, value: Optional[pulumi.Input['DeploymentBackupScheduleArgs']]):
|
205
|
+
pulumi.set(self, "backup_schedule", value)
|
206
|
+
|
191
207
|
@property
|
192
208
|
@pulumi.getter(name="definedTags")
|
193
209
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -366,6 +382,7 @@ class DeploymentArgs:
|
|
366
382
|
@pulumi.input_type
|
367
383
|
class _DeploymentState:
|
368
384
|
def __init__(__self__, *,
|
385
|
+
backup_schedule: Optional[pulumi.Input['DeploymentBackupScheduleArgs']] = None,
|
369
386
|
category: Optional[pulumi.Input[str]] = None,
|
370
387
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
371
388
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
@@ -405,12 +422,15 @@ class _DeploymentState:
|
|
405
422
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
406
423
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
407
424
|
time_created: Optional[pulumi.Input[str]] = None,
|
425
|
+
time_last_backup_scheduled: Optional[pulumi.Input[str]] = None,
|
426
|
+
time_next_backup_scheduled: Optional[pulumi.Input[str]] = None,
|
408
427
|
time_of_next_maintenance: Optional[pulumi.Input[str]] = None,
|
409
428
|
time_ogg_version_supported_until: Optional[pulumi.Input[str]] = None,
|
410
429
|
time_updated: Optional[pulumi.Input[str]] = None,
|
411
430
|
time_upgrade_required: Optional[pulumi.Input[str]] = None):
|
412
431
|
"""
|
413
432
|
Input properties used for looking up and filtering Deployment resources.
|
433
|
+
:param pulumi.Input['DeploymentBackupScheduleArgs'] backup_schedule: (Updatable) Defines the backup schedule details for create operation.
|
414
434
|
:param pulumi.Input[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'.
|
415
435
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
416
436
|
:param pulumi.Input[int] cpu_core_count: (Updatable) The Minimum number of OCPUs to be made available for this Deployment.
|
@@ -448,11 +468,15 @@ class _DeploymentState:
|
|
448
468
|
:param pulumi.Input[str] subnet_id: (Updatable) 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.
|
449
469
|
:param pulumi.Input[Mapping[str, pulumi.Input[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}}`
|
450
470
|
:param pulumi.Input[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`.
|
471
|
+
:param pulumi.Input[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`.
|
472
|
+
:param pulumi.Input[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`.
|
451
473
|
:param pulumi.Input[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`.
|
452
474
|
:param pulumi.Input[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`.
|
453
475
|
:param pulumi.Input[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`.
|
454
476
|
:param pulumi.Input[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`.
|
455
477
|
"""
|
478
|
+
if backup_schedule is not None:
|
479
|
+
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
456
480
|
if category is not None:
|
457
481
|
pulumi.set(__self__, "category", category)
|
458
482
|
if compartment_id is not None:
|
@@ -531,6 +555,10 @@ class _DeploymentState:
|
|
531
555
|
pulumi.set(__self__, "system_tags", system_tags)
|
532
556
|
if time_created is not None:
|
533
557
|
pulumi.set(__self__, "time_created", time_created)
|
558
|
+
if time_last_backup_scheduled is not None:
|
559
|
+
pulumi.set(__self__, "time_last_backup_scheduled", time_last_backup_scheduled)
|
560
|
+
if time_next_backup_scheduled is not None:
|
561
|
+
pulumi.set(__self__, "time_next_backup_scheduled", time_next_backup_scheduled)
|
534
562
|
if time_of_next_maintenance is not None:
|
535
563
|
pulumi.set(__self__, "time_of_next_maintenance", time_of_next_maintenance)
|
536
564
|
if time_ogg_version_supported_until is not None:
|
@@ -540,6 +568,18 @@ class _DeploymentState:
|
|
540
568
|
if time_upgrade_required is not None:
|
541
569
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
542
570
|
|
571
|
+
@property
|
572
|
+
@pulumi.getter(name="backupSchedule")
|
573
|
+
def backup_schedule(self) -> Optional[pulumi.Input['DeploymentBackupScheduleArgs']]:
|
574
|
+
"""
|
575
|
+
(Updatable) Defines the backup schedule details for create operation.
|
576
|
+
"""
|
577
|
+
return pulumi.get(self, "backup_schedule")
|
578
|
+
|
579
|
+
@backup_schedule.setter
|
580
|
+
def backup_schedule(self, value: Optional[pulumi.Input['DeploymentBackupScheduleArgs']]):
|
581
|
+
pulumi.set(self, "backup_schedule", value)
|
582
|
+
|
543
583
|
@property
|
544
584
|
@pulumi.getter
|
545
585
|
def category(self) -> Optional[pulumi.Input[str]]:
|
@@ -1002,6 +1042,30 @@ class _DeploymentState:
|
|
1002
1042
|
def time_created(self, value: Optional[pulumi.Input[str]]):
|
1003
1043
|
pulumi.set(self, "time_created", value)
|
1004
1044
|
|
1045
|
+
@property
|
1046
|
+
@pulumi.getter(name="timeLastBackupScheduled")
|
1047
|
+
def time_last_backup_scheduled(self) -> Optional[pulumi.Input[str]]:
|
1048
|
+
"""
|
1049
|
+
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`.
|
1050
|
+
"""
|
1051
|
+
return pulumi.get(self, "time_last_backup_scheduled")
|
1052
|
+
|
1053
|
+
@time_last_backup_scheduled.setter
|
1054
|
+
def time_last_backup_scheduled(self, value: Optional[pulumi.Input[str]]):
|
1055
|
+
pulumi.set(self, "time_last_backup_scheduled", value)
|
1056
|
+
|
1057
|
+
@property
|
1058
|
+
@pulumi.getter(name="timeNextBackupScheduled")
|
1059
|
+
def time_next_backup_scheduled(self) -> Optional[pulumi.Input[str]]:
|
1060
|
+
"""
|
1061
|
+
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`.
|
1062
|
+
"""
|
1063
|
+
return pulumi.get(self, "time_next_backup_scheduled")
|
1064
|
+
|
1065
|
+
@time_next_backup_scheduled.setter
|
1066
|
+
def time_next_backup_scheduled(self, value: Optional[pulumi.Input[str]]):
|
1067
|
+
pulumi.set(self, "time_next_backup_scheduled", value)
|
1068
|
+
|
1005
1069
|
@property
|
1006
1070
|
@pulumi.getter(name="timeOfNextMaintenance")
|
1007
1071
|
def time_of_next_maintenance(self) -> Optional[pulumi.Input[str]]:
|
@@ -1056,6 +1120,7 @@ class Deployment(pulumi.CustomResource):
|
|
1056
1120
|
def __init__(__self__,
|
1057
1121
|
resource_name: str,
|
1058
1122
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1123
|
+
backup_schedule: Optional[pulumi.Input[Union['DeploymentBackupScheduleArgs', 'DeploymentBackupScheduleArgsDict']]] = None,
|
1059
1124
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1060
1125
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
1061
1126
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1094,6 +1159,7 @@ class Deployment(pulumi.CustomResource):
|
|
1094
1159
|
|
1095
1160
|
:param str resource_name: The name of the resource.
|
1096
1161
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1162
|
+
:param pulumi.Input[Union['DeploymentBackupScheduleArgs', 'DeploymentBackupScheduleArgsDict']] backup_schedule: (Updatable) Defines the backup schedule details for create operation.
|
1097
1163
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
1098
1164
|
:param pulumi.Input[int] cpu_core_count: (Updatable) The Minimum number of OCPUs to be made available for this Deployment.
|
1099
1165
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -1149,6 +1215,7 @@ class Deployment(pulumi.CustomResource):
|
|
1149
1215
|
def _internal_init(__self__,
|
1150
1216
|
resource_name: str,
|
1151
1217
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1218
|
+
backup_schedule: Optional[pulumi.Input[Union['DeploymentBackupScheduleArgs', 'DeploymentBackupScheduleArgsDict']]] = None,
|
1152
1219
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1153
1220
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
1154
1221
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1180,6 +1247,7 @@ class Deployment(pulumi.CustomResource):
|
|
1180
1247
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1181
1248
|
__props__ = DeploymentArgs.__new__(DeploymentArgs)
|
1182
1249
|
|
1250
|
+
__props__.__dict__["backup_schedule"] = backup_schedule
|
1183
1251
|
if compartment_id is None and not opts.urn:
|
1184
1252
|
raise TypeError("Missing required property 'compartment_id'")
|
1185
1253
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -1233,6 +1301,8 @@ class Deployment(pulumi.CustomResource):
|
|
1233
1301
|
__props__.__dict__["storage_utilization_in_bytes"] = None
|
1234
1302
|
__props__.__dict__["system_tags"] = None
|
1235
1303
|
__props__.__dict__["time_created"] = None
|
1304
|
+
__props__.__dict__["time_last_backup_scheduled"] = None
|
1305
|
+
__props__.__dict__["time_next_backup_scheduled"] = None
|
1236
1306
|
__props__.__dict__["time_of_next_maintenance"] = None
|
1237
1307
|
__props__.__dict__["time_ogg_version_supported_until"] = None
|
1238
1308
|
__props__.__dict__["time_updated"] = None
|
@@ -1247,6 +1317,7 @@ class Deployment(pulumi.CustomResource):
|
|
1247
1317
|
def get(resource_name: str,
|
1248
1318
|
id: pulumi.Input[str],
|
1249
1319
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1320
|
+
backup_schedule: Optional[pulumi.Input[Union['DeploymentBackupScheduleArgs', 'DeploymentBackupScheduleArgsDict']]] = None,
|
1250
1321
|
category: Optional[pulumi.Input[str]] = None,
|
1251
1322
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1252
1323
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
@@ -1286,6 +1357,8 @@ class Deployment(pulumi.CustomResource):
|
|
1286
1357
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1287
1358
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1288
1359
|
time_created: Optional[pulumi.Input[str]] = None,
|
1360
|
+
time_last_backup_scheduled: Optional[pulumi.Input[str]] = None,
|
1361
|
+
time_next_backup_scheduled: Optional[pulumi.Input[str]] = None,
|
1289
1362
|
time_of_next_maintenance: Optional[pulumi.Input[str]] = None,
|
1290
1363
|
time_ogg_version_supported_until: Optional[pulumi.Input[str]] = None,
|
1291
1364
|
time_updated: Optional[pulumi.Input[str]] = None,
|
@@ -1297,6 +1370,7 @@ class Deployment(pulumi.CustomResource):
|
|
1297
1370
|
:param str resource_name: The unique name of the resulting resource.
|
1298
1371
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1299
1372
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1373
|
+
:param pulumi.Input[Union['DeploymentBackupScheduleArgs', 'DeploymentBackupScheduleArgsDict']] backup_schedule: (Updatable) Defines the backup schedule details for create operation.
|
1300
1374
|
:param pulumi.Input[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'.
|
1301
1375
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
1302
1376
|
:param pulumi.Input[int] cpu_core_count: (Updatable) The Minimum number of OCPUs to be made available for this Deployment.
|
@@ -1334,6 +1408,8 @@ class Deployment(pulumi.CustomResource):
|
|
1334
1408
|
:param pulumi.Input[str] subnet_id: (Updatable) 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.
|
1335
1409
|
:param pulumi.Input[Mapping[str, pulumi.Input[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}}`
|
1336
1410
|
:param pulumi.Input[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`.
|
1411
|
+
:param pulumi.Input[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`.
|
1412
|
+
:param pulumi.Input[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`.
|
1337
1413
|
:param pulumi.Input[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`.
|
1338
1414
|
:param pulumi.Input[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`.
|
1339
1415
|
:param pulumi.Input[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`.
|
@@ -1343,6 +1419,7 @@ class Deployment(pulumi.CustomResource):
|
|
1343
1419
|
|
1344
1420
|
__props__ = _DeploymentState.__new__(_DeploymentState)
|
1345
1421
|
|
1422
|
+
__props__.__dict__["backup_schedule"] = backup_schedule
|
1346
1423
|
__props__.__dict__["category"] = category
|
1347
1424
|
__props__.__dict__["compartment_id"] = compartment_id
|
1348
1425
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
@@ -1382,12 +1459,22 @@ class Deployment(pulumi.CustomResource):
|
|
1382
1459
|
__props__.__dict__["subnet_id"] = subnet_id
|
1383
1460
|
__props__.__dict__["system_tags"] = system_tags
|
1384
1461
|
__props__.__dict__["time_created"] = time_created
|
1462
|
+
__props__.__dict__["time_last_backup_scheduled"] = time_last_backup_scheduled
|
1463
|
+
__props__.__dict__["time_next_backup_scheduled"] = time_next_backup_scheduled
|
1385
1464
|
__props__.__dict__["time_of_next_maintenance"] = time_of_next_maintenance
|
1386
1465
|
__props__.__dict__["time_ogg_version_supported_until"] = time_ogg_version_supported_until
|
1387
1466
|
__props__.__dict__["time_updated"] = time_updated
|
1388
1467
|
__props__.__dict__["time_upgrade_required"] = time_upgrade_required
|
1389
1468
|
return Deployment(resource_name, opts=opts, __props__=__props__)
|
1390
1469
|
|
1470
|
+
@property
|
1471
|
+
@pulumi.getter(name="backupSchedule")
|
1472
|
+
def backup_schedule(self) -> pulumi.Output['outputs.DeploymentBackupSchedule']:
|
1473
|
+
"""
|
1474
|
+
(Updatable) Defines the backup schedule details for create operation.
|
1475
|
+
"""
|
1476
|
+
return pulumi.get(self, "backup_schedule")
|
1477
|
+
|
1391
1478
|
@property
|
1392
1479
|
@pulumi.getter
|
1393
1480
|
def category(self) -> pulumi.Output[str]:
|
@@ -1694,6 +1781,22 @@ class Deployment(pulumi.CustomResource):
|
|
1694
1781
|
"""
|
1695
1782
|
return pulumi.get(self, "time_created")
|
1696
1783
|
|
1784
|
+
@property
|
1785
|
+
@pulumi.getter(name="timeLastBackupScheduled")
|
1786
|
+
def time_last_backup_scheduled(self) -> pulumi.Output[str]:
|
1787
|
+
"""
|
1788
|
+
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`.
|
1789
|
+
"""
|
1790
|
+
return pulumi.get(self, "time_last_backup_scheduled")
|
1791
|
+
|
1792
|
+
@property
|
1793
|
+
@pulumi.getter(name="timeNextBackupScheduled")
|
1794
|
+
def time_next_backup_scheduled(self) -> pulumi.Output[str]:
|
1795
|
+
"""
|
1796
|
+
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`.
|
1797
|
+
"""
|
1798
|
+
return pulumi.get(self, "time_next_backup_scheduled")
|
1799
|
+
|
1697
1800
|
@property
|
1698
1801
|
@pulumi.getter(name="timeOfNextMaintenance")
|
1699
1802
|
def time_of_next_maintenance(self) -> pulumi.Output[str]:
|
@@ -203,6 +203,7 @@ class DeploymentBackupArgs:
|
|
203
203
|
@pulumi.input_type
|
204
204
|
class _DeploymentBackupState:
|
205
205
|
def __init__(__self__, *,
|
206
|
+
backup_source_type: Optional[pulumi.Input[str]] = None,
|
206
207
|
backup_type: Optional[pulumi.Input[str]] = None,
|
207
208
|
bucket: Optional[pulumi.Input[str]] = None,
|
208
209
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -228,6 +229,7 @@ class _DeploymentBackupState:
|
|
228
229
|
time_updated: Optional[pulumi.Input[str]] = None):
|
229
230
|
"""
|
230
231
|
Input properties used for looking up and filtering DeploymentBackup resources.
|
232
|
+
:param pulumi.Input[str] backup_source_type: Possible deployment backup source types.
|
231
233
|
:param pulumi.Input[str] backup_type: Possible Deployment backup types.
|
232
234
|
:param pulumi.Input[str] bucket: Name of the bucket where the object is to be uploaded in the object storage
|
233
235
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
@@ -255,6 +257,8 @@ class _DeploymentBackupState:
|
|
255
257
|
:param pulumi.Input[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`.
|
256
258
|
:param pulumi.Input[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`.
|
257
259
|
"""
|
260
|
+
if backup_source_type is not None:
|
261
|
+
pulumi.set(__self__, "backup_source_type", backup_source_type)
|
258
262
|
if backup_type is not None:
|
259
263
|
pulumi.set(__self__, "backup_type", backup_type)
|
260
264
|
if bucket is not None:
|
@@ -302,6 +306,18 @@ class _DeploymentBackupState:
|
|
302
306
|
if time_updated is not None:
|
303
307
|
pulumi.set(__self__, "time_updated", time_updated)
|
304
308
|
|
309
|
+
@property
|
310
|
+
@pulumi.getter(name="backupSourceType")
|
311
|
+
def backup_source_type(self) -> Optional[pulumi.Input[str]]:
|
312
|
+
"""
|
313
|
+
Possible deployment backup source types.
|
314
|
+
"""
|
315
|
+
return pulumi.get(self, "backup_source_type")
|
316
|
+
|
317
|
+
@backup_source_type.setter
|
318
|
+
def backup_source_type(self, value: Optional[pulumi.Input[str]]):
|
319
|
+
pulumi.set(self, "backup_source_type", value)
|
320
|
+
|
305
321
|
@property
|
306
322
|
@pulumi.getter(name="backupType")
|
307
323
|
def backup_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -756,6 +772,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
756
772
|
if object is None and not opts.urn:
|
757
773
|
raise TypeError("Missing required property 'object'")
|
758
774
|
__props__.__dict__["object"] = object
|
775
|
+
__props__.__dict__["backup_source_type"] = None
|
759
776
|
__props__.__dict__["backup_type"] = None
|
760
777
|
__props__.__dict__["deployment_type"] = None
|
761
778
|
__props__.__dict__["is_automatic"] = None
|
@@ -778,6 +795,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
778
795
|
def get(resource_name: str,
|
779
796
|
id: pulumi.Input[str],
|
780
797
|
opts: Optional[pulumi.ResourceOptions] = None,
|
798
|
+
backup_source_type: Optional[pulumi.Input[str]] = None,
|
781
799
|
backup_type: Optional[pulumi.Input[str]] = None,
|
782
800
|
bucket: Optional[pulumi.Input[str]] = None,
|
783
801
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -808,6 +826,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
808
826
|
:param str resource_name: The unique name of the resulting resource.
|
809
827
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
810
828
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
829
|
+
:param pulumi.Input[str] backup_source_type: Possible deployment backup source types.
|
811
830
|
:param pulumi.Input[str] backup_type: Possible Deployment backup types.
|
812
831
|
:param pulumi.Input[str] bucket: Name of the bucket where the object is to be uploaded in the object storage
|
813
832
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
@@ -839,6 +858,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
839
858
|
|
840
859
|
__props__ = _DeploymentBackupState.__new__(_DeploymentBackupState)
|
841
860
|
|
861
|
+
__props__.__dict__["backup_source_type"] = backup_source_type
|
842
862
|
__props__.__dict__["backup_type"] = backup_type
|
843
863
|
__props__.__dict__["bucket"] = bucket
|
844
864
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -864,6 +884,14 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
864
884
|
__props__.__dict__["time_updated"] = time_updated
|
865
885
|
return DeploymentBackup(resource_name, opts=opts, __props__=__props__)
|
866
886
|
|
887
|
+
@property
|
888
|
+
@pulumi.getter(name="backupSourceType")
|
889
|
+
def backup_source_type(self) -> pulumi.Output[str]:
|
890
|
+
"""
|
891
|
+
Possible deployment backup source types.
|
892
|
+
"""
|
893
|
+
return pulumi.get(self, "backup_source_type")
|
894
|
+
|
867
895
|
@property
|
868
896
|
@pulumi.getter(name="backupType")
|
869
897
|
def backup_type(self) -> pulumi.Output[str]:
|
@@ -27,7 +27,10 @@ class GetDeploymentResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDeployment.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, category=None, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, environment_type=None, fqdn=None, freeform_tags=None, id=None, ingress_ips=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_lock_override=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, load_balancer_id=None, load_balancer_subnet_id=None, locks=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
|
30
|
+
def __init__(__self__, backup_schedules=None, category=None, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, environment_type=None, fqdn=None, freeform_tags=None, id=None, ingress_ips=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_lock_override=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, load_balancer_id=None, load_balancer_subnet_id=None, locks=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_last_backup_scheduled=None, time_next_backup_scheduled=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
|
31
|
+
if backup_schedules and not isinstance(backup_schedules, list):
|
32
|
+
raise TypeError("Expected argument 'backup_schedules' to be a list")
|
33
|
+
pulumi.set(__self__, "backup_schedules", backup_schedules)
|
31
34
|
if category and not isinstance(category, str):
|
32
35
|
raise TypeError("Expected argument 'category' to be a str")
|
33
36
|
pulumi.set(__self__, "category", category)
|
@@ -151,6 +154,12 @@ class GetDeploymentResult:
|
|
151
154
|
if time_created and not isinstance(time_created, str):
|
152
155
|
raise TypeError("Expected argument 'time_created' to be a str")
|
153
156
|
pulumi.set(__self__, "time_created", time_created)
|
157
|
+
if time_last_backup_scheduled and not isinstance(time_last_backup_scheduled, str):
|
158
|
+
raise TypeError("Expected argument 'time_last_backup_scheduled' to be a str")
|
159
|
+
pulumi.set(__self__, "time_last_backup_scheduled", time_last_backup_scheduled)
|
160
|
+
if time_next_backup_scheduled and not isinstance(time_next_backup_scheduled, str):
|
161
|
+
raise TypeError("Expected argument 'time_next_backup_scheduled' to be a str")
|
162
|
+
pulumi.set(__self__, "time_next_backup_scheduled", time_next_backup_scheduled)
|
154
163
|
if time_of_next_maintenance and not isinstance(time_of_next_maintenance, str):
|
155
164
|
raise TypeError("Expected argument 'time_of_next_maintenance' to be a str")
|
156
165
|
pulumi.set(__self__, "time_of_next_maintenance", time_of_next_maintenance)
|
@@ -164,6 +173,14 @@ class GetDeploymentResult:
|
|
164
173
|
raise TypeError("Expected argument 'time_upgrade_required' to be a str")
|
165
174
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
166
175
|
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="backupSchedules")
|
178
|
+
def backup_schedules(self) -> Sequence['outputs.GetDeploymentBackupScheduleResult']:
|
179
|
+
"""
|
180
|
+
Defines the schedule of the deployment backup.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "backup_schedules")
|
183
|
+
|
167
184
|
@property
|
168
185
|
@pulumi.getter
|
169
186
|
def category(self) -> str:
|
@@ -486,6 +503,22 @@ class GetDeploymentResult:
|
|
486
503
|
"""
|
487
504
|
return pulumi.get(self, "time_created")
|
488
505
|
|
506
|
+
@property
|
507
|
+
@pulumi.getter(name="timeLastBackupScheduled")
|
508
|
+
def time_last_backup_scheduled(self) -> str:
|
509
|
+
"""
|
510
|
+
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`.
|
511
|
+
"""
|
512
|
+
return pulumi.get(self, "time_last_backup_scheduled")
|
513
|
+
|
514
|
+
@property
|
515
|
+
@pulumi.getter(name="timeNextBackupScheduled")
|
516
|
+
def time_next_backup_scheduled(self) -> str:
|
517
|
+
"""
|
518
|
+
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`.
|
519
|
+
"""
|
520
|
+
return pulumi.get(self, "time_next_backup_scheduled")
|
521
|
+
|
489
522
|
@property
|
490
523
|
@pulumi.getter(name="timeOfNextMaintenance")
|
491
524
|
def time_of_next_maintenance(self) -> str:
|
@@ -525,6 +558,7 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
|
|
525
558
|
if False:
|
526
559
|
yield self
|
527
560
|
return GetDeploymentResult(
|
561
|
+
backup_schedules=self.backup_schedules,
|
528
562
|
category=self.category,
|
529
563
|
compartment_id=self.compartment_id,
|
530
564
|
cpu_core_count=self.cpu_core_count,
|
@@ -566,6 +600,8 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
|
|
566
600
|
subnet_id=self.subnet_id,
|
567
601
|
system_tags=self.system_tags,
|
568
602
|
time_created=self.time_created,
|
603
|
+
time_last_backup_scheduled=self.time_last_backup_scheduled,
|
604
|
+
time_next_backup_scheduled=self.time_next_backup_scheduled,
|
569
605
|
time_of_next_maintenance=self.time_of_next_maintenance,
|
570
606
|
time_ogg_version_supported_until=self.time_ogg_version_supported_until,
|
571
607
|
time_updated=self.time_updated,
|
@@ -597,6 +633,7 @@ def get_deployment(deployment_id: Optional[str] = None,
|
|
597
633
|
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getDeployment:getDeployment', __args__, opts=opts, typ=GetDeploymentResult).value
|
598
634
|
|
599
635
|
return AwaitableGetDeploymentResult(
|
636
|
+
backup_schedules=pulumi.get(__ret__, 'backup_schedules'),
|
600
637
|
category=pulumi.get(__ret__, 'category'),
|
601
638
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
602
639
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
@@ -638,6 +675,8 @@ def get_deployment(deployment_id: Optional[str] = None,
|
|
638
675
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
639
676
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
640
677
|
time_created=pulumi.get(__ret__, 'time_created'),
|
678
|
+
time_last_backup_scheduled=pulumi.get(__ret__, 'time_last_backup_scheduled'),
|
679
|
+
time_next_backup_scheduled=pulumi.get(__ret__, 'time_next_backup_scheduled'),
|
641
680
|
time_of_next_maintenance=pulumi.get(__ret__, 'time_of_next_maintenance'),
|
642
681
|
time_ogg_version_supported_until=pulumi.get(__ret__, 'time_ogg_version_supported_until'),
|
643
682
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
@@ -666,6 +705,7 @@ def get_deployment_output(deployment_id: Optional[pulumi.Input[str]] = None,
|
|
666
705
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
667
706
|
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getDeployment:getDeployment', __args__, opts=opts, typ=GetDeploymentResult)
|
668
707
|
return __ret__.apply(lambda __response__: GetDeploymentResult(
|
708
|
+
backup_schedules=pulumi.get(__response__, 'backup_schedules'),
|
669
709
|
category=pulumi.get(__response__, 'category'),
|
670
710
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
671
711
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
@@ -707,6 +747,8 @@ def get_deployment_output(deployment_id: Optional[pulumi.Input[str]] = None,
|
|
707
747
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
708
748
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
709
749
|
time_created=pulumi.get(__response__, 'time_created'),
|
750
|
+
time_last_backup_scheduled=pulumi.get(__response__, 'time_last_backup_scheduled'),
|
751
|
+
time_next_backup_scheduled=pulumi.get(__response__, 'time_next_backup_scheduled'),
|
710
752
|
time_of_next_maintenance=pulumi.get(__response__, 'time_of_next_maintenance'),
|
711
753
|
time_ogg_version_supported_until=pulumi.get(__response__, 'time_ogg_version_supported_until'),
|
712
754
|
time_updated=pulumi.get(__response__, 'time_updated'),
|