pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.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 +9 -0
- pulumi_oci/core/_inputs.py +196 -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/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +847 -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/identity/_inputs.py +9 -49
- pulumi_oci/identity/domains_app.py +34 -0
- pulumi_oci/identity/get_domains_app.py +12 -1
- pulumi_oci/identity/outputs.py +20 -47
- 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/sch/_inputs.py +24 -24
- pulumi_oci/sch/connector.py +46 -18
- pulumi_oci/sch/get_service_connector.py +16 -8
- pulumi_oci/sch/outputs.py +53 -50
- pulumi_oci/stackmonitoring/_inputs.py +191 -0
- pulumi_oci/stackmonitoring/config.py +307 -23
- pulumi_oci/stackmonitoring/get_config.py +90 -5
- pulumi_oci/stackmonitoring/get_maintenance_window.py +43 -1
- pulumi_oci/stackmonitoring/maintenance_window.py +136 -2
- pulumi_oci/stackmonitoring/outputs.py +448 -3
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +100 -71
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.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__, *,
|
pulumi_oci/identity/_inputs.py
CHANGED
@@ -7957,21 +7957,7 @@ if not MYPY:
|
|
7957
7957
|
* type: string
|
7958
7958
|
* uniqueness: none
|
7959
7959
|
"""
|
7960
|
-
|
7961
|
-
"""
|
7962
|
-
(Updatable) URI of the policy.
|
7963
|
-
|
7964
|
-
**Added In:** 2209070044
|
7965
|
-
|
7966
|
-
**SCIM++ Properties:**
|
7967
|
-
* idcsSearchable: false
|
7968
|
-
* multiValued: false
|
7969
|
-
* mutability: readOnly
|
7970
|
-
* required: false
|
7971
|
-
* returned: default
|
7972
|
-
* type: reference
|
7973
|
-
* uniqueness: none
|
7974
|
-
"""
|
7960
|
+
_ref: NotRequired[pulumi.Input[str]]
|
7975
7961
|
elif False:
|
7976
7962
|
DomainsAppRadiusPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
7977
7963
|
|
@@ -7979,7 +7965,7 @@ elif False:
|
|
7979
7965
|
class DomainsAppRadiusPolicyArgs:
|
7980
7966
|
def __init__(__self__, *,
|
7981
7967
|
value: pulumi.Input[str],
|
7982
|
-
|
7968
|
+
_ref: Optional[pulumi.Input[str]] = None):
|
7983
7969
|
"""
|
7984
7970
|
:param pulumi.Input[str] value: (Updatable) Identifier of the Policy.
|
7985
7971
|
|
@@ -7994,22 +7980,10 @@ class DomainsAppRadiusPolicyArgs:
|
|
7994
7980
|
* returned: default
|
7995
7981
|
* type: string
|
7996
7982
|
* uniqueness: none
|
7997
|
-
:param pulumi.Input[str] ref: (Updatable) URI of the policy.
|
7998
|
-
|
7999
|
-
**Added In:** 2209070044
|
8000
|
-
|
8001
|
-
**SCIM++ Properties:**
|
8002
|
-
* idcsSearchable: false
|
8003
|
-
* multiValued: false
|
8004
|
-
* mutability: readOnly
|
8005
|
-
* required: false
|
8006
|
-
* returned: default
|
8007
|
-
* type: reference
|
8008
|
-
* uniqueness: none
|
8009
7983
|
"""
|
8010
7984
|
pulumi.set(__self__, "value", value)
|
8011
|
-
if
|
8012
|
-
pulumi.set(__self__, "
|
7985
|
+
if _ref is not None:
|
7986
|
+
pulumi.set(__self__, "_ref", _ref)
|
8013
7987
|
|
8014
7988
|
@property
|
8015
7989
|
@pulumi.getter
|
@@ -8037,26 +8011,12 @@ class DomainsAppRadiusPolicyArgs:
|
|
8037
8011
|
|
8038
8012
|
@property
|
8039
8013
|
@pulumi.getter
|
8040
|
-
def
|
8041
|
-
""
|
8042
|
-
(Updatable) URI of the policy.
|
8043
|
-
|
8044
|
-
**Added In:** 2209070044
|
8045
|
-
|
8046
|
-
**SCIM++ Properties:**
|
8047
|
-
* idcsSearchable: false
|
8048
|
-
* multiValued: false
|
8049
|
-
* mutability: readOnly
|
8050
|
-
* required: false
|
8051
|
-
* returned: default
|
8052
|
-
* type: reference
|
8053
|
-
* uniqueness: none
|
8054
|
-
"""
|
8055
|
-
return pulumi.get(self, "ref")
|
8014
|
+
def _ref(self) -> Optional[pulumi.Input[str]]:
|
8015
|
+
return pulumi.get(self, "_ref")
|
8056
8016
|
|
8057
|
-
@
|
8058
|
-
def
|
8059
|
-
pulumi.set(self, "
|
8017
|
+
@_ref.setter
|
8018
|
+
def _ref(self, value: Optional[pulumi.Input[str]]):
|
8019
|
+
pulumi.set(self, "_ref", value)
|
8060
8020
|
|
8061
8021
|
|
8062
8022
|
if not MYPY:
|
@@ -54,6 +54,7 @@ class DomainsAppArgs:
|
|
54
54
|
description: Optional[pulumi.Input[str]] = None,
|
55
55
|
disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
|
56
56
|
error_page_url: Optional[pulumi.Input[str]] = None,
|
57
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
57
58
|
home_page_url: Optional[pulumi.Input[str]] = None,
|
58
59
|
icon: Optional[pulumi.Input[str]] = None,
|
59
60
|
id_token_enc_algo: Optional[pulumi.Input[str]] = None,
|
@@ -1055,6 +1056,8 @@ class DomainsAppArgs:
|
|
1055
1056
|
pulumi.set(__self__, "disable_kmsi_token_authentication", disable_kmsi_token_authentication)
|
1056
1057
|
if error_page_url is not None:
|
1057
1058
|
pulumi.set(__self__, "error_page_url", error_page_url)
|
1059
|
+
if force_delete is not None:
|
1060
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
1058
1061
|
if home_page_url is not None:
|
1059
1062
|
pulumi.set(__self__, "home_page_url", home_page_url)
|
1060
1063
|
if icon is not None:
|
@@ -1868,6 +1871,15 @@ class DomainsAppArgs:
|
|
1868
1871
|
def error_page_url(self, value: Optional[pulumi.Input[str]]):
|
1869
1872
|
pulumi.set(self, "error_page_url", value)
|
1870
1873
|
|
1874
|
+
@property
|
1875
|
+
@pulumi.getter(name="forceDelete")
|
1876
|
+
def force_delete(self) -> Optional[pulumi.Input[bool]]:
|
1877
|
+
return pulumi.get(self, "force_delete")
|
1878
|
+
|
1879
|
+
@force_delete.setter
|
1880
|
+
def force_delete(self, value: Optional[pulumi.Input[bool]]):
|
1881
|
+
pulumi.set(self, "force_delete", value)
|
1882
|
+
|
1871
1883
|
@property
|
1872
1884
|
@pulumi.getter(name="homePageUrl")
|
1873
1885
|
def home_page_url(self) -> Optional[pulumi.Input[str]]:
|
@@ -3143,6 +3155,7 @@ class _DomainsAppState:
|
|
3143
3155
|
domain_ocid: Optional[pulumi.Input[str]] = None,
|
3144
3156
|
editable_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppEditableAttributeArgs']]]] = None,
|
3145
3157
|
error_page_url: Optional[pulumi.Input[str]] = None,
|
3158
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
3146
3159
|
granted_app_roles: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantedAppRoleArgs']]]] = None,
|
3147
3160
|
grants: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantArgs']]]] = None,
|
3148
3161
|
hashed_client_secret: Optional[pulumi.Input[str]] = None,
|
@@ -4464,6 +4477,8 @@ class _DomainsAppState:
|
|
4464
4477
|
pulumi.set(__self__, "editable_attributes", editable_attributes)
|
4465
4478
|
if error_page_url is not None:
|
4466
4479
|
pulumi.set(__self__, "error_page_url", error_page_url)
|
4480
|
+
if force_delete is not None:
|
4481
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
4467
4482
|
if granted_app_roles is not None:
|
4468
4483
|
pulumi.set(__self__, "granted_app_roles", granted_app_roles)
|
4469
4484
|
if grants is not None:
|
@@ -5484,6 +5499,15 @@ class _DomainsAppState:
|
|
5484
5499
|
def error_page_url(self, value: Optional[pulumi.Input[str]]):
|
5485
5500
|
pulumi.set(self, "error_page_url", value)
|
5486
5501
|
|
5502
|
+
@property
|
5503
|
+
@pulumi.getter(name="forceDelete")
|
5504
|
+
def force_delete(self) -> Optional[pulumi.Input[bool]]:
|
5505
|
+
return pulumi.get(self, "force_delete")
|
5506
|
+
|
5507
|
+
@force_delete.setter
|
5508
|
+
def force_delete(self, value: Optional[pulumi.Input[bool]]):
|
5509
|
+
pulumi.set(self, "force_delete", value)
|
5510
|
+
|
5487
5511
|
@property
|
5488
5512
|
@pulumi.getter(name="grantedAppRoles")
|
5489
5513
|
def granted_app_roles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantedAppRoleArgs']]]]:
|
@@ -7152,6 +7176,7 @@ class DomainsApp(pulumi.CustomResource):
|
|
7152
7176
|
disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
|
7153
7177
|
display_name: Optional[pulumi.Input[str]] = None,
|
7154
7178
|
error_page_url: Optional[pulumi.Input[str]] = None,
|
7179
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
7155
7180
|
home_page_url: Optional[pulumi.Input[str]] = None,
|
7156
7181
|
icon: Optional[pulumi.Input[str]] = None,
|
7157
7182
|
id_token_enc_algo: Optional[pulumi.Input[str]] = None,
|
@@ -8172,6 +8197,7 @@ class DomainsApp(pulumi.CustomResource):
|
|
8172
8197
|
disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
|
8173
8198
|
display_name: Optional[pulumi.Input[str]] = None,
|
8174
8199
|
error_page_url: Optional[pulumi.Input[str]] = None,
|
8200
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
8175
8201
|
home_page_url: Optional[pulumi.Input[str]] = None,
|
8176
8202
|
icon: Optional[pulumi.Input[str]] = None,
|
8177
8203
|
id_token_enc_algo: Optional[pulumi.Input[str]] = None,
|
@@ -8280,6 +8306,7 @@ class DomainsApp(pulumi.CustomResource):
|
|
8280
8306
|
raise TypeError("Missing required property 'display_name'")
|
8281
8307
|
__props__.__dict__["display_name"] = display_name
|
8282
8308
|
__props__.__dict__["error_page_url"] = error_page_url
|
8309
|
+
__props__.__dict__["force_delete"] = force_delete
|
8283
8310
|
__props__.__dict__["home_page_url"] = home_page_url
|
8284
8311
|
__props__.__dict__["icon"] = icon
|
8285
8312
|
__props__.__dict__["id_token_enc_algo"] = id_token_enc_algo
|
@@ -8424,6 +8451,7 @@ class DomainsApp(pulumi.CustomResource):
|
|
8424
8451
|
domain_ocid: Optional[pulumi.Input[str]] = None,
|
8425
8452
|
editable_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppEditableAttributeArgs', 'DomainsAppEditableAttributeArgsDict']]]]] = None,
|
8426
8453
|
error_page_url: Optional[pulumi.Input[str]] = None,
|
8454
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
8427
8455
|
granted_app_roles: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppGrantedAppRoleArgs', 'DomainsAppGrantedAppRoleArgsDict']]]]] = None,
|
8428
8456
|
grants: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppGrantArgs', 'DomainsAppGrantArgsDict']]]]] = None,
|
8429
8457
|
hashed_client_secret: Optional[pulumi.Input[str]] = None,
|
@@ -9714,6 +9742,7 @@ class DomainsApp(pulumi.CustomResource):
|
|
9714
9742
|
__props__.__dict__["domain_ocid"] = domain_ocid
|
9715
9743
|
__props__.__dict__["editable_attributes"] = editable_attributes
|
9716
9744
|
__props__.__dict__["error_page_url"] = error_page_url
|
9745
|
+
__props__.__dict__["force_delete"] = force_delete
|
9717
9746
|
__props__.__dict__["granted_app_roles"] = granted_app_roles
|
9718
9747
|
__props__.__dict__["grants"] = grants
|
9719
9748
|
__props__.__dict__["hashed_client_secret"] = hashed_client_secret
|
@@ -10494,6 +10523,11 @@ class DomainsApp(pulumi.CustomResource):
|
|
10494
10523
|
"""
|
10495
10524
|
return pulumi.get(self, "error_page_url")
|
10496
10525
|
|
10526
|
+
@property
|
10527
|
+
@pulumi.getter(name="forceDelete")
|
10528
|
+
def force_delete(self) -> pulumi.Output[Optional[bool]]:
|
10529
|
+
return pulumi.get(self, "force_delete")
|
10530
|
+
|
10497
10531
|
@property
|
10498
10532
|
@pulumi.getter(name="grantedAppRoles")
|
10499
10533
|
def granted_app_roles(self) -> pulumi.Output[Sequence['outputs.DomainsAppGrantedAppRole']]:
|