pulumi-oci 1.28.0a1710997024__py3-none-any.whl → 1.28.0a1711384732__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.
@@ -2141,9 +2141,9 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
2141
2141
  vault_id: Optional[str] = None):
2142
2142
  """
2143
2143
  :param str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
2144
- :param str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
2144
+ :param str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
2145
2145
  :param str time_activated: The date and time the kms key activated.
2146
- :param str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
2146
+ :param str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
2147
2147
  """
2148
2148
  if id is not None:
2149
2149
  pulumi.set(__self__, "id", id)
@@ -2166,7 +2166,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
2166
2166
  @pulumi.getter(name="kmsKeyVersionId")
2167
2167
  def kms_key_version_id(self) -> Optional[str]:
2168
2168
  """
2169
- The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
2169
+ The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
2170
2170
  """
2171
2171
  return pulumi.get(self, "kms_key_version_id")
2172
2172
 
@@ -2182,7 +2182,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
2182
2182
  @pulumi.getter(name="vaultId")
2183
2183
  def vault_id(self) -> Optional[str]:
2184
2184
  """
2185
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
2185
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
2186
2186
  """
2187
2187
  return pulumi.get(self, "vault_id")
2188
2188
 
@@ -8,5 +8,6 @@ import typing
8
8
  from .get_integration_instance import *
9
9
  from .get_integration_instances import *
10
10
  from .integration_instance import *
11
+ from .private_endpoint_outbound_connection import *
11
12
  from ._inputs import *
12
13
  from . import outputs
@@ -16,6 +16,7 @@ __all__ = [
16
16
  'IntegrationInstanceIdcsInfoArgs',
17
17
  'IntegrationInstanceNetworkEndpointDetailsArgs',
18
18
  'IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs',
19
+ 'IntegrationInstancePrivateEndpointOutboundConnectionArgs',
19
20
  'GetIntegrationInstancesFilterArgs',
20
21
  ]
21
22
 
@@ -347,6 +348,7 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
347
348
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
348
349
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
349
350
  :param pulumi.Input[bool] is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
351
+ <<<<<<< HEAD
350
352
  """
351
353
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
352
354
  if allowlisted_http_ips is not None:
@@ -397,6 +399,7 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
397
399
  def is_integration_vcn_allowlisted(self) -> Optional[pulumi.Input[bool]]:
398
400
  """
399
401
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
402
+ <<<<<<< HEAD
400
403
  """
401
404
  return pulumi.get(self, "is_integration_vcn_allowlisted")
402
405
 
@@ -443,6 +446,61 @@ class IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs:
443
446
  pulumi.set(self, "allowlisted_ips", value)
444
447
 
445
448
 
449
+ @pulumi.input_type
450
+ class IntegrationInstancePrivateEndpointOutboundConnectionArgs:
451
+ def __init__(__self__, *,
452
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
453
+ outbound_connection_type: Optional[pulumi.Input[str]] = None,
454
+ subnet_id: Optional[pulumi.Input[str]] = None):
455
+ """
456
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: One or more Network security group Ids. This is an optional argument.
457
+ :param pulumi.Input[str] outbound_connection_type: The type of Outbound Connection.
458
+ :param pulumi.Input[str] subnet_id: Customer Private Network VCN Subnet OCID. This is a required argument.
459
+ """
460
+ if nsg_ids is not None:
461
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
462
+ if outbound_connection_type is not None:
463
+ pulumi.set(__self__, "outbound_connection_type", outbound_connection_type)
464
+ if subnet_id is not None:
465
+ pulumi.set(__self__, "subnet_id", subnet_id)
466
+
467
+ @property
468
+ @pulumi.getter(name="nsgIds")
469
+ def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
470
+ """
471
+ One or more Network security group Ids. This is an optional argument.
472
+ """
473
+ return pulumi.get(self, "nsg_ids")
474
+
475
+ @nsg_ids.setter
476
+ def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
477
+ pulumi.set(self, "nsg_ids", value)
478
+
479
+ @property
480
+ @pulumi.getter(name="outboundConnectionType")
481
+ def outbound_connection_type(self) -> Optional[pulumi.Input[str]]:
482
+ """
483
+ The type of Outbound Connection.
484
+ """
485
+ return pulumi.get(self, "outbound_connection_type")
486
+
487
+ @outbound_connection_type.setter
488
+ def outbound_connection_type(self, value: Optional[pulumi.Input[str]]):
489
+ pulumi.set(self, "outbound_connection_type", value)
490
+
491
+ @property
492
+ @pulumi.getter(name="subnetId")
493
+ def subnet_id(self) -> Optional[pulumi.Input[str]]:
494
+ """
495
+ Customer Private Network VCN Subnet OCID. This is a required argument.
496
+ """
497
+ return pulumi.get(self, "subnet_id")
498
+
499
+ @subnet_id.setter
500
+ def subnet_id(self, value: Optional[pulumi.Input[str]]):
501
+ pulumi.set(self, "subnet_id", value)
502
+
503
+
446
504
  @pulumi.input_type
447
505
  class GetIntegrationInstancesFilterArgs:
448
506
  def __init__(__self__, *,
@@ -22,7 +22,7 @@ class GetIntegrationInstanceResult:
22
22
  """
23
23
  A collection of values returned by getIntegrationInstance.
24
24
  """
25
- def __init__(__self__, alternate_custom_endpoints=None, attachments=None, compartment_id=None, consumption_model=None, custom_endpoints=None, defined_tags=None, display_name=None, domain_id=None, enable_process_automation_trigger=None, freeform_tags=None, id=None, idcs_at=None, idcs_infos=None, instance_url=None, integration_instance_id=None, integration_instance_type=None, is_byol=None, is_file_server_enabled=None, is_visual_builder_enabled=None, message_packs=None, network_endpoint_details=None, shape=None, state=None, state_message=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, alternate_custom_endpoints=None, attachments=None, compartment_id=None, consumption_model=None, custom_endpoints=None, defined_tags=None, display_name=None, domain_id=None, enable_process_automation_trigger=None, freeform_tags=None, id=None, idcs_at=None, idcs_infos=None, instance_url=None, integration_instance_id=None, integration_instance_type=None, is_byol=None, is_file_server_enabled=None, is_visual_builder_enabled=None, message_packs=None, network_endpoint_details=None, private_endpoint_outbound_connections=None, shape=None, state=None, state_message=None, time_created=None, time_updated=None):
26
26
  if alternate_custom_endpoints and not isinstance(alternate_custom_endpoints, list):
27
27
  raise TypeError("Expected argument 'alternate_custom_endpoints' to be a list")
28
28
  pulumi.set(__self__, "alternate_custom_endpoints", alternate_custom_endpoints)
@@ -86,6 +86,9 @@ class GetIntegrationInstanceResult:
86
86
  if network_endpoint_details and not isinstance(network_endpoint_details, list):
87
87
  raise TypeError("Expected argument 'network_endpoint_details' to be a list")
88
88
  pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
89
+ if private_endpoint_outbound_connections and not isinstance(private_endpoint_outbound_connections, list):
90
+ raise TypeError("Expected argument 'private_endpoint_outbound_connections' to be a list")
91
+ pulumi.set(__self__, "private_endpoint_outbound_connections", private_endpoint_outbound_connections)
89
92
  if shape and not isinstance(shape, str):
90
93
  raise TypeError("Expected argument 'shape' to be a str")
91
94
  pulumi.set(__self__, "shape", shape)
@@ -258,11 +261,20 @@ class GetIntegrationInstanceResult:
258
261
  """
259
262
  return pulumi.get(self, "network_endpoint_details")
260
263
 
264
+ @property
265
+ @pulumi.getter(name="privateEndpointOutboundConnections")
266
+ def private_endpoint_outbound_connections(self) -> Sequence['outputs.GetIntegrationInstancePrivateEndpointOutboundConnectionResult']:
267
+ """
268
+ Base representation for Outbound Connection (Reverse Connection).
269
+ """
270
+ return pulumi.get(self, "private_endpoint_outbound_connections")
271
+
261
272
  @property
262
273
  @pulumi.getter
263
274
  def shape(self) -> str:
264
275
  """
265
276
  Shape
277
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
266
278
  """
267
279
  return pulumi.get(self, "shape")
268
280
 
@@ -326,6 +338,7 @@ class AwaitableGetIntegrationInstanceResult(GetIntegrationInstanceResult):
326
338
  is_visual_builder_enabled=self.is_visual_builder_enabled,
327
339
  message_packs=self.message_packs,
328
340
  network_endpoint_details=self.network_endpoint_details,
341
+ private_endpoint_outbound_connections=self.private_endpoint_outbound_connections,
329
342
  shape=self.shape,
330
343
  state=self.state,
331
344
  state_message=self.state_message,
@@ -381,6 +394,7 @@ def get_integration_instance(integration_instance_id: Optional[str] = None,
381
394
  is_visual_builder_enabled=pulumi.get(__ret__, 'is_visual_builder_enabled'),
382
395
  message_packs=pulumi.get(__ret__, 'message_packs'),
383
396
  network_endpoint_details=pulumi.get(__ret__, 'network_endpoint_details'),
397
+ private_endpoint_outbound_connections=pulumi.get(__ret__, 'private_endpoint_outbound_connections'),
384
398
  shape=pulumi.get(__ret__, 'shape'),
385
399
  state=pulumi.get(__ret__, 'state'),
386
400
  state_message=pulumi.get(__ret__, 'state_message'),
@@ -47,12 +47,14 @@ class IntegrationInstanceArgs:
47
47
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
48
48
  :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.
49
49
  :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.
50
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
50
51
  :param pulumi.Input[Mapping[str, Any]] 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"}`
51
52
  :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.
52
53
  :param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
53
54
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
54
55
  :param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
55
56
  :param pulumi.Input[str] shape: Shape
57
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
56
58
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
57
59
 
58
60
 
@@ -216,6 +218,7 @@ class IntegrationInstanceArgs:
216
218
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
217
219
  """
218
220
  (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
221
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
219
222
  """
220
223
  return pulumi.get(self, "enable_process_automation_trigger")
221
224
 
@@ -288,6 +291,7 @@ class IntegrationInstanceArgs:
288
291
  def shape(self) -> Optional[pulumi.Input[str]]:
289
292
  """
290
293
  Shape
294
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
291
295
  """
292
296
  return pulumi.get(self, "shape")
293
297
 
@@ -334,6 +338,7 @@ class _IntegrationInstanceState:
334
338
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
335
339
  message_packs: Optional[pulumi.Input[int]] = None,
336
340
  network_endpoint_details: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']] = None,
341
+ private_endpoint_outbound_connections: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]] = None,
337
342
  shape: Optional[pulumi.Input[str]] = None,
338
343
  state: Optional[pulumi.Input[str]] = None,
339
344
  state_message: Optional[pulumi.Input[str]] = None,
@@ -350,6 +355,7 @@ class _IntegrationInstanceState:
350
355
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
351
356
  :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.
352
357
  :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.
358
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
353
359
  :param pulumi.Input[Mapping[str, Any]] 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"}`
354
360
  :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.
355
361
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
@@ -360,7 +366,9 @@ class _IntegrationInstanceState:
360
366
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
361
367
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
362
368
  :param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
369
+ :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
363
370
  :param pulumi.Input[str] shape: Shape
371
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
364
372
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
365
373
 
366
374
 
@@ -408,6 +416,8 @@ class _IntegrationInstanceState:
408
416
  pulumi.set(__self__, "message_packs", message_packs)
409
417
  if network_endpoint_details is not None:
410
418
  pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
419
+ if private_endpoint_outbound_connections is not None:
420
+ pulumi.set(__self__, "private_endpoint_outbound_connections", private_endpoint_outbound_connections)
411
421
  if shape is not None:
412
422
  pulumi.set(__self__, "shape", shape)
413
423
  if state is not None:
@@ -520,6 +530,7 @@ class _IntegrationInstanceState:
520
530
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
521
531
  """
522
532
  (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
533
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
523
534
  """
524
535
  return pulumi.get(self, "enable_process_automation_trigger")
525
536
 
@@ -647,11 +658,24 @@ class _IntegrationInstanceState:
647
658
  def network_endpoint_details(self, value: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']]):
648
659
  pulumi.set(self, "network_endpoint_details", value)
649
660
 
661
+ @property
662
+ @pulumi.getter(name="privateEndpointOutboundConnections")
663
+ def private_endpoint_outbound_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]]:
664
+ """
665
+ Base representation for Outbound Connection (Reverse Connection).
666
+ """
667
+ return pulumi.get(self, "private_endpoint_outbound_connections")
668
+
669
+ @private_endpoint_outbound_connections.setter
670
+ def private_endpoint_outbound_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]]):
671
+ pulumi.set(self, "private_endpoint_outbound_connections", value)
672
+
650
673
  @property
