pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -33,8 +33,10 @@ class IntegrationInstanceArgs:
|
|
33
33
|
domain_id: Optional[pulumi.Input[str]] = None,
|
34
34
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
35
35
|
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
36
|
+
failover_trigger: Optional[pulumi.Input[int]] = None,
|
36
37
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
37
38
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
39
|
+
is_disaster_recovery_enabled: Optional[pulumi.Input[bool]] = None,
|
38
40
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
39
41
|
is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
|
40
42
|
network_endpoint_details: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']] = None,
|
@@ -54,8 +56,10 @@ class IntegrationInstanceArgs:
|
|
54
56
|
:param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
|
55
57
|
:param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
|
56
58
|
:param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
|
59
|
+
:param pulumi.Input[int] failover_trigger: (Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
57
60
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
58
61
|
:param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
|
62
|
+
:param pulumi.Input[bool] is_disaster_recovery_enabled: Is Disaster Recovery enabled or not.
|
59
63
|
:param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
|
60
64
|
:param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
|
61
65
|
:param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
|
@@ -85,10 +89,14 @@ class IntegrationInstanceArgs:
|
|
85
89
|
pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
|
86
90
|
if extend_data_retention_trigger is not None:
|
87
91
|
pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
|
92
|
+
if failover_trigger is not None:
|
93
|
+
pulumi.set(__self__, "failover_trigger", failover_trigger)
|
88
94
|
if freeform_tags is not None:
|
89
95
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
90
96
|
if idcs_at is not None:
|
91
97
|
pulumi.set(__self__, "idcs_at", idcs_at)
|
98
|
+
if is_disaster_recovery_enabled is not None:
|
99
|
+
pulumi.set(__self__, "is_disaster_recovery_enabled", is_disaster_recovery_enabled)
|
92
100
|
if is_file_server_enabled is not None:
|
93
101
|
pulumi.set(__self__, "is_file_server_enabled", is_file_server_enabled)
|
94
102
|
if is_visual_builder_enabled is not None:
|
@@ -244,6 +252,18 @@ class IntegrationInstanceArgs:
|
|
244
252
|
def extend_data_retention_trigger(self, value: Optional[pulumi.Input[int]]):
|
245
253
|
pulumi.set(self, "extend_data_retention_trigger", value)
|
246
254
|
|
255
|
+
@property
|
256
|
+
@pulumi.getter(name="failoverTrigger")
|
257
|
+
def failover_trigger(self) -> Optional[pulumi.Input[int]]:
|
258
|
+
"""
|
259
|
+
(Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "failover_trigger")
|
262
|
+
|
263
|
+
@failover_trigger.setter
|
264
|
+
def failover_trigger(self, value: Optional[pulumi.Input[int]]):
|
265
|
+
pulumi.set(self, "failover_trigger", value)
|
266
|
+
|
247
267
|
@property
|
248
268
|
@pulumi.getter(name="freeformTags")
|
249
269
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -268,6 +288,18 @@ class IntegrationInstanceArgs:
|
|
268
288
|
def idcs_at(self, value: Optional[pulumi.Input[str]]):
|
269
289
|
pulumi.set(self, "idcs_at", value)
|
270
290
|
|
291
|
+
@property
|
292
|
+
@pulumi.getter(name="isDisasterRecoveryEnabled")
|
293
|
+
def is_disaster_recovery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
294
|
+
"""
|
295
|
+
Is Disaster Recovery enabled or not.
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "is_disaster_recovery_enabled")
|
298
|
+
|
299
|
+
@is_disaster_recovery_enabled.setter
|
300
|
+
def is_disaster_recovery_enabled(self, value: Optional[pulumi.Input[bool]]):
|
301
|
+
pulumi.set(self, "is_disaster_recovery_enabled", value)
|
302
|
+
|
271
303
|
@property
|
272
304
|
@pulumi.getter(name="isFileServerEnabled")
|
273
305
|
def is_file_server_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -343,18 +375,23 @@ class _IntegrationInstanceState:
|
|
343
375
|
custom_endpoint: Optional[pulumi.Input['IntegrationInstanceCustomEndpointArgs']] = None,
|
344
376
|
data_retention_period: Optional[pulumi.Input[str]] = None,
|
345
377
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
378
|
+
disaster_recovery_details: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceDisasterRecoveryDetailArgs']]]] = None,
|
346
379
|
display_name: Optional[pulumi.Input[str]] = None,
|
347
380
|
domain_id: Optional[pulumi.Input[str]] = None,
|
348
381
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
349
382
|
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
383
|
+
failover_trigger: Optional[pulumi.Input[int]] = None,
|
350
384
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
351
385
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
352
386
|
idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]]] = None,
|
387
|
+
instance_design_time_url: Optional[pulumi.Input[str]] = None,
|
353
388
|
instance_url: Optional[pulumi.Input[str]] = None,
|
354
389
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
355
390
|
is_byol: Optional[pulumi.Input[bool]] = None,
|
391
|
+
is_disaster_recovery_enabled: Optional[pulumi.Input[bool]] = None,
|
356
392
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
357
393
|
is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
|
394
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
358
395
|
message_packs: Optional[pulumi.Input[int]] = None,
|
359
396
|
network_endpoint_details: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']] = None,
|
360
397
|
private_endpoint_outbound_connections: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]] = None,
|
@@ -373,18 +410,22 @@ class _IntegrationInstanceState:
|
|
373
410
|
:param pulumi.Input['IntegrationInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
|
374
411
|
:param pulumi.Input[str] data_retention_period: Data retention period set for given integration instance
|
375
412
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
413
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceDisasterRecoveryDetailArgs']]] disaster_recovery_details: Disaster recovery details for the integration instance created in the region.
|
376
414
|
:param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
|
377
415
|
:param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
|
378
416
|
:param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
|
379
417
|
:param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
|
418
|
+
:param pulumi.Input[int] failover_trigger: (Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
380
419
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
381
420
|
:param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
|
382
421
|
:param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
|
383
422
|
:param pulumi.Input[str] instance_url: The Integration Instance URL.
|
384
423
|
:param pulumi.Input[str] integration_instance_type: (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
385
424
|
:param pulumi.Input[bool] is_byol: (Updatable) Bring your own license.
|
425
|
+
:param pulumi.Input[bool] is_disaster_recovery_enabled: Is Disaster Recovery enabled or not.
|
386
426
|
:param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
|
387
427
|
:param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
|
428
|
+
:param pulumi.Input[str] lifecycle_details: Additional details of lifecycleState or substates
|
388
429
|
:param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
|
389
430
|
:param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
|
390
431
|
:param pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
|
@@ -413,6 +454,8 @@ class _IntegrationInstanceState:
|
|
413
454
|
pulumi.set(__self__, "data_retention_period", data_retention_period)
|
414
455
|
if defined_tags is not None:
|
415
456
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
457
|
+
if disaster_recovery_details is not None:
|
458
|
+
pulumi.set(__self__, "disaster_recovery_details", disaster_recovery_details)
|
416
459
|
if display_name is not None:
|
417
460
|
pulumi.set(__self__, "display_name", display_name)
|
418
461
|
if domain_id is not None:
|
@@ -421,22 +464,30 @@ class _IntegrationInstanceState:
|
|
421
464
|
pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
|
422
465
|
if extend_data_retention_trigger is not None:
|
423
466
|
pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
|
467
|
+
if failover_trigger is not None:
|
468
|
+
pulumi.set(__self__, "failover_trigger", failover_trigger)
|
424
469
|
if freeform_tags is not None:
|
425
470
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
426
471
|
if idcs_at is not None:
|
427
472
|
pulumi.set(__self__, "idcs_at", idcs_at)
|
428
473
|
if idcs_infos is not None:
|
429
474
|
pulumi.set(__self__, "idcs_infos", idcs_infos)
|
475
|
+
if instance_design_time_url is not None:
|
476
|
+
pulumi.set(__self__, "instance_design_time_url", instance_design_time_url)
|
430
477
|
if instance_url is not None:
|
431
478
|
pulumi.set(__self__, "instance_url", instance_url)
|
432
479
|
if integration_instance_type is not None:
|
433
480
|
pulumi.set(__self__, "integration_instance_type", integration_instance_type)
|
434
481
|
if is_byol is not None:
|
435
482
|
pulumi.set(__self__, "is_byol", is_byol)
|
483
|
+
if is_disaster_recovery_enabled is not None:
|
484
|
+
pulumi.set(__self__, "is_disaster_recovery_enabled", is_disaster_recovery_enabled)
|
436
485
|
if is_file_server_enabled is not None:
|
437
486
|
pulumi.set(__self__, "is_file_server_enabled", is_file_server_enabled)
|
438
487
|
if is_visual_builder_enabled is not None:
|
439
488
|
pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
|
489
|
+
if lifecycle_details is not None:
|
490
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
440
491
|
if message_packs is not None:
|
441
492
|
pulumi.set(__self__, "message_packs", message_packs)
|
442
493
|
if network_endpoint_details is not None:
|
@@ -540,6 +591,18 @@ class _IntegrationInstanceState:
|
|
540
591
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
541
592
|
pulumi.set(self, "defined_tags", value)
|
542
593
|
|
594
|
+
@property
|
595
|
+
@pulumi.getter(name="disasterRecoveryDetails")
|
596
|
+
def disaster_recovery_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceDisasterRecoveryDetailArgs']]]]:
|
597
|
+
"""
|
598
|
+
Disaster recovery details for the integration instance created in the region.
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "disaster_recovery_details")
|
601
|
+
|
602
|
+
@disaster_recovery_details.setter
|
603
|
+
def disaster_recovery_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceDisasterRecoveryDetailArgs']]]]):
|
604
|
+
pulumi.set(self, "disaster_recovery_details", value)
|
605
|
+
|
543
606
|
@property
|
544
607
|
@pulumi.getter(name="displayName")
|
545
608
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -588,6 +651,18 @@ class _IntegrationInstanceState:
|
|
588
651
|
def extend_data_retention_trigger(self, value: Optional[pulumi.Input[int]]):
|
589
652
|
pulumi.set(self, "extend_data_retention_trigger", value)
|
590
653
|
|
654
|
+
@property
|
655
|
+
@pulumi.getter(name="failoverTrigger")
|
656
|
+
def failover_trigger(self) -> Optional[pulumi.Input[int]]:
|
657
|
+
"""
|
658
|
+
(Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "failover_trigger")
|
661
|
+
|
662
|
+
@failover_trigger.setter
|
663
|
+
def failover_trigger(self, value: Optional[pulumi.Input[int]]):
|
664
|
+
pulumi.set(self, "failover_trigger", value)
|
665
|
+
|
591
666
|
@property
|
592
667
|
@pulumi.getter(name="freeformTags")
|
593
668
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -624,6 +699,15 @@ class _IntegrationInstanceState:
|
|
624
699
|
def idcs_infos(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]]]):
|
625
700
|
pulumi.set(self, "idcs_infos", value)
|
626
701
|
|
702
|
+
@property
|
703
|
+
@pulumi.getter(name="instanceDesignTimeUrl")
|
704
|
+
def instance_design_time_url(self) -> Optional[pulumi.Input[str]]:
|
705
|
+
return pulumi.get(self, "instance_design_time_url")
|
706
|
+
|
707
|
+
@instance_design_time_url.setter
|
708
|
+
def instance_design_time_url(self, value: Optional[pulumi.Input[str]]):
|
709
|
+
pulumi.set(self, "instance_design_time_url", value)
|
710
|
+
|
627
711
|
@property
|
628
712
|
@pulumi.getter(name="instanceUrl")
|
629
713
|
def instance_url(self) -> Optional[pulumi.Input[str]]:
|
@@ -660,6 +744,18 @@ class _IntegrationInstanceState:
|
|
660
744
|
def is_byol(self, value: Optional[pulumi.Input[bool]]):
|
661
745
|
pulumi.set(self, "is_byol", value)
|
662
746
|
|
747
|
+
@property
|
748
|
+
@pulumi.getter(name="isDisasterRecoveryEnabled")
|
749
|
+
def is_disaster_recovery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
750
|
+
"""
|
751
|
+
Is Disaster Recovery enabled or not.
|
752
|
+
"""
|
753
|
+
return pulumi.get(self, "is_disaster_recovery_enabled")
|
754
|
+
|
755
|
+
@is_disaster_recovery_enabled.setter
|
756
|
+
def is_disaster_recovery_enabled(self, value: Optional[pulumi.Input[bool]]):
|
757
|
+
pulumi.set(self, "is_disaster_recovery_enabled", value)
|
758
|
+
|
663
759
|
@property
|
664
760
|
@pulumi.getter(name="isFileServerEnabled")
|
665
761
|
def is_file_server_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -684,6 +780,18 @@ class _IntegrationInstanceState:
|
|
684
780
|
def is_visual_builder_enabled(self, value: Optional[pulumi.Input[bool]]):
|
685
781
|
pulumi.set(self, "is_visual_builder_enabled", value)
|
686
782
|
|
783
|
+
@property
|
784
|
+
@pulumi.getter(name="lifecycleDetails")
|
785
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
786
|
+
"""
|
787
|
+
Additional details of lifecycleState or substates
|
788
|
+
"""
|
789
|
+
return pulumi.get(self, "lifecycle_details")
|
790
|
+
|
791
|
+
@lifecycle_details.setter
|
792
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
793
|
+
pulumi.set(self, "lifecycle_details", value)
|
794
|
+
|
687
795
|
@property
|
688
796
|
@pulumi.getter(name="messagePacks")
|
689
797
|
def message_packs(self) -> Optional[pulumi.Input[int]]:
|
@@ -811,10 +919,12 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
811
919
|
domain_id: Optional[pulumi.Input[str]] = None,
|
812
920
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
813
921
|
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
922
|
+
failover_trigger: Optional[pulumi.Input[int]] = None,
|
814
923
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
815
924
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
816
925
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
817
926
|
is_byol: Optional[pulumi.Input[bool]] = None,
|
927
|
+
is_disaster_recovery_enabled: Optional[pulumi.Input[bool]] = None,
|
818
928
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
819
929
|
is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
|
820
930
|
message_packs: Optional[pulumi.Input[int]] = None,
|
@@ -856,6 +966,7 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
856
966
|
"bar-key": "value",
|
857
967
|
},
|
858
968
|
idcs_at=integration_instance_idcs_at,
|
969
|
+
is_disaster_recovery_enabled=integration_instance_is_disaster_recovery_enabled,
|
859
970
|
is_file_server_enabled=integration_instance_is_file_server_enabled,
|
860
971
|
is_visual_builder_enabled=integration_instance_is_visual_builder_enabled,
|
861
972
|
network_endpoint_details={
|
@@ -890,10 +1001,12 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
890
1001
|
:param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
|
891
1002
|
:param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
|
892
1003
|
:param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
|
1004
|
+
:param pulumi.Input[int] failover_trigger: (Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
893
1005
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
894
1006
|
:param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
|
895
1007
|
:param pulumi.Input[str] integration_instance_type: (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
896
1008
|
:param pulumi.Input[bool] is_byol: (Updatable) Bring your own license.
|
1009
|
+
:param pulumi.Input[bool] is_disaster_recovery_enabled: Is Disaster Recovery enabled or not.
|
897
1010
|
:param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
|
898
1011
|
:param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
|
899
1012
|
:param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
|
@@ -945,6 +1058,7 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
945
1058
|
"bar-key": "value",
|
946
1059
|
},
|
947
1060
|
idcs_at=integration_instance_idcs_at,
|
1061
|
+
is_disaster_recovery_enabled=integration_instance_is_disaster_recovery_enabled,
|
948
1062
|
is_file_server_enabled=integration_instance_is_file_server_enabled,
|
949
1063
|
is_visual_builder_enabled=integration_instance_is_visual_builder_enabled,
|
950
1064
|
network_endpoint_details={
|
@@ -992,10 +1106,12 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
992
1106
|
domain_id: Optional[pulumi.Input[str]] = None,
|
993
1107
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
994
1108
|
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
1109
|
+
failover_trigger: Optional[pulumi.Input[int]] = None,
|
995
1110
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
996
1111
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
997
1112
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
998
1113
|
is_byol: Optional[pulumi.Input[bool]] = None,
|
1114
|
+
is_disaster_recovery_enabled: Optional[pulumi.Input[bool]] = None,
|
999
1115
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
1000
1116
|
is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
|
1001
1117
|
message_packs: Optional[pulumi.Input[int]] = None,
|
@@ -1024,6 +1140,7 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1024
1140
|
__props__.__dict__["domain_id"] = domain_id
|
1025
1141
|
__props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
|
1026
1142
|
__props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
|
1143
|
+
__props__.__dict__["failover_trigger"] = failover_trigger
|
1027
1144
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1028
1145
|
__props__.__dict__["idcs_at"] = None if idcs_at is None else pulumi.Output.secret(idcs_at)
|
1029
1146
|
if integration_instance_type is None and not opts.urn:
|
@@ -1032,6 +1149,7 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1032
1149
|
if is_byol is None and not opts.urn:
|
1033
1150
|
raise TypeError("Missing required property 'is_byol'")
|
1034
1151
|
__props__.__dict__["is_byol"] = is_byol
|
1152
|
+
__props__.__dict__["is_disaster_recovery_enabled"] = is_disaster_recovery_enabled
|
1035
1153
|
__props__.__dict__["is_file_server_enabled"] = is_file_server_enabled
|
1036
1154
|
__props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
|
1037
1155
|
if message_packs is None and not opts.urn:
|
@@ -1042,8 +1160,11 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1042
1160
|
__props__.__dict__["state"] = state
|
1043
1161
|
__props__.__dict__["attachments"] = None
|
1044
1162
|
__props__.__dict__["data_retention_period"] = None
|
1163
|
+
__props__.__dict__["disaster_recovery_details"] = None
|
1045
1164
|
__props__.__dict__["idcs_infos"] = None
|
1165
|
+
__props__.__dict__["instance_design_time_url"] = None
|
1046
1166
|
__props__.__dict__["instance_url"] = None
|
1167
|
+
__props__.__dict__["lifecycle_details"] = None
|
1047
1168
|
__props__.__dict__["private_endpoint_outbound_connections"] = None
|
1048
1169
|
__props__.__dict__["state_message"] = None
|
1049
1170
|
__props__.__dict__["system_tags"] = None
|
@@ -1068,18 +1189,23 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1068
1189
|
custom_endpoint: Optional[pulumi.Input[Union['IntegrationInstanceCustomEndpointArgs', 'IntegrationInstanceCustomEndpointArgsDict']]] = None,
|
1069
1190
|
data_retention_period: Optional[pulumi.Input[str]] = None,
|
1070
1191
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1192
|
+
disaster_recovery_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceDisasterRecoveryDetailArgs', 'IntegrationInstanceDisasterRecoveryDetailArgsDict']]]]] = None,
|
1071
1193
|
display_name: Optional[pulumi.Input[str]] = None,
|
1072
1194
|
domain_id: Optional[pulumi.Input[str]] = None,
|
1073
1195
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
1074
1196
|
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
1197
|
+
failover_trigger: Optional[pulumi.Input[int]] = None,
|
1075
1198
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1076
1199
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
1077
1200
|
idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]]] = None,
|
1201
|
+
instance_design_time_url: Optional[pulumi.Input[str]] = None,
|
1078
1202
|
instance_url: Optional[pulumi.Input[str]] = None,
|
1079
1203
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
1080
1204
|
is_byol: Optional[pulumi.Input[bool]] = None,
|
1205
|
+
is_disaster_recovery_enabled: Optional[pulumi.Input[bool]] = None,
|
1081
1206
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
1082
1207
|
is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
|
1208
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
1083
1209
|
message_packs: Optional[pulumi.Input[int]] = None,
|
1084
1210
|
network_endpoint_details: Optional[pulumi.Input[Union['IntegrationInstanceNetworkEndpointDetailsArgs', 'IntegrationInstanceNetworkEndpointDetailsArgsDict']]] = None,
|
1085
1211
|
private_endpoint_outbound_connections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstancePrivateEndpointOutboundConnectionArgs', 'IntegrationInstancePrivateEndpointOutboundConnectionArgsDict']]]]] = None,
|
@@ -1103,18 +1229,22 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1103
1229
|
:param pulumi.Input[Union['IntegrationInstanceCustomEndpointArgs', 'IntegrationInstanceCustomEndpointArgsDict']] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
|
1104
1230
|
:param pulumi.Input[str] data_retention_period: Data retention period set for given integration instance
|
1105
1231
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
1232
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceDisasterRecoveryDetailArgs', 'IntegrationInstanceDisasterRecoveryDetailArgsDict']]]] disaster_recovery_details: Disaster recovery details for the integration instance created in the region.
|
1106
1233
|
:param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
|
1107
1234
|
:param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
|
1108
1235
|
:param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
|
1109
1236
|
:param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
|
1237
|
+
:param pulumi.Input[int] failover_trigger: (Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
1110
1238
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1111
1239
|
:param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
|
1112
1240
|
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]] idcs_infos: Information for IDCS access
|
1113
1241
|
:param pulumi.Input[str] instance_url: The Integration Instance URL.
|
1114
1242
|
:param pulumi.Input[str] integration_instance_type: (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
1115
1243
|
:param pulumi.Input[bool] is_byol: (Updatable) Bring your own license.
|
1244
|
+
:param pulumi.Input[bool] is_disaster_recovery_enabled: Is Disaster Recovery enabled or not.
|
1116
1245
|
:param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
|
1117
1246
|
:param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
|
1247
|
+
:param pulumi.Input[str] lifecycle_details: Additional details of lifecycleState or substates
|
1118
1248
|
:param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
|
1119
1249
|
:param pulumi.Input[Union['IntegrationInstanceNetworkEndpointDetailsArgs', 'IntegrationInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: Base representation of a network endpoint.
|
1120
1250
|
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstancePrivateEndpointOutboundConnectionArgs', 'IntegrationInstancePrivateEndpointOutboundConnectionArgsDict']]]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
|
@@ -1140,18 +1270,23 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1140
1270
|
__props__.__dict__["custom_endpoint"] = custom_endpoint
|
1141
1271
|
__props__.__dict__["data_retention_period"] = data_retention_period
|
1142
1272
|
__props__.__dict__["defined_tags"] = defined_tags
|
1273
|
+
__props__.__dict__["disaster_recovery_details"] = disaster_recovery_details
|
1143
1274
|
__props__.__dict__["display_name"] = display_name
|
1144
1275
|
__props__.__dict__["domain_id"] = domain_id
|
1145
1276
|
__props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
|
1146
1277
|
__props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
|
1278
|
+
__props__.__dict__["failover_trigger"] = failover_trigger
|
1147
1279
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1148
1280
|
__props__.__dict__["idcs_at"] = idcs_at
|
1149
1281
|
__props__.__dict__["idcs_infos"] = idcs_infos
|
1282
|
+
__props__.__dict__["instance_design_time_url"] = instance_design_time_url
|
1150
1283
|
__props__.__dict__["instance_url"] = instance_url
|
1151
1284
|
__props__.__dict__["integration_instance_type"] = integration_instance_type
|
1152
1285
|
__props__.__dict__["is_byol"] = is_byol
|
1286
|
+
__props__.__dict__["is_disaster_recovery_enabled"] = is_disaster_recovery_enabled
|
1153
1287
|
__props__.__dict__["is_file_server_enabled"] = is_file_server_enabled
|
1154
1288
|
__props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
|
1289
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
1155
1290
|
__props__.__dict__["message_packs"] = message_packs
|
1156
1291
|
__props__.__dict__["network_endpoint_details"] = network_endpoint_details
|
1157
1292
|
__props__.__dict__["private_endpoint_outbound_connections"] = private_endpoint_outbound_connections
|
@@ -1219,6 +1354,14 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1219
1354
|
"""
|
1220
1355
|
return pulumi.get(self, "defined_tags")
|
1221
1356
|
|
1357
|
+
@property
|
1358
|
+
@pulumi.getter(name="disasterRecoveryDetails")
|
1359
|
+
def disaster_recovery_details(self) -> pulumi.Output[Sequence['outputs.IntegrationInstanceDisasterRecoveryDetail']]:
|
1360
|
+
"""
|
1361
|
+
Disaster recovery details for the integration instance created in the region.
|
1362
|
+
"""
|
1363
|
+
return pulumi.get(self, "disaster_recovery_details")
|
1364
|
+
|
1222
1365
|
@property
|
1223
1366
|
@pulumi.getter(name="displayName")
|
1224
1367
|
def display_name(self) -> pulumi.Output[str]:
|
@@ -1251,6 +1394,14 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1251
1394
|
"""
|
1252
1395
|
return pulumi.get(self, "extend_data_retention_trigger")
|
1253
1396
|
|
1397
|
+
@property
|
1398
|
+
@pulumi.getter(name="failoverTrigger")
|
1399
|
+
def failover_trigger(self) -> pulumi.Output[Optional[int]]:
|
1400
|
+
"""
|
1401
|
+
(Updatable) An optional property when incremented triggers Failover. Could be set to any integer value.
|
1402
|
+
"""
|
1403
|
+
return pulumi.get(self, "failover_trigger")
|
1404
|
+
|
1254
1405
|
@property
|
1255
1406
|
@pulumi.getter(name="freeformTags")
|
1256
1407
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -1275,6 +1426,11 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1275
1426
|
"""
|
1276
1427
|
return pulumi.get(self, "idcs_infos")
|
1277
1428
|
|
1429
|
+
@property
|
1430
|
+
@pulumi.getter(name="instanceDesignTimeUrl")
|
1431
|
+
def instance_design_time_url(self) -> pulumi.Output[str]:
|
1432
|
+
return pulumi.get(self, "instance_design_time_url")
|
1433
|
+
|
1278
1434
|
@property
|
1279
1435
|
@pulumi.getter(name="instanceUrl")
|
1280
1436
|
def instance_url(self) -> pulumi.Output[str]:
|
@@ -1299,6 +1455,14 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1299
1455
|
"""
|
1300
1456
|
return pulumi.get(self, "is_byol")
|
1301
1457
|
|
1458
|
+
@property
|
1459
|
+
@pulumi.getter(name="isDisasterRecoveryEnabled")
|
1460
|
+
def is_disaster_recovery_enabled(self) -> pulumi.Output[bool]:
|
1461
|
+
"""
|
1462
|
+
Is Disaster Recovery enabled or not.
|
1463
|
+
"""
|
1464
|
+
return pulumi.get(self, "is_disaster_recovery_enabled")
|
1465
|
+
|
1302
1466
|
@property
|
1303
1467
|
@pulumi.getter(name="isFileServerEnabled")
|
1304
1468
|
def is_file_server_enabled(self) -> pulumi.Output[bool]:
|
@@ -1315,6 +1479,14 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1315
1479
|
"""
|
1316
1480
|
return pulumi.get(self, "is_visual_builder_enabled")
|
1317
1481
|
|
1482
|
+
@property
|
1483
|
+
@pulumi.getter(name="lifecycleDetails")
|
1484
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
1485
|
+
"""
|
1486
|
+
Additional details of lifecycleState or substates
|
1487
|
+
"""
|
1488
|
+
return pulumi.get(self, "lifecycle_details")
|
1489
|
+
|
1318
1490
|
@property
|
1319
1491
|
@pulumi.getter(name="messagePacks")
|
1320
1492
|
def message_packs(self) -> pulumi.Output[int]:
|