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
@@ -19,6 +19,8 @@ __all__ = [
|
|
19
19
|
'IntegrationInstanceAlternateCustomEndpoint',
|
20
20
|
'IntegrationInstanceAttachment',
|
21
21
|
'IntegrationInstanceCustomEndpoint',
|
22
|
+
'IntegrationInstanceDisasterRecoveryDetail',
|
23
|
+
'IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail',
|
22
24
|
'IntegrationInstanceIdcsInfo',
|
23
25
|
'IntegrationInstanceNetworkEndpointDetails',
|
24
26
|
'IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcn',
|
@@ -26,6 +28,8 @@ __all__ = [
|
|
26
28
|
'GetIntegrationInstanceAlternateCustomEndpointResult',
|
27
29
|
'GetIntegrationInstanceAttachmentResult',
|
28
30
|
'GetIntegrationInstanceCustomEndpointResult',
|
31
|
+
'GetIntegrationInstanceDisasterRecoveryDetailResult',
|
32
|
+
'GetIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult',
|
29
33
|
'GetIntegrationInstanceIdcsInfoResult',
|
30
34
|
'GetIntegrationInstanceNetworkEndpointDetailResult',
|
31
35
|
'GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
|
@@ -35,6 +39,8 @@ __all__ = [
|
|
35
39
|
'GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult',
|
36
40
|
'GetIntegrationInstancesIntegrationInstanceAttachmentResult',
|
37
41
|
'GetIntegrationInstancesIntegrationInstanceCustomEndpointResult',
|
42
|
+
'GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailResult',
|
43
|
+
'GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult',
|
38
44
|
'GetIntegrationInstancesIntegrationInstanceIdcsInfoResult',
|
39
45
|
'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult',
|
40
46
|
'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
|
@@ -50,6 +56,12 @@ class IntegrationInstanceAlternateCustomEndpoint(dict):
|
|
50
56
|
suggest = "certificate_secret_id"
|
51
57
|
elif key == "certificateSecretVersion":
|
52
58
|
suggest = "certificate_secret_version"
|
59
|
+
elif key == "dnsType":
|
60
|
+
suggest = "dns_type"
|
61
|
+
elif key == "dnsZoneName":
|
62
|
+
suggest = "dns_zone_name"
|
63
|
+
elif key == "managedType":
|
64
|
+
suggest = "managed_type"
|
53
65
|
|
54
66
|
if suggest:
|
55
67
|
pulumi.log.warn(f"Key '{key}' not found in IntegrationInstanceAlternateCustomEndpoint. Access the value via the '{suggest}' property getter instead.")
|
@@ -66,12 +78,18 @@ class IntegrationInstanceAlternateCustomEndpoint(dict):
|
|
66
78
|
hostname: str,
|
67
79
|
alias: Optional[str] = None,
|
68
80
|
certificate_secret_id: Optional[str] = None,
|
69
|
-
certificate_secret_version: Optional[int] = None
|
81
|
+
certificate_secret_version: Optional[int] = None,
|
82
|
+
dns_type: Optional[str] = None,
|
83
|
+
dns_zone_name: Optional[str] = None,
|
84
|
+
managed_type: Optional[str] = None):
|
70
85
|
"""
|
71
86
|
:param str hostname: (Updatable) A custom hostname to be used for the integration instance URL, in FQDN format.
|
72
87
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
73
88
|
:param str certificate_secret_id: (Updatable) Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname. All certificates should be stored in a single base64 encoded secret Note the update will fail if this is not a valid certificate.
|
74
89
|
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
90
|
+
:param str dns_type: Type of DNS.
|
91
|
+
:param str dns_zone_name: DNS Zone name
|
92
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
75
93
|
"""
|
76
94
|
pulumi.set(__self__, "hostname", hostname)
|
77
95
|
if alias is not None:
|
@@ -80,6 +98,12 @@ class IntegrationInstanceAlternateCustomEndpoint(dict):
|
|
80
98
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
81
99
|
if certificate_secret_version is not None:
|
82
100
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
101
|
+
if dns_type is not None:
|
102
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
103
|
+
if dns_zone_name is not None:
|
104
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
105
|
+
if managed_type is not None:
|
106
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
83
107
|
|
84
108
|
@property
|
85
109
|
@pulumi.getter
|
@@ -113,6 +137,30 @@ class IntegrationInstanceAlternateCustomEndpoint(dict):
|
|
113
137
|
"""
|
114
138
|
return pulumi.get(self, "certificate_secret_version")
|
115
139
|
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="dnsType")
|
142
|
+
def dns_type(self) -> Optional[str]:
|
143
|
+
"""
|
144
|
+
Type of DNS.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "dns_type")
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="dnsZoneName")
|
150
|
+
def dns_zone_name(self) -> Optional[str]:
|
151
|
+
"""
|
152
|
+
DNS Zone name
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "dns_zone_name")
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="managedType")
|
158
|
+
def managed_type(self) -> Optional[str]:
|
159
|
+
"""
|
160
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "managed_type")
|
163
|
+
|
116
164
|
|
117
165
|
@pulumi.output_type
|
118
166
|
class IntegrationInstanceAttachment(dict):
|
@@ -217,10 +265,16 @@ class IntegrationInstanceCustomEndpoint(dict):
|
|
217
265
|
@staticmethod
|
218
266
|
def __key_warning(key: str):
|
219
267
|
suggest = None
|
220
|
-
if key == "
|
268
|
+
if key == "dnsZoneName":
|
269
|
+
suggest = "dns_zone_name"
|
270
|
+
elif key == "certificateSecretId":
|
221
271
|
suggest = "certificate_secret_id"
|
222
272
|
elif key == "certificateSecretVersion":
|
223
273
|
suggest = "certificate_secret_version"
|
274
|
+
elif key == "dnsType":
|
275
|
+
suggest = "dns_type"
|
276
|
+
elif key == "managedType":
|
277
|
+
suggest = "managed_type"
|
224
278
|
|
225
279
|
if suggest:
|
226
280
|
pulumi.log.warn(f"Key '{key}' not found in IntegrationInstanceCustomEndpoint. Access the value via the '{suggest}' property getter instead.")
|
@@ -234,16 +288,23 @@ class IntegrationInstanceCustomEndpoint(dict):
|
|
234
288
|
return super().get(key, default)
|
235
289
|
|
236
290
|
def __init__(__self__, *,
|
291
|
+
dns_zone_name: str,
|
237
292
|
hostname: str,
|
238
293
|
alias: Optional[str] = None,
|
239
294
|
certificate_secret_id: Optional[str] = None,
|
240
|
-
certificate_secret_version: Optional[int] = None
|
295
|
+
certificate_secret_version: Optional[int] = None,
|
296
|
+
dns_type: Optional[str] = None,
|
297
|
+
managed_type: Optional[str] = None):
|
241
298
|
"""
|
299
|
+
:param str dns_zone_name: DNS Zone name
|
242
300
|
:param str hostname: (Updatable) A custom hostname to be used for the integration instance URL, in FQDN format.
|
243
301
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
244
302
|
:param str certificate_secret_id: (Updatable) Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname. All certificates should be stored in a single base64 encoded secret Note the update will fail if this is not a valid certificate.
|
245
303
|
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
304
|
+
:param str dns_type: Type of DNS.
|
305
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
246
306
|
"""
|
307
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
247
308
|
pulumi.set(__self__, "hostname", hostname)
|
248
309
|
if alias is not None:
|
249
310
|
pulumi.set(__self__, "alias", alias)
|
@@ -251,6 +312,18 @@ class IntegrationInstanceCustomEndpoint(dict):
|
|
251
312
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
252
313
|
if certificate_secret_version is not None:
|
253
314
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
315
|
+
if dns_type is not None:
|
316
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
317
|
+
if managed_type is not None:
|
318
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
319
|
+
|
320
|
+
@property
|
321
|
+
@pulumi.getter(name="dnsZoneName")
|
322
|
+
def dns_zone_name(self) -> str:
|
323
|
+
"""
|
324
|
+
DNS Zone name
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "dns_zone_name")
|
254
327
|
|
255
328
|
@property
|
256
329
|
@pulumi.getter
|
@@ -284,6 +357,156 @@ class IntegrationInstanceCustomEndpoint(dict):
|
|
284
357
|
"""
|
285
358
|
return pulumi.get(self, "certificate_secret_version")
|
286
359
|
|
360
|
+
@property
|
361
|
+
@pulumi.getter(name="dnsType")
|
362
|
+
def dns_type(self) -> Optional[str]:
|
363
|
+
"""
|
364
|
+
Type of DNS.
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "dns_type")
|
367
|
+
|
368
|
+
@property
|
369
|
+
@pulumi.getter(name="managedType")
|
370
|
+
def managed_type(self) -> Optional[str]:
|
371
|
+
"""
|
372
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
373
|
+
"""
|
374
|
+
return pulumi.get(self, "managed_type")
|
375
|
+
|
376
|
+
|
377
|
+
@pulumi.output_type
|
378
|
+
class IntegrationInstanceDisasterRecoveryDetail(dict):
|
379
|
+
@staticmethod
|
380
|
+
def __key_warning(key: str):
|
381
|
+
suggest = None
|
382
|
+
if key == "crossRegionIntegrationInstanceDetails":
|
383
|
+
suggest = "cross_region_integration_instance_details"
|
384
|
+
elif key == "regionalInstanceUrl":
|
385
|
+
suggest = "regional_instance_url"
|
386
|
+
|
387
|
+
if suggest:
|
388
|
+
pulumi.log.warn(f"Key '{key}' not found in IntegrationInstanceDisasterRecoveryDetail. Access the value via the '{suggest}' property getter instead.")
|
389
|
+
|
390
|
+
def __getitem__(self, key: str) -> Any:
|
391
|
+
IntegrationInstanceDisasterRecoveryDetail.__key_warning(key)
|
392
|
+
return super().__getitem__(key)
|
393
|
+
|
394
|
+
def get(self, key: str, default = None) -> Any:
|
395
|
+
IntegrationInstanceDisasterRecoveryDetail.__key_warning(key)
|
396
|
+
return super().get(key, default)
|
397
|
+
|
398
|
+
def __init__(__self__, *,
|
399
|
+
cross_region_integration_instance_details: Optional[Sequence['outputs.IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail']] = None,
|
400
|
+
regional_instance_url: Optional[str] = None,
|
401
|
+
role: Optional[str] = None):
|
402
|
+
"""
|
403
|
+
:param Sequence['IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailArgs'] cross_region_integration_instance_details: Details of integration instance created in cross region for disaster recovery.
|
404
|
+
:param str regional_instance_url: Region specific instance url for the integration instance in the region
|
405
|
+
:param str role: Role of the integration instance in the region
|
406
|
+
"""
|
407
|
+
if cross_region_integration_instance_details is not None:
|
408
|
+
pulumi.set(__self__, "cross_region_integration_instance_details", cross_region_integration_instance_details)
|
409
|
+
if regional_instance_url is not None:
|
410
|
+
pulumi.set(__self__, "regional_instance_url", regional_instance_url)
|
411
|
+
if role is not None:
|
412
|
+
pulumi.set(__self__, "role", role)
|
413
|
+
|
414
|
+
@property
|
415
|
+
@pulumi.getter(name="crossRegionIntegrationInstanceDetails")
|
416
|
+
def cross_region_integration_instance_details(self) -> Optional[Sequence['outputs.IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail']]:
|
417
|
+
"""
|
418
|
+
Details of integration instance created in cross region for disaster recovery.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "cross_region_integration_instance_details")
|
421
|
+
|
422
|
+
@property
|
423
|
+
@pulumi.getter(name="regionalInstanceUrl")
|
424
|
+
def regional_instance_url(self) -> Optional[str]:
|
425
|
+
"""
|
426
|
+
Region specific instance url for the integration instance in the region
|
427
|
+
"""
|
428
|
+
return pulumi.get(self, "regional_instance_url")
|
429
|
+
|
430
|
+
@property
|
431
|
+
@pulumi.getter
|
432
|
+
def role(self) -> Optional[str]:
|
433
|
+
"""
|
434
|
+
Role of the integration instance in the region
|
435
|
+
"""
|
436
|
+
return pulumi.get(self, "role")
|
437
|
+
|
438
|
+
|
439
|
+
@pulumi.output_type
|
440
|
+
class IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail(dict):
|
441
|
+
@staticmethod
|
442
|
+
def __key_warning(key: str):
|
443
|
+
suggest = None
|
444
|
+
if key == "timeRoleChanged":
|
445
|
+
suggest = "time_role_changed"
|
446
|
+
|
447
|
+
if suggest:
|
448
|
+
pulumi.log.warn(f"Key '{key}' not found in IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail. Access the value via the '{suggest}' property getter instead.")
|
449
|
+
|
450
|
+
def __getitem__(self, key: str) -> Any:
|
451
|
+
IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail.__key_warning(key)
|
452
|
+
return super().__getitem__(key)
|
453
|
+
|
454
|
+
def get(self, key: str, default = None) -> Any:
|
455
|
+
IntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetail.__key_warning(key)
|
456
|
+
return super().get(key, default)
|
457
|
+
|
458
|
+
def __init__(__self__, *,
|
459
|
+
id: Optional[str] = None,
|
460
|
+
region: Optional[str] = None,
|
461
|
+
role: Optional[str] = None,
|
462
|
+
time_role_changed: Optional[str] = None):
|
463
|
+
"""
|
464
|
+
:param str id: The Virtual Cloud Network OCID.
|
465
|
+
:param str region: Cross region where integration instance is created
|
466
|
+
:param str role: Role of the integration instance in the region
|
467
|
+
:param str time_role_changed: Time when cross region integration instance role was changed
|
468
|
+
"""
|
469
|
+
if id is not None:
|
470
|
+
pulumi.set(__self__, "id", id)
|
471
|
+
if region is not None:
|
472
|
+
pulumi.set(__self__, "region", region)
|
473
|
+
if role is not None:
|
474
|
+
pulumi.set(__self__, "role", role)
|
475
|
+
if time_role_changed is not None:
|
476
|
+
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
477
|
+
|
478
|
+
@property
|
479
|
+
@pulumi.getter
|
480
|
+
def id(self) -> Optional[str]:
|
481
|
+
"""
|
482
|
+
The Virtual Cloud Network OCID.
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "id")
|
485
|
+
|
486
|
+
@property
|
487
|
+
@pulumi.getter
|
488
|
+
def region(self) -> Optional[str]:
|
489
|
+
"""
|
490
|
+
Cross region where integration instance is created
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "region")
|
493
|
+
|
494
|
+
@property
|
495
|
+
@pulumi.getter
|
496
|
+
def role(self) -> Optional[str]:
|
497
|
+
"""
|
498
|
+
Role of the integration instance in the region
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "role")
|
501
|
+
|
502
|
+
@property
|
503
|
+
@pulumi.getter(name="timeRoleChanged")
|
504
|
+
def time_role_changed(self) -> Optional[str]:
|
505
|
+
"""
|
506
|
+
Time when cross region integration instance role was changed
|
507
|
+
"""
|
508
|
+
return pulumi.get(self, "time_role_changed")
|
509
|
+
|
287
510
|
|
288
511
|
@pulumi.output_type
|
289
512
|
class IntegrationInstanceIdcsInfo(dict):
|
@@ -571,17 +794,25 @@ class GetIntegrationInstanceAlternateCustomEndpointResult(dict):
|
|
571
794
|
alias: str,
|
572
795
|
certificate_secret_id: str,
|
573
796
|
certificate_secret_version: int,
|
574
|
-
|
797
|
+
dns_type: str,
|
798
|
+
dns_zone_name: str,
|
799
|
+
hostname: str,
|
800
|
+
managed_type: str):
|
575
801
|
"""
|
576
802
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
577
803
|
:param str certificate_secret_id: Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
|
578
|
-
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
804
|
+
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
805
|
+
:param str dns_zone_name: DNS Zone name
|
579
806
|
:param str hostname: A custom hostname to be used for the integration instance URL, in FQDN format.
|
807
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
580
808
|
"""
|
581
809
|
pulumi.set(__self__, "alias", alias)
|
582
810
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
583
811
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
812
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
813
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
584
814
|
pulumi.set(__self__, "hostname", hostname)
|
815
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
585
816
|
|
586
817
|
@property
|
587
818
|
@pulumi.getter
|
@@ -603,10 +834,23 @@ class GetIntegrationInstanceAlternateCustomEndpointResult(dict):
|
|
603
834
|
@pulumi.getter(name="certificateSecretVersion")
|
604
835
|
def certificate_secret_version(self) -> int:
|
605
836
|
"""
|
606
|
-
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
837
|
+
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
607
838
|
"""
|
608
839
|
return pulumi.get(self, "certificate_secret_version")
|
609
840
|
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="dnsType")
|
843
|
+
def dns_type(self) -> str:
|
844
|
+
return pulumi.get(self, "dns_type")
|
845
|
+
|
846
|
+
@property
|
847
|
+
@pulumi.getter(name="dnsZoneName")
|
848
|
+
def dns_zone_name(self) -> str:
|
849
|
+
"""
|
850
|
+
DNS Zone name
|
851
|
+
"""
|
852
|
+
return pulumi.get(self, "dns_zone_name")
|
853
|
+
|
610
854
|
@property
|
611
855
|
@pulumi.getter
|
612
856
|
def hostname(self) -> str:
|
@@ -615,6 +859,14 @@ class GetIntegrationInstanceAlternateCustomEndpointResult(dict):
|
|
615
859
|
"""
|
616
860
|
return pulumi.get(self, "hostname")
|
617
861
|
|
862
|
+
@property
|
863
|
+
@pulumi.getter(name="managedType")
|
864
|
+
def managed_type(self) -> str:
|
865
|
+
"""
|
866
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
867
|
+
"""
|
868
|
+
return pulumi.get(self, "managed_type")
|
869
|
+
|
618
870
|
|
619
871
|
@pulumi.output_type
|
620
872
|
class GetIntegrationInstanceAttachmentResult(dict):
|
@@ -690,17 +942,25 @@ class GetIntegrationInstanceCustomEndpointResult(dict):
|
|
690
942
|
alias: str,
|
691
943
|
certificate_secret_id: str,
|
692
944
|
certificate_secret_version: int,
|
693
|
-
|
945
|
+
dns_type: str,
|
946
|
+
dns_zone_name: str,
|
947
|
+
hostname: str,
|
948
|
+
managed_type: str):
|
694
949
|
"""
|
695
950
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
696
951
|
:param str certificate_secret_id: Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
|
697
|
-
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
952
|
+
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
953
|
+
:param str dns_zone_name: DNS Zone name
|
698
954
|
:param str hostname: A custom hostname to be used for the integration instance URL, in FQDN format.
|
955
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
699
956
|
"""
|
700
957
|
pulumi.set(__self__, "alias", alias)
|
701
958
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
702
959
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
960
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
961
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
703
962
|
pulumi.set(__self__, "hostname", hostname)
|
963
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
704
964
|
|
705
965
|
@property
|
706
966
|
@pulumi.getter
|
@@ -722,10 +982,23 @@ class GetIntegrationInstanceCustomEndpointResult(dict):
|
|
722
982
|
@pulumi.getter(name="certificateSecretVersion")
|
723
983
|
def certificate_secret_version(self) -> int:
|
724
984
|
"""
|
725
|
-
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
985
|
+
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
726
986
|
"""
|
727
987
|
return pulumi.get(self, "certificate_secret_version")
|
728
988
|
|
989
|
+
@property
|
990
|
+
@pulumi.getter(name="dnsType")
|
991
|
+
def dns_type(self) -> str:
|
992
|
+
return pulumi.get(self, "dns_type")
|
993
|
+
|
994
|
+
@property
|
995
|
+
@pulumi.getter(name="dnsZoneName")
|
996
|
+
def dns_zone_name(self) -> str:
|
997
|
+
"""
|
998
|
+
DNS Zone name
|
999
|
+
"""
|
1000
|
+
return pulumi.get(self, "dns_zone_name")
|
1001
|
+
|
729
1002
|
@property
|
730
1003
|
@pulumi.getter
|
731
1004
|
def hostname(self) -> str:
|
@@ -734,6 +1007,105 @@ class GetIntegrationInstanceCustomEndpointResult(dict):
|
|
734
1007
|
"""
|
735
1008
|
return pulumi.get(self, "hostname")
|
736
1009
|
|
1010
|
+
@property
|
1011
|
+
@pulumi.getter(name="managedType")
|
1012
|
+
def managed_type(self) -> str:
|
1013
|
+
"""
|
1014
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
1015
|
+
"""
|
1016
|
+
return pulumi.get(self, "managed_type")
|
1017
|
+
|
1018
|
+
|
1019
|
+
@pulumi.output_type
|
1020
|
+
class GetIntegrationInstanceDisasterRecoveryDetailResult(dict):
|
1021
|
+
def __init__(__self__, *,
|
1022
|
+
cross_region_integration_instance_details: Sequence['outputs.GetIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult'],
|
1023
|
+
regional_instance_url: str,
|
1024
|
+
role: str):
|
1025
|
+
"""
|
1026
|
+
:param Sequence['GetIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailArgs'] cross_region_integration_instance_details: Details of integration instance created in cross region for disaster recovery.
|
1027
|
+
:param str regional_instance_url: Region specific instance url for the integration instance in the region
|
1028
|
+
:param str role: Role of the integration instance in the region
|
1029
|
+
"""
|
1030
|
+
pulumi.set(__self__, "cross_region_integration_instance_details", cross_region_integration_instance_details)
|
1031
|
+
pulumi.set(__self__, "regional_instance_url", regional_instance_url)
|
1032
|
+
pulumi.set(__self__, "role", role)
|
1033
|
+
|
1034
|
+
@property
|
1035
|
+
@pulumi.getter(name="crossRegionIntegrationInstanceDetails")
|
1036
|
+
def cross_region_integration_instance_details(self) -> Sequence['outputs.GetIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult']:
|
1037
|
+
"""
|
1038
|
+
Details of integration instance created in cross region for disaster recovery.
|
1039
|
+
"""
|
1040
|
+
return pulumi.get(self, "cross_region_integration_instance_details")
|
1041
|
+
|
1042
|
+
@property
|
1043
|
+
@pulumi.getter(name="regionalInstanceUrl")
|
1044
|
+
def regional_instance_url(self) -> str:
|
1045
|
+
"""
|
1046
|
+
Region specific instance url for the integration instance in the region
|
1047
|
+
"""
|
1048
|
+
return pulumi.get(self, "regional_instance_url")
|
1049
|
+
|
1050
|
+
@property
|
1051
|
+
@pulumi.getter
|
1052
|
+
def role(self) -> str:
|
1053
|
+
"""
|
1054
|
+
Role of the integration instance in the region
|
1055
|
+
"""
|
1056
|
+
return pulumi.get(self, "role")
|
1057
|
+
|
1058
|
+
|
1059
|
+
@pulumi.output_type
|
1060
|
+
class GetIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult(dict):
|
1061
|
+
def __init__(__self__, *,
|
1062
|
+
id: str,
|
1063
|
+
region: str,
|
1064
|
+
role: str,
|
1065
|
+
time_role_changed: str):
|
1066
|
+
"""
|
1067
|
+
:param str id: The Virtual Cloud Network OCID.
|
1068
|
+
:param str region: Cross region where integration instance is created
|
1069
|
+
:param str role: Role of the integration instance in the region
|
1070
|
+
:param str time_role_changed: Time when cross region integration instance role was changed
|
1071
|
+
"""
|
1072
|
+
pulumi.set(__self__, "id", id)
|
1073
|
+
pulumi.set(__self__, "region", region)
|
1074
|
+
pulumi.set(__self__, "role", role)
|
1075
|
+
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
1076
|
+
|
1077
|
+
@property
|
1078
|
+
@pulumi.getter
|
1079
|
+
def id(self) -> str:
|
1080
|
+
"""
|
1081
|
+
The Virtual Cloud Network OCID.
|
1082
|
+
"""
|
1083
|
+
return pulumi.get(self, "id")
|
1084
|
+
|
1085
|
+
@property
|
1086
|
+
@pulumi.getter
|
1087
|
+
def region(self) -> str:
|
1088
|
+
"""
|
1089
|
+
Cross region where integration instance is created
|
1090
|
+
"""
|
1091
|
+
return pulumi.get(self, "region")
|
1092
|
+
|
1093
|
+
@property
|
1094
|
+
@pulumi.getter
|
1095
|
+
def role(self) -> str:
|
1096
|
+
"""
|
1097
|
+
Role of the integration instance in the region
|
1098
|
+
"""
|
1099
|
+
return pulumi.get(self, "role")
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
@pulumi.getter(name="timeRoleChanged")
|
1103
|
+
def time_role_changed(self) -> str:
|
1104
|
+
"""
|
1105
|
+
Time when cross region integration instance role was changed
|
1106
|
+
"""
|
1107
|
+
return pulumi.get(self, "time_role_changed")
|
1108
|
+
|
737
1109
|
|
738
1110
|
@pulumi.output_type
|
739
1111
|
class GetIntegrationInstanceIdcsInfoResult(dict):
|
@@ -748,7 +1120,7 @@ class GetIntegrationInstanceIdcsInfoResult(dict):
|
|
748
1120
|
:param str idcs_app_id: The IDCS application ID associated with the instance
|
749
1121
|
:param str idcs_app_location_url: URL for the location of the IDCS Application (used by IDCS APIs)
|
750
1122
|
:param str idcs_app_name: The IDCS application name associated with the instance
|
751
|
-
:param str instance_primary_audience_url: The URL used as the primary audience for integration flows in this instance type: string
|
1123
|
+
:param str instance_primary_audience_url: The URL used as the primary audience for integration flows in this instance type: string* `instance_design_time_url` - The Integration Instance Design Time URL
|
752
1124
|
"""
|
753
1125
|
pulumi.set(__self__, "idcs_app_display_name", idcs_app_display_name)
|
754
1126
|
pulumi.set(__self__, "idcs_app_id", idcs_app_id)
|
@@ -792,7 +1164,7 @@ class GetIntegrationInstanceIdcsInfoResult(dict):
|
|
792
1164
|
@pulumi.getter(name="instancePrimaryAudienceUrl")
|
793
1165
|
def instance_primary_audience_url(self) -> str:
|
794
1166
|
"""
|
795
|
-
The URL used as the primary audience for integration flows in this instance type: string
|
1167
|
+
The URL used as the primary audience for integration flows in this instance type: string* `instance_design_time_url` - The Integration Instance Design Time URL
|
796
1168
|
"""
|
797
1169
|
return pulumi.get(self, "instance_primary_audience_url")
|
798
1170
|
|
@@ -954,19 +1326,24 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
954
1326
|
custom_endpoints: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceCustomEndpointResult'],
|
955
1327
|
data_retention_period: str,
|
956
1328
|
defined_tags: Mapping[str, str],
|
1329
|
+
disaster_recovery_details: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailResult'],
|
957
1330
|
display_name: str,
|
958
1331
|
domain_id: str,
|
959
1332
|
enable_process_automation_trigger: int,
|
960
1333
|
extend_data_retention_trigger: int,
|
1334
|
+
failover_trigger: int,
|
961
1335
|
freeform_tags: Mapping[str, str],
|
962
1336
|
id: str,
|
963
1337
|
idcs_at: str,
|
964
1338
|
idcs_infos: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceIdcsInfoResult'],
|
1339
|
+
instance_design_time_url: str,
|
965
1340
|
instance_url: str,
|
966
1341
|
integration_instance_type: str,
|
967
1342
|
is_byol: bool,
|
1343
|
+
is_disaster_recovery_enabled: bool,
|
968
1344
|
is_file_server_enabled: bool,
|
969
1345
|
is_visual_builder_enabled: bool,
|
1346
|
+
lifecycle_details: str,
|
970
1347
|
message_packs: int,
|
971
1348
|
network_endpoint_details: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult'],
|
972
1349
|
private_endpoint_outbound_connections: Sequence['outputs.GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult'],
|
@@ -984,6 +1361,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
984
1361
|
:param Sequence['GetIntegrationInstancesIntegrationInstanceCustomEndpointArgs'] custom_endpoints: Details for a custom endpoint for the integration instance.
|
985
1362
|
:param str data_retention_period: Data retention period set for given integration instance
|
986
1363
|
:param Mapping[str, str] defined_tags: Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
1364
|
+
:param Sequence['GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailArgs'] disaster_recovery_details: Disaster recovery details for the integration instance created in the region.
|
987
1365
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
|
988
1366
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
989
1367
|
:param str id: The Virtual Cloud Network OCID.
|
@@ -991,8 +1369,10 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
991
1369
|
:param str instance_url: The Integration Instance URL.
|
992
1370
|
:param str integration_instance_type: Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
993
1371
|
:param bool is_byol: Bring your own license.
|
1372
|
+
:param bool is_disaster_recovery_enabled: Is Disaster Recovery enabled for the integrationInstance
|
994
1373
|
:param bool is_file_server_enabled: The file server is enabled or not.
|
995
1374
|
:param bool is_visual_builder_enabled: Visual Builder is enabled or not.
|
1375
|
+
:param str lifecycle_details: Additional details of lifecycleState or substates
|
996
1376
|
:param int message_packs: The number of configured message packs (if any)
|
997
1377
|
:param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailArgs'] network_endpoint_details: Base representation of a network endpoint.
|
998
1378
|
:param Sequence['GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionArgs'] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
|
@@ -1010,19 +1390,24 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1010
1390
|
pulumi.set(__self__, "custom_endpoints", custom_endpoints)
|
1011
1391
|
pulumi.set(__self__, "data_retention_period", data_retention_period)
|
1012
1392
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1393
|
+
pulumi.set(__self__, "disaster_recovery_details", disaster_recovery_details)
|
1013
1394
|
pulumi.set(__self__, "display_name", display_name)
|
1014
1395
|
pulumi.set(__self__, "domain_id", domain_id)
|
1015
1396
|
pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
|
1016
1397
|
pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
|
1398
|
+
pulumi.set(__self__, "failover_trigger", failover_trigger)
|
1017
1399
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1018
1400
|
pulumi.set(__self__, "id", id)
|
1019
1401
|
pulumi.set(__self__, "idcs_at", idcs_at)
|
1020
1402
|
pulumi.set(__self__, "idcs_infos", idcs_infos)
|
1403
|
+
pulumi.set(__self__, "instance_design_time_url", instance_design_time_url)
|
1021
1404
|
pulumi.set(__self__, "instance_url", instance_url)
|
1022
1405
|
pulumi.set(__self__, "integration_instance_type", integration_instance_type)
|
1023
1406
|
pulumi.set(__self__, "is_byol", is_byol)
|
1407
|
+
pulumi.set(__self__, "is_disaster_recovery_enabled", is_disaster_recovery_enabled)
|
1024
1408
|
pulumi.set(__self__, "is_file_server_enabled", is_file_server_enabled)
|
1025
1409
|
pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
|
1410
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1026
1411
|
pulumi.set(__self__, "message_packs", message_packs)
|
1027
1412
|
pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
|
1028
1413
|
pulumi.set(__self__, "private_endpoint_outbound_connections", private_endpoint_outbound_connections)
|
@@ -1089,6 +1474,14 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1089
1474
|
"""
|
1090
1475
|
return pulumi.get(self, "defined_tags")
|
1091
1476
|
|
1477
|
+
@property
|
1478
|
+
@pulumi.getter(name="disasterRecoveryDetails")
|
1479
|
+
def disaster_recovery_details(self) -> Sequence['outputs.GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailResult']:
|
1480
|
+
"""
|
1481
|
+
Disaster recovery details for the integration instance created in the region.
|
1482
|
+
"""
|
1483
|
+
return pulumi.get(self, "disaster_recovery_details")
|
1484
|
+
|
1092
1485
|
@property
|
1093
1486
|
@pulumi.getter(name="displayName")
|
1094
1487
|
def display_name(self) -> str:
|
@@ -1112,6 +1505,11 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1112
1505
|
def extend_data_retention_trigger(self) -> int:
|
1113
1506
|
return pulumi.get(self, "extend_data_retention_trigger")
|
1114
1507
|
|
1508
|
+
@property
|
1509
|
+
@pulumi.getter(name="failoverTrigger")
|
1510
|
+
def failover_trigger(self) -> int:
|
1511
|
+
return pulumi.get(self, "failover_trigger")
|
1512
|
+
|
1115
1513
|
@property
|
1116
1514
|
@pulumi.getter(name="freeformTags")
|
1117
1515
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -1141,6 +1539,11 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1141
1539
|
"""
|
1142
1540
|
return pulumi.get(self, "idcs_infos")
|
1143
1541
|
|
1542
|
+
@property
|
1543
|
+
@pulumi.getter(name="instanceDesignTimeUrl")
|
1544
|
+
def instance_design_time_url(self) -> str:
|
1545
|
+
return pulumi.get(self, "instance_design_time_url")
|
1546
|
+
|
1144
1547
|
@property
|
1145
1548
|
@pulumi.getter(name="instanceUrl")
|
1146
1549
|
def instance_url(self) -> str:
|
@@ -1165,6 +1568,14 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1165
1568
|
"""
|
1166
1569
|
return pulumi.get(self, "is_byol")
|
1167
1570
|
|
1571
|
+
@property
|
1572
|
+
@pulumi.getter(name="isDisasterRecoveryEnabled")
|
1573
|
+
def is_disaster_recovery_enabled(self) -> bool:
|
1574
|
+
"""
|
1575
|
+
Is Disaster Recovery enabled for the integrationInstance
|
1576
|
+
"""
|
1577
|
+
return pulumi.get(self, "is_disaster_recovery_enabled")
|
1578
|
+
|
1168
1579
|
@property
|
1169
1580
|
@pulumi.getter(name="isFileServerEnabled")
|
1170
1581
|
def is_file_server_enabled(self) -> bool:
|
@@ -1181,6 +1592,14 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1181
1592
|
"""
|
1182
1593
|
return pulumi.get(self, "is_visual_builder_enabled")
|
1183
1594
|
|
1595
|
+
@property
|
1596
|
+
@pulumi.getter(name="lifecycleDetails")
|
1597
|
+
def lifecycle_details(self) -> str:
|
1598
|
+
"""
|
1599
|
+
Additional details of lifecycleState or substates
|
1600
|
+
"""
|
1601
|
+
return pulumi.get(self, "lifecycle_details")
|
1602
|
+
|
1184
1603
|
@property
|
1185
1604
|
@pulumi.getter(name="messagePacks")
|
1186
1605
|
def message_packs(self) -> int:
|
@@ -1260,17 +1679,25 @@ class GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult(di
|
|
1260
1679
|
alias: str,
|
1261
1680
|
certificate_secret_id: str,
|
1262
1681
|
certificate_secret_version: int,
|
1263
|
-
|
1682
|
+
dns_type: str,
|
1683
|
+
dns_zone_name: str,
|
1684
|
+
hostname: str,
|
1685
|
+
managed_type: str):
|
1264
1686
|
"""
|
1265
1687
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
1266
1688
|
:param str certificate_secret_id: Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
|
1267
|
-
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
1689
|
+
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
1690
|
+
:param str dns_zone_name: DNS Zone name
|
1268
1691
|
:param str hostname: A custom hostname to be used for the integration instance URL, in FQDN format.
|
1692
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
1269
1693
|
"""
|
1270
1694
|
pulumi.set(__self__, "alias", alias)
|
1271
1695
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
1272
1696
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
1697
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
1698
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
1273
1699
|
pulumi.set(__self__, "hostname", hostname)
|
1700
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
1274
1701
|
|
1275
1702
|
@property
|
1276
1703
|
@pulumi.getter
|
@@ -1292,10 +1719,23 @@ class GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult(di
|
|
1292
1719
|
@pulumi.getter(name="certificateSecretVersion")
|
1293
1720
|
def certificate_secret_version(self) -> int:
|
1294
1721
|
"""
|
1295
|
-
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
1722
|
+
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
1296
1723
|
"""
|
1297
1724
|
return pulumi.get(self, "certificate_secret_version")
|
1298
1725
|
|
1726
|
+
@property
|
1727
|
+
@pulumi.getter(name="dnsType")
|
1728
|
+
def dns_type(self) -> str:
|
1729
|
+
return pulumi.get(self, "dns_type")
|
1730
|
+
|
1731
|
+
@property
|
1732
|
+
@pulumi.getter(name="dnsZoneName")
|
1733
|
+
def dns_zone_name(self) -> str:
|
1734
|
+
"""
|
1735
|
+
DNS Zone name
|
1736
|
+
"""
|
1737
|
+
return pulumi.get(self, "dns_zone_name")
|
1738
|
+
|
1299
1739
|
@property
|
1300
1740
|
@pulumi.getter
|
1301
1741
|
def hostname(self) -> str:
|
@@ -1304,6 +1744,14 @@ class GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult(di
|
|
1304
1744
|
"""
|
1305
1745
|
return pulumi.get(self, "hostname")
|
1306
1746
|
|
1747
|
+
@property
|
1748
|
+
@pulumi.getter(name="managedType")
|
1749
|
+
def managed_type(self) -> str:
|
1750
|
+
"""
|
1751
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
1752
|
+
"""
|
1753
|
+
return pulumi.get(self, "managed_type")
|
1754
|
+
|
1307
1755
|
|
1308
1756
|
@pulumi.output_type
|
1309
1757
|
class GetIntegrationInstancesIntegrationInstanceAttachmentResult(dict):
|
@@ -1379,17 +1827,25 @@ class GetIntegrationInstancesIntegrationInstanceCustomEndpointResult(dict):
|
|
1379
1827
|
alias: str,
|
1380
1828
|
certificate_secret_id: str,
|
1381
1829
|
certificate_secret_version: int,
|
1382
|
-
|
1830
|
+
dns_type: str,
|
1831
|
+
dns_zone_name: str,
|
1832
|
+
hostname: str,
|
1833
|
+
managed_type: str):
|
1383
1834
|
"""
|
1384
1835
|
:param str alias: When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
1385
1836
|
:param str certificate_secret_id: Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname.
|
1386
|
-
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
1837
|
+
:param int certificate_secret_version: The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
1838
|
+
:param str dns_zone_name: DNS Zone name
|
1387
1839
|
:param str hostname: A custom hostname to be used for the integration instance URL, in FQDN format.
|
1840
|
+
:param str managed_type: Indicates if custom endpoint is managed by oracle or customer.
|
1388
1841
|
"""
|
1389
1842
|
pulumi.set(__self__, "alias", alias)
|
1390
1843
|
pulumi.set(__self__, "certificate_secret_id", certificate_secret_id)
|
1391
1844
|
pulumi.set(__self__, "certificate_secret_version", certificate_secret_version)
|
1845
|
+
pulumi.set(__self__, "dns_type", dns_type)
|
1846
|
+
pulumi.set(__self__, "dns_zone_name", dns_zone_name)
|
1392
1847
|
pulumi.set(__self__, "hostname", hostname)
|
1848
|
+
pulumi.set(__self__, "managed_type", managed_type)
|
1393
1849
|
|
1394
1850
|
@property
|
1395
1851
|
@pulumi.getter
|
@@ -1411,10 +1867,23 @@ class GetIntegrationInstancesIntegrationInstanceCustomEndpointResult(dict):
|
|
1411
1867
|
@pulumi.getter(name="certificateSecretVersion")
|
1412
1868
|
def certificate_secret_version(self) -> int:
|
1413
1869
|
"""
|
1414
|
-
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).
|
1870
|
+
The secret version used for the certificate-secret-id (if certificate-secret-id is specified).* `dns_type` - Type of DNS.
|
1415
1871
|
"""
|
1416
1872
|
return pulumi.get(self, "certificate_secret_version")
|
1417
1873
|
|
1874
|
+
@property
|
1875
|
+
@pulumi.getter(name="dnsType")
|
1876
|
+
def dns_type(self) -> str:
|
1877
|
+
return pulumi.get(self, "dns_type")
|
1878
|
+
|
1879
|
+
@property
|
1880
|
+
@pulumi.getter(name="dnsZoneName")
|
1881
|
+
def dns_zone_name(self) -> str:
|
1882
|
+
"""
|
1883
|
+
DNS Zone name
|
1884
|
+
"""
|
1885
|
+
return pulumi.get(self, "dns_zone_name")
|
1886
|
+
|
1418
1887
|
@property
|
1419
1888
|
@pulumi.getter
|
1420
1889
|
def hostname(self) -> str:
|
@@ -1423,6 +1892,105 @@ class GetIntegrationInstancesIntegrationInstanceCustomEndpointResult(dict):
|
|
1423
1892
|
"""
|
1424
1893
|
return pulumi.get(self, "hostname")
|
1425
1894
|
|
1895
|
+
@property
|
1896
|
+
@pulumi.getter(name="managedType")
|
1897
|
+
def managed_type(self) -> str:
|
1898
|
+
"""
|
1899
|
+
Indicates if custom endpoint is managed by oracle or customer.
|
1900
|
+
"""
|
1901
|
+
return pulumi.get(self, "managed_type")
|
1902
|
+
|
1903
|
+
|
1904
|
+
@pulumi.output_type
|
1905
|
+
class GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailResult(dict):
|
1906
|
+
def __init__(__self__, *,
|
1907
|
+
cross_region_integration_instance_details: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult'],
|
1908
|
+
regional_instance_url: str,
|
1909
|
+
role: str):
|
1910
|
+
"""
|
1911
|
+
:param Sequence['GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailArgs'] cross_region_integration_instance_details: Details of integration instance created in cross region for disaster recovery.
|
1912
|
+
:param str regional_instance_url: Region specific instance url for the integration instance in the region
|
1913
|
+
:param str role: Role of the integration instance in the region
|
1914
|
+
"""
|
1915
|
+
pulumi.set(__self__, "cross_region_integration_instance_details", cross_region_integration_instance_details)
|
1916
|
+
pulumi.set(__self__, "regional_instance_url", regional_instance_url)
|
1917
|
+
pulumi.set(__self__, "role", role)
|
1918
|
+
|
1919
|
+
@property
|
1920
|
+
@pulumi.getter(name="crossRegionIntegrationInstanceDetails")
|
1921
|
+
def cross_region_integration_instance_details(self) -> Sequence['outputs.GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult']:
|
1922
|
+
"""
|
1923
|
+
Details of integration instance created in cross region for disaster recovery.
|
1924
|
+
"""
|
1925
|
+
return pulumi.get(self, "cross_region_integration_instance_details")
|
1926
|
+
|
1927
|
+
@property
|
1928
|
+
@pulumi.getter(name="regionalInstanceUrl")
|
1929
|
+
def regional_instance_url(self) -> str:
|
1930
|
+
"""
|
1931
|
+
Region specific instance url for the integration instance in the region
|
1932
|
+
"""
|
1933
|
+
return pulumi.get(self, "regional_instance_url")
|
1934
|
+
|
1935
|
+
@property
|
1936
|
+
@pulumi.getter
|
1937
|
+
def role(self) -> str:
|
1938
|
+
"""
|
1939
|
+
Role of the integration instance in the region
|
1940
|
+
"""
|
1941
|
+
return pulumi.get(self, "role")
|
1942
|
+
|
1943
|
+
|
1944
|
+
@pulumi.output_type
|
1945
|
+
class GetIntegrationInstancesIntegrationInstanceDisasterRecoveryDetailCrossRegionIntegrationInstanceDetailResult(dict):
|
1946
|
+
def __init__(__self__, *,
|
1947
|
+
id: str,
|
1948
|
+
region: str,
|
1949
|
+
role: str,
|
1950
|
+
time_role_changed: str):
|
1951
|
+
"""
|
1952
|
+
:param str id: The Virtual Cloud Network OCID.
|
1953
|
+
:param str region: Cross region where integration instance is created
|
1954
|
+
:param str role: Role of the integration instance in the region
|
1955
|
+
:param str time_role_changed: Time when cross region integration instance role was changed
|
1956
|
+
"""
|
1957
|
+
pulumi.set(__self__, "id", id)
|
1958
|
+
pulumi.set(__self__, "region", region)
|
1959
|
+
pulumi.set(__self__, "role", role)
|
1960
|
+
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
1961
|
+
|
1962
|
+
@property
|
1963
|
+
@pulumi.getter
|
1964
|
+
def id(self) -> str:
|
1965
|
+
"""
|
1966
|
+
The Virtual Cloud Network OCID.
|
1967
|
+
"""
|
1968
|
+
return pulumi.get(self, "id")
|
1969
|
+
|
1970
|
+
@property
|
1971
|
+
@pulumi.getter
|
1972
|
+
def region(self) -> str:
|
1973
|
+
"""
|
1974
|
+
Cross region where integration instance is created
|
1975
|
+
"""
|
1976
|
+
return pulumi.get(self, "region")
|
1977
|
+
|
1978
|
+
@property
|
1979
|
+
@pulumi.getter
|
1980
|
+
def role(self) -> str:
|
1981
|
+
"""
|
1982
|
+
Role of the integration instance in the region
|
1983
|
+
"""
|
1984
|
+
return pulumi.get(self, "role")
|
1985
|
+
|
1986
|
+
@property
|
1987
|
+
@pulumi.getter(name="timeRoleChanged")
|
1988
|
+
def time_role_changed(self) -> str:
|
1989
|
+
"""
|
1990
|
+
Time when cross region integration instance role was changed
|
1991
|
+
"""
|
1992
|
+
return pulumi.get(self, "time_role_changed")
|
1993
|
+
|
1426
1994
|
|
1427
1995
|
@pulumi.output_type
|
1428
1996
|
class GetIntegrationInstancesIntegrationInstanceIdcsInfoResult(dict):
|
@@ -1437,7 +2005,7 @@ class GetIntegrationInstancesIntegrationInstanceIdcsInfoResult(dict):
|
|
1437
2005
|
:param str idcs_app_id: The IDCS application ID associated with the instance
|
1438
2006
|
:param str idcs_app_location_url: URL for the location of the IDCS Application (used by IDCS APIs)
|
1439
2007
|
:param str idcs_app_name: The IDCS application name associated with the instance
|
1440
|
-
:param str instance_primary_audience_url: The URL used as the primary audience for integration flows in this instance type: string
|
2008
|
+
:param str instance_primary_audience_url: The URL used as the primary audience for integration flows in this instance type: string* `instance_design_time_url` - The Integration Instance Design Time URL
|
1441
2009
|
"""
|
1442
2010
|
pulumi.set(__self__, "idcs_app_display_name", idcs_app_display_name)
|
1443
2011
|
pulumi.set(__self__, "idcs_app_id", idcs_app_id)
|
@@ -1481,7 +2049,7 @@ class GetIntegrationInstancesIntegrationInstanceIdcsInfoResult(dict):
|
|
1481
2049
|
@pulumi.getter(name="instancePrimaryAudienceUrl")
|
1482
2050
|
def instance_primary_audience_url(self) -> str:
|
1483
2051
|
"""
|
1484
|
-
The URL used as the primary audience for integration flows in this instance type: string
|
2052
|
+
The URL used as the primary audience for integration flows in this instance type: string* `instance_design_time_url` - The Integration Instance Design Time URL
|
1485
2053
|
"""
|
1486
2054
|
return pulumi.get(self, "instance_primary_audience_url")
|
1487
2055
|
|