651
674
  @pulumi.getter
652
675
  def shape(self) -> Optional[pulumi.Input[str]]:
653
676
  """
654
677
  Shape
678
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
655
679
  """
656
680
  return pulumi.get(self, "shape")
657
681
 
@@ -805,6 +829,7 @@ class IntegrationInstance(pulumi.CustomResource):
805
829
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
806
830
  :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.
807
831
  :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.
832
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
808
833
  :param pulumi.Input[Mapping[str, Any]] 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"}`
809
834
  :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.
810
835
  :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
@@ -814,6 +839,7 @@ class IntegrationInstance(pulumi.CustomResource):
814
839
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
815
840
  :param pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']] network_endpoint_details: Base representation of a network endpoint.
816
841
  :param pulumi.Input[str] shape: Shape
842
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
817
843
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
818
844
 
819
845
 
@@ -958,6 +984,7 @@ class IntegrationInstance(pulumi.CustomResource):
958
984
  __props__.__dict__["attachments"] = None
959
985
  __props__.__dict__["idcs_infos"] = None
960
986
  __props__.__dict__["instance_url"] = None
987
+ __props__.__dict__["private_endpoint_outbound_connections"] = None
961
988
  __props__.__dict__["state_message"] = None
962
989
  __props__.__dict__["time_created"] = None
963
990
  __props__.__dict__["time_updated"] = None
@@ -992,6 +1019,7 @@ class IntegrationInstance(pulumi.CustomResource):
992
1019
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
993
1020
  message_packs: Optional[pulumi.Input[int]] = None,
994
1021
  network_endpoint_details: Optional[pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']]] = None,
1022
+ private_endpoint_outbound_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]]] = None,
995
1023
  shape: Optional[pulumi.Input[str]] = None,
996
1024
  state: Optional[pulumi.Input[str]] = None,
997
1025
  state_message: Optional[pulumi.Input[str]] = None,
@@ -1013,6 +1041,7 @@ class IntegrationInstance(pulumi.CustomResource):
1013
1041
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
1014
1042
  :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.
1015
1043
  :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.
1044
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1016
1045
  :param pulumi.Input[Mapping[str, Any]] 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"}`
1017
1046
  :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.
1018
1047
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstanceIdcsInfoArgs']]]] idcs_infos: Information for IDCS access
@@ -1023,7 +1052,9 @@ class IntegrationInstance(pulumi.CustomResource):
1023
1052
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
1024
1053
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
1025
1054
  :param pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']] network_endpoint_details: Base representation of a network endpoint.
1055
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
1026
1056
  :param pulumi.Input[str] shape: Shape
1057
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1027
1058
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
1028
1059
 
1029
1060
 
@@ -1056,6 +1087,7 @@ class IntegrationInstance(pulumi.CustomResource):
1056
1087
  __props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
1057
1088
  __props__.__dict__["message_packs"] = message_packs
1058
1089
  __props__.__dict__["network_endpoint_details"] = network_endpoint_details
1090
+ __props__.__dict__["private_endpoint_outbound_connections"] = private_endpoint_outbound_connections
1059
1091
  __props__.__dict__["shape"] = shape
1060
1092
  __props__.__dict__["state"] = state
1061
1093
  __props__.__dict__["state_message"] = state_message
@@ -1132,6 +1164,7 @@ class IntegrationInstance(pulumi.CustomResource):
1132
1164
  def enable_process_automation_trigger(self) -> pulumi.Output[Optional[int]]:
1133
1165
  """
1134
1166
  (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
1167
+ ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1135
1168
  """
1136
1169
  return pulumi.get(self, "enable_process_automation_trigger")
1137
1170
 
@@ -1215,11 +1248,20 @@ class IntegrationInstance(pulumi.CustomResource):
1215
1248
  """
1216
1249
  return pulumi.get(self, "network_endpoint_details")
1217
1250
 
1251
+ @property
1252
+ @pulumi.getter(name="privateEndpointOutboundConnections")
1253
+ def private_endpoint_outbound_connections(self) -> pulumi.Output[Sequence['outputs.IntegrationInstancePrivateEndpointOutboundConnection']]:
1254
+ """
1255
+ Base representation for Outbound Connection (Reverse Connection).
1256
+ """
1257
+ return pulumi.get(self, "private_endpoint_outbound_connections")
1258
+
1218
1259
  @property
1219
1260
  @pulumi.getter
1220
1261
  def shape(self) -> pulumi.Output[str]:
1221
1262
  """
