pulumi-oci 2.26.0a1741943394__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 +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.26.0a1741943394.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741943394.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +84 -57
- {pulumi_oci-2.26.0a1741943394.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741943394.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,10 @@ class GetDeploymentBackupResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDeploymentBackup.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, backup_type=None, bucket=None, compartment_id=None, defined_tags=None, deployment_backup_id=None, deployment_id=None, deployment_type=None, display_name=None, freeform_tags=None, id=None, is_automatic=None, is_lock_override=None, is_metadata_only=None, lifecycle_details=None, locks=None, namespace=None, object=None, ogg_version=None, size_in_bytes=None, state=None, system_tags=None, time_backup_finished=None, time_created=None, time_of_backup=None, time_updated=None):
|
30
|
+
def __init__(__self__, backup_source_type=None, backup_type=None, bucket=None, compartment_id=None, defined_tags=None, deployment_backup_id=None, deployment_id=None, deployment_type=None, display_name=None, freeform_tags=None, id=None, is_automatic=None, is_lock_override=None, is_metadata_only=None, lifecycle_details=None, locks=None, namespace=None, object=None, ogg_version=None, size_in_bytes=None, state=None, system_tags=None, time_backup_finished=None, time_created=None, time_of_backup=None, time_updated=None):
|
31
|
+
if backup_source_type and not isinstance(backup_source_type, str):
|
32
|
+
raise TypeError("Expected argument 'backup_source_type' to be a str")
|
33
|
+
pulumi.set(__self__, "backup_source_type", backup_source_type)
|
31
34
|
if backup_type and not isinstance(backup_type, str):
|
32
35
|
raise TypeError("Expected argument 'backup_type' to be a str")
|
33
36
|
pulumi.set(__self__, "backup_type", backup_type)
|
@@ -104,6 +107,14 @@ class GetDeploymentBackupResult:
|
|
104
107
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
105
108
|
pulumi.set(__self__, "time_updated", time_updated)
|
106
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="backupSourceType")
|
112
|
+
def backup_source_type(self) -> str:
|
113
|
+
"""
|
114
|
+
Possible deployment backup source types.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "backup_source_type")
|
117
|
+
|
107
118
|
@property
|
108
119
|
@pulumi.getter(name="backupType")
|
109
120
|
def backup_type(self) -> str:
|
@@ -305,6 +316,7 @@ class AwaitableGetDeploymentBackupResult(GetDeploymentBackupResult):
|
|
305
316
|
if False:
|
306
317
|
yield self
|
307
318
|
return GetDeploymentBackupResult(
|
319
|
+
backup_source_type=self.backup_source_type,
|
308
320
|
backup_type=self.backup_type,
|
309
321
|
bucket=self.bucket,
|
310
322
|
compartment_id=self.compartment_id,
|
@@ -357,6 +369,7 @@ def get_deployment_backup(deployment_backup_id: Optional[str] = None,
|
|
357
369
|
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getDeploymentBackup:getDeploymentBackup', __args__, opts=opts, typ=GetDeploymentBackupResult).value
|
358
370
|
|
359
371
|
return AwaitableGetDeploymentBackupResult(
|
372
|
+
backup_source_type=pulumi.get(__ret__, 'backup_source_type'),
|
360
373
|
backup_type=pulumi.get(__ret__, 'backup_type'),
|
361
374
|
bucket=pulumi.get(__ret__, 'bucket'),
|
362
375
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
@@ -406,6 +419,7 @@ def get_deployment_backup_output(deployment_backup_id: Optional[pulumi.Input[str
|
|
406
419
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
407
420
|
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getDeploymentBackup:getDeploymentBackup', __args__, opts=opts, typ=GetDeploymentBackupResult)
|
408
421
|
return __ret__.apply(lambda __response__: GetDeploymentBackupResult(
|
422
|
+
backup_source_type=pulumi.get(__response__, 'backup_source_type'),
|
409
423
|
backup_type=pulumi.get(__response__, 'backup_type'),
|
410
424
|
bucket=pulumi.get(__response__, 'bucket'),
|
411
425
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
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__, *,
|
@@ -36,6 +36,8 @@ from .get_management_station import *
|
|
36
36
|
from .get_management_station_mirrors import *
|
37
37
|
from .get_management_stations import *
|
38
38
|
from .get_profile import *
|
39
|
+
from .get_profile_available_software_sources import *
|
40
|
+
from .get_profile_version import *
|
39
41
|
from .get_profiles import *
|
40
42
|
from .get_scheduled_job import *
|
41
43
|
from .get_scheduled_jobs import *
|
@@ -43,6 +45,8 @@ from .get_software_package import *
|
|
43
45
|
from .get_software_package_software_source import *
|
44
46
|
from .get_software_packages import *
|
45
47
|
from .get_software_source import *
|
48
|
+
from .get_software_source_available_software_packages import *
|
49
|
+
from .get_software_source_manifest import *
|
46
50
|
from .get_software_source_module_stream import *
|
47
51
|
from .get_software_source_module_stream_profile import *
|
48
52
|
from .get_software_source_module_stream_profiles import *
|
@@ -59,6 +63,7 @@ from .lifecycle_environment import *
|
|
59
63
|
from .lifecycle_stage_attach_managed_instances_management import *
|
60
64
|
from .lifecycle_stage_detach_managed_instances_management import *
|
61
65
|
from .lifecycle_stage_promote_software_source_management import *
|
66
|
+
from .lifecycle_stage_reboot_management import *
|
62
67
|
from .managed_instance import *
|
63
68
|
from .managed_instance_attach_profile_management import *
|
64
69
|
from .managed_instance_detach_profile_management import *
|
@@ -70,18 +75,31 @@ from .managed_instance_group_detach_software_sources_management import *
|
|
70
75
|
from .managed_instance_group_install_packages_management import *
|
71
76
|
from .managed_instance_group_install_windows_updates_management import *
|
72
77
|
from .managed_instance_group_manage_module_streams_management import *
|
78
|
+
from .managed_instance_group_reboot_management import *
|
73
79
|
from .managed_instance_group_remove_packages_management import *
|
74
80
|
from .managed_instance_group_update_all_packages_management import *
|
75
81
|
from .managed_instance_install_windows_updates_management import *
|
82
|
+
from .managed_instance_reboot_management import *
|
76
83
|
from .managed_instance_update_packages_management import *
|
77
84
|
from .management_station import *
|
85
|
+
from .management_station_associate_managed_instances_management import *
|
78
86
|
from .management_station_mirror_synchronize_management import *
|
79
87
|
from .management_station_refresh_management import *
|
80
88
|
from .management_station_synchronize_mirrors_management import *
|
81
89
|
from .profile import *
|
90
|
+
from .profile_attach_lifecycle_stage_management import *
|
91
|
+
from .profile_attach_managed_instance_group_management import *
|
92
|
+
from .profile_attach_management_station_management import *
|
93
|
+
from .profile_attach_software_sources_management import *
|
94
|
+
from .profile_detach_software_sources_management import *
|
82
95
|
from .scheduled_job import *
|
83
96
|
from .software_source import *
|
84
97
|
from .software_source_add_packages_management import *
|
85
98
|
from .software_source_change_availability_management import *
|
99
|
+
from .software_source_generate_metadata_management import *
|
100
|
+
from .software_source_manifest import *
|
101
|
+
from .software_source_remove_packages_management import *
|
102
|
+
from .software_source_replace_packages_management import *
|
103
|
+
from .work_request_rerun_management import *
|
86
104
|
from ._inputs import *
|
87
105
|
from . import outputs
|