1222
1263
  Shape
1264
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1223
1265
  """
1224
1266
  return pulumi.get(self, "shape")
1225
1267
 
@@ -17,12 +17,14 @@ __all__ = [
17
17
  'IntegrationInstanceIdcsInfo',
18
18
  'IntegrationInstanceNetworkEndpointDetails',
19
19
  'IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcn',
20
+ 'IntegrationInstancePrivateEndpointOutboundConnection',
20
21
  'GetIntegrationInstanceAlternateCustomEndpointResult',
21
22
  'GetIntegrationInstanceAttachmentResult',
22
23
  'GetIntegrationInstanceCustomEndpointResult',
23
24
  'GetIntegrationInstanceIdcsInfoResult',
24
25
  'GetIntegrationInstanceNetworkEndpointDetailResult',
25
26
  'GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
27
+ 'GetIntegrationInstancePrivateEndpointOutboundConnectionResult',
26
28
  'GetIntegrationInstancesFilterResult',
27
29
  'GetIntegrationInstancesIntegrationInstanceResult',
28
30
  'GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult',
@@ -31,6 +33,7 @@ __all__ = [
31
33
  'GetIntegrationInstancesIntegrationInstanceIdcsInfoResult',
32
34
  'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult',
33
35
  'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
36
+ 'GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult',
34
37
  ]
35
38
 
36
39
  @pulumi.output_type
@@ -400,6 +403,7 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
400
403
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
401
404
  :param Sequence['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
402
405
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
406
+ <<<<<<< HEAD
403
407
  """
404
408
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
405
409
  if allowlisted_http_ips is not None:
@@ -438,6 +442,7 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
438
442
  def is_integration_vcn_allowlisted(self) -> Optional[bool]:
439
443
  """
440
444
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
445
+ <<<<<<< HEAD
441
446
  """
442
447
  return pulumi.get(self, "is_integration_vcn_allowlisted")
443
448
 
@@ -489,6 +494,70 @@ class IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcn(dict):
489
494
  return pulumi.get(self, "allowlisted_ips")
490
495
 
491
496
 
497
+ @pulumi.output_type
498
+ class IntegrationInstancePrivateEndpointOutboundConnection(dict):
499
+ @staticmethod
500
+ def __key_warning(key: str):
501
+ suggest = None
502
+ if key == "nsgIds":
503
+ suggest = "nsg_ids"
504
+ elif key == "outboundConnectionType":
505
+ suggest = "outbound_connection_type"
506
+ elif key == "subnetId":
507
+ suggest = "subnet_id"
508
+
509
+ if suggest:
510
+ pulumi.log.warn(f"Key '{key}' not found in IntegrationInstancePrivateEndpointOutboundConnection. Access the value via the '{suggest}' property getter instead.")
511
+
512
+ def __getitem__(self, key: str) -> Any:
513
+ IntegrationInstancePrivateEndpointOutboundConnection.__key_warning(key)
514
+ return super().__getitem__(key)
515
+
516
+ def get(self, key: str, default = None) -> Any:
517
+ IntegrationInstancePrivateEndpointOutboundConnection.__key_warning(key)
518
+ return super().get(key, default)
519
+
520
+ def __init__(__self__, *,
521
+ nsg_ids: Optional[Sequence[str]] = None,
522
+ outbound_connection_type: Optional[str] = None,
523
+ subnet_id: Optional[str] = None):
524
+ """
525
+ :param Sequence[str] nsg_ids: One or more Network security group Ids. This is an optional argument.
526
+ :param str outbound_connection_type: The type of Outbound Connection.
527
+ :param str subnet_id: Customer Private Network VCN Subnet OCID. This is a required argument.
528
+ """
529
+ if nsg_ids is not None:
530
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
531
+ if outbound_connection_type is not None:
532
+ pulumi.set(__self__, "outbound_connection_type", outbound_connection_type)
533
+ if subnet_id is not None:
534
+ pulumi.set(__self__, "subnet_id", subnet_id)
535
+
536
+ @property
537
+ @pulumi.getter(name="nsgIds")
538
+ def nsg_ids(self) -> Optional[Sequence[str]]:
539
+ """
540
+ One or more Network security group Ids. This is an optional argument.
541
+ """
542
+ return pulumi.get(self, "nsg_ids")
543
+
544
+ @property
545
+ @pulumi.getter(name="outboundConnectionType")
546
+ def outbound_connection_type(self) -> Optional[str]:
547
+ """
548
+ The type of Outbound Connection.
549
+ """
550
+ return pulumi.get(self, "outbound_connection_type")
551
+
552
+ @property
553
+ @pulumi.getter(name="subnetId")
554
+ def subnet_id(self) -> Optional[str]:
555
+ """
556
+ Customer Private Network VCN Subnet OCID. This is a required argument.
557
+ """
558
+ return pulumi.get(self, "subnet_id")
559
+
560
+
492
561
  @pulumi.output_type
493
562
  class GetIntegrationInstanceAlternateCustomEndpointResult(dict):
494
563
  def __init__(__self__, *,
@@ -728,7 +797,8 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
728
797
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
729
798
  :param Sequence['GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
730
799
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
731
- :param str network_endpoint_type: The type of network endpoint.
800
+ :param str network_endpoint_type: The type of network endpoint.
801
+ <<<<<<< HEAD
732
802
  """
733
803
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
734
804
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -763,7 +833,8 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
763
833
  @pulumi.getter(name="networkEndpointType")
764
834
  def network_endpoint_type(self) -> str:
765
835
  """
766
- The type of network endpoint.
836
+ The type of network endpoint.
837
+ <<<<<<< HEAD
767
838
  """
768
839
  return pulumi.get(self, "network_endpoint_type")
769
840
 
@@ -797,6 +868,46 @@ class GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
797
868
  return pulumi.get(self, "id")
798
869
 
799
870
 
871
+ @pulumi.output_type
872
+ class GetIntegrationInstancePrivateEndpointOutboundConnectionResult(dict):
873
+ def __init__(__self__, *,
874
+ nsg_ids: Sequence[str],
875
+ outbound_connection_type: str,
876
+ subnet_id: str):
877
+ """
878
+ :param Sequence[str] nsg_ids: One or more Network security group Ids. This is an optional argument.
879
+ :param str outbound_connection_type: The type of Outbound Connection.
880
+ :param str subnet_id: Customer Private Network VCN Subnet OCID. This is a required argument.
881
+ """
882
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
883
+ pulumi.set(__self__, "outbound_connection_type", outbound_connection_type)
884
+ pulumi.set(__self__, "subnet_id", subnet_id)
885
+
886
+ @property
887
+ @pulumi.getter(name="nsgIds")
888
+ def nsg_ids(self) -> Sequence[str]:
889
+ """
890
+ One or more Network security group Ids. This is an optional argument.
891
+ """
892
+ return pulumi.get(self, "nsg_ids")
893
+
894
+ @property
895
+ @pulumi.getter(name="outboundConnectionType")
896
+ def outbound_connection_type(self) -> str:
897
+ """
898
+ The type of Outbound Connection.
899
+ """
900
+ return pulumi.get(self, "outbound_connection_type")
901
+
902
+ @property
903
+ @pulumi.getter(name="subnetId")
904
+ def subnet_id(self) -> str:
905
+ """
906
+ Customer Private Network VCN Subnet OCID. This is a required argument.
907
+ """
908
+ return pulumi.get(self, "subnet_id")
909
+
910
+
800
911
  @pulumi.output_type
801
912
  class GetIntegrationInstancesFilterResult(dict):
802
913
  def __init__(__self__, *,
@@ -847,6 +958,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
847
958
  is_visual_builder_enabled: bool,
848
959
  message_packs: int,
849
960
  network_endpoint_details: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult'],
961
+ private_endpoint_outbound_connections: Sequence['outputs.GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult'],
850
962
  shape: str,
851
963
  state: str,
852
964
  state_message: str,
@@ -870,7 +982,9 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
870
982
  :param bool is_visual_builder_enabled: Visual Builder is enabled or not.
871
983
  :param int message_packs: The number of configured message packs (if any)
872
984
  :param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailArgs'] network_endpoint_details: Base representation of a network endpoint.
985
+ :param Sequence['GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionArgs'] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
873
986
  :param str shape: Shape
987
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
874
988
  :param str state: Life cycle state to query on.
875
989
  :param str state_message: An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
876
990
  :param str time_created: The time the the Integration Instance was created. An RFC3339 formatted datetime string.
@@ -896,6 +1010,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
896
1010
  pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
897
1011
  pulumi.set(__self__, "message_packs", message_packs)
898
1012
  pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
1013
+ pulumi.set(__self__, "private_endpoint_outbound_connections", private_endpoint_outbound_connections)
899
1014
  pulumi.set(__self__, "shape", shape)
900
1015
  pulumi.set(__self__, "state", state)
901
1016
  pulumi.set(__self__, "state_message", state_message)
@@ -1053,11 +1168,20 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1053
1168
  """
1054
1169
  return pulumi.get(self, "network_endpoint_details")
1055
1170
 
1171
+ @property
1172
+ @pulumi.getter(name="privateEndpointOutboundConnections")
1173
+ def private_endpoint_outbound_connections(self) -> Sequence['outputs.GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult']:
1174
+ """
1175
+ Base representation for Outbound Connection (Reverse Connection).
1176
+ """
1177
+ return pulumi.get(self, "private_endpoint_outbound_connections")
1178
+
1056
1179
  @property
1057
1180
  @pulumi.getter
1058
1181
  def shape(self) -> str:
1059
1182
  """
1060
1183
  Shape
1184
+ >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1061
1185
  """
1062
1186
  return pulumi.get(self, "shape")
1063
1187
 
@@ -1333,7 +1457,8 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1333
1457
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1334
1458
  :param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
1335
1459
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
1336
- :param str network_endpoint_type: The type of network endpoint.
1460
+ :param str network_endpoint_type: The type of network endpoint.
1461
+ <<<<<<< HEAD
1337
1462
  """
1338
1463
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
1339
1464
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -1368,7 +1493,8 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1368
1493
  @pulumi.getter(name="networkEndpointType")
1369
1494
  def network_endpoint_type(self) -> str:
1370
1495
  """
1371
- The type of network endpoint.
1496
+ The type of network endpoint.
1497
+ <<<<<<< HEAD
1372
1498
  """
1373
1499
  return pulumi.get(self, "network_endpoint_type")
1374
1500
 
@@ -1402,3 +1528,43 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlisted
1402
1528
  return pulumi.get(self, "id")
1403
1529
 
1404
1530
 
1531
+ @pulumi.output_type
1532
+ class GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult(dict):
1533
+ def __init__(__self__, *,
1534
+ nsg_ids: Sequence[str],
1535
+ outbound_connection_type: str,
1536
+ subnet_id: str):
1537
+ """
1538
+ :param Sequence[str] nsg_ids: One or more Network security group Ids. This is an optional argument.
1539
+ :param str outbound_connection_type: The type of Outbound Connection.
1540
+ :param str subnet_id: Customer Private Network VCN Subnet OCID. This is a required argument.
1541
+ """
1542
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
1543
+ pulumi.set(__self__, "outbound_connection_type", outbound_connection_type)
1544
+ pulumi.set(__self__, "subnet_id", subnet_id)
1545
+
1546
+ @property
1547
+ @pulumi.getter(name="nsgIds")
1548
+ def nsg_ids(self) -> Sequence[str]:
1549
+ """
1550
+ One or more Network security group Ids. This is an optional argument.
1551
+ """
1552
+ return pulumi.get(self, "nsg_ids")
1553
+
1554
+ @property
1555
+ @pulumi.getter(name="outboundConnectionType")
1556
+ def outbound_connection_type(self) -> str:
1557
+ """
1558
+ The type of Outbound Connection.
1559
+ """
1560
+ return pulumi.get(self, "outbound_connection_type")
1561
+
1562
+ @property
1563
+ @pulumi.getter(name="subnetId")
1564
+ def subnet_id(self) -> str:
1565
+ """
1566
+ Customer Private Network VCN Subnet OCID. This is a required argument.
1567
+ """
1568
+ return pulumi.get(self, "subnet_id")
1569
+
1570
+