pulumi-oci 1.28.0__py3-none-any.whl → 1.28.0a1710997024__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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
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.
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). This parameter and `secretId` are required for Customer Managed Keys.
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).
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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
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.
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). This parameter and `secretId` are required for Customer Managed Keys.
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).
2186
2186
  """
2187
2187
  return pulumi.get(self, "vault_id")
2188
2188
 
@@ -8,6 +8,5 @@ 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 *
12
11
  from ._inputs import *
13
12
  from . import outputs
@@ -16,7 +16,6 @@ __all__ = [
16
16
  'IntegrationInstanceIdcsInfoArgs',
17
17
  'IntegrationInstanceNetworkEndpointDetailsArgs',
18
18
  'IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs',
19
- 'IntegrationInstancePrivateEndpointOutboundConnectionArgs',
20
19
  'GetIntegrationInstancesFilterArgs',
21
20
  ]
22
21
 
@@ -348,7 +347,6 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
348
347
  :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.
349
348
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
350
349
  :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
352
350
  """
353
351
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
354
352
  if allowlisted_http_ips is not None:
@@ -399,7 +397,6 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
399
397
  def is_integration_vcn_allowlisted(self) -> Optional[pulumi.Input[bool]]:
400
398
  """
401
399
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
402
- <<<<<<< HEAD
403
400
  """
404
401
  return pulumi.get(self, "is_integration_vcn_allowlisted")
405
402
 
@@ -446,61 +443,6 @@ class IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs:
446
443
  pulumi.set(self, "allowlisted_ips", value)
447
444
 
448
445
 
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
-
504
446
  @pulumi.input_type
505
447
  class GetIntegrationInstancesFilterArgs:
506
448
  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, private_endpoint_outbound_connections=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, 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,9 +86,6 @@ 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)
92
89
  if shape and not isinstance(shape, str):
93
90
  raise TypeError("Expected argument 'shape' to be a str")
94
91
  pulumi.set(__self__, "shape", shape)
@@ -261,20 +258,11 @@ class GetIntegrationInstanceResult:
261
258
  """
262
259
  return pulumi.get(self, "network_endpoint_details")
263
260
 
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
-
272
261
  @property
273
262
  @pulumi.getter
274
263
  def shape(self) -> str:
275
264
  """
276
265
  Shape
277
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
278
266
  """
279
267
  return pulumi.get(self, "shape")
280
268
 
@@ -338,7 +326,6 @@ class AwaitableGetIntegrationInstanceResult(GetIntegrationInstanceResult):
338
326
  is_visual_builder_enabled=self.is_visual_builder_enabled,
339
327
  message_packs=self.message_packs,
340
328
  network_endpoint_details=self.network_endpoint_details,
341
- private_endpoint_outbound_connections=self.private_endpoint_outbound_connections,
342
329
  shape=self.shape,
343
330
  state=self.state,
344
331
  state_message=self.state_message,
@@ -394,7 +381,6 @@ def get_integration_instance(integration_instance_id: Optional[str] = None,
394
381
  is_visual_builder_enabled=pulumi.get(__ret__, 'is_visual_builder_enabled'),
395
382
  message_packs=pulumi.get(__ret__, 'message_packs'),
396
383
  network_endpoint_details=pulumi.get(__ret__, 'network_endpoint_details'),
397
- private_endpoint_outbound_connections=pulumi.get(__ret__, 'private_endpoint_outbound_connections'),
398
384
  shape=pulumi.get(__ret__, 'shape'),
399
385
  state=pulumi.get(__ret__, 'state'),
400
386
  state_message=pulumi.get(__ret__, 'state_message'),
@@ -47,14 +47,12 @@ 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)
51
50
  :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"}`
52
51
  :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.
53
52
  :param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
54
53
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
55
54
  :param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
56
55
  :param pulumi.Input[str] shape: Shape
57
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
58
56
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
59
57
 
60
58
 
@@ -218,7 +216,6 @@ class IntegrationInstanceArgs:
218
216
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
219
217
  """
220
218
  (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)
222
219
  """
223
220
  return pulumi.get(self, "enable_process_automation_trigger")
224
221
 
@@ -291,7 +288,6 @@ class IntegrationInstanceArgs:
291
288
  def shape(self) -> Optional[pulumi.Input[str]]:
292
289
  """
293
290
  Shape
294
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
295
291
  """
296
292
  return pulumi.get(self, "shape")
297
293
 
@@ -338,7 +334,6 @@ class _IntegrationInstanceState:
338
334
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
339
335
  message_packs: Optional[pulumi.Input[int]] = None,
340
336
  network_endpoint_details: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']] = None,
341
- private_endpoint_outbound_connections: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]] = None,
342
337
  shape: Optional[pulumi.Input[str]] = None,
343
338
  state: Optional[pulumi.Input[str]] = None,
344
339
  state_message: Optional[pulumi.Input[str]] = None,
@@ -355,7 +350,6 @@ class _IntegrationInstanceState:
355
350
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
356
351
  :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.
357
352
  :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)
359
353
  :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"}`
360
354
  :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.
361
355
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
@@ -366,9 +360,7 @@ class _IntegrationInstanceState:
366
360
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
367
361
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
368
362
  :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).
370
363
  :param pulumi.Input[str] shape: Shape
371
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
372
364
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
373
365
 
374
366
 
@@ -416,8 +408,6 @@ class _IntegrationInstanceState:
416
408
  pulumi.set(__self__, "message_packs", message_packs)
417
409
  if network_endpoint_details is not None:
418
410
  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)
421
411
  if shape is not None:
422
412
  pulumi.set(__self__, "shape", shape)
423
413
  if state is not None:
@@ -530,7 +520,6 @@ class _IntegrationInstanceState:
530
520
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
531
521
  """
532
522
  (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)
534
523
  """
535
524
  return pulumi.get(self, "enable_process_automation_trigger")
536
525
 
@@ -658,24 +647,11 @@ class _IntegrationInstanceState:
658
647
  def network_endpoint_details(self, value: Optional[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs']]):
659
648
  pulumi.set(self, "network_endpoint_details", value)
660
649
 
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
-
673
650
  @property
674
651
  @pulumi.getter
675
652
  def shape(self) -> Optional[pulumi.Input[str]]:
676
653
  """
677
654
  Shape
678
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
679
655
  """
680
656
  return pulumi.get(self, "shape")
681
657
 
@@ -829,7 +805,6 @@ class IntegrationInstance(pulumi.CustomResource):
829
805
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
830
806
  :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.
831
807
  :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)
833
808
  :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"}`
834
809
  :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.
835
810
  :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
@@ -839,7 +814,6 @@ class IntegrationInstance(pulumi.CustomResource):
839
814
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
840
815
  :param pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']] network_endpoint_details: Base representation of a network endpoint.
841
816
  :param pulumi.Input[str] shape: Shape
842
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
843
817
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
844
818
 
845
819
 
@@ -984,7 +958,6 @@ class IntegrationInstance(pulumi.CustomResource):
984
958
  __props__.__dict__["attachments"] = None
985
959
  __props__.__dict__["idcs_infos"] = None
986
960
  __props__.__dict__["instance_url"] = None
987
- __props__.__dict__["private_endpoint_outbound_connections"] = None
988
961
  __props__.__dict__["state_message"] = None
989
962
  __props__.__dict__["time_created"] = None
990
963
  __props__.__dict__["time_updated"] = None
@@ -1019,7 +992,6 @@ class IntegrationInstance(pulumi.CustomResource):
1019
992
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
1020
993
  message_packs: Optional[pulumi.Input[int]] = None,
1021
994
  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,
1023
995
  shape: Optional[pulumi.Input[str]] = None,
1024
996
  state: Optional[pulumi.Input[str]] = None,
1025
997
  state_message: Optional[pulumi.Input[str]] = None,
@@ -1041,7 +1013,6 @@ class IntegrationInstance(pulumi.CustomResource):
1041
1013
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
1042
1014
  :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.
1043
1015
  :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)
1045
1016
  :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"}`
1046
1017
  :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.
1047
1018
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstanceIdcsInfoArgs']]]] idcs_infos: Information for IDCS access
@@ -1052,9 +1023,7 @@ class IntegrationInstance(pulumi.CustomResource):
1052
1023
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
1053
1024
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
1054
1025
  :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).
1056
1026
  :param pulumi.Input[str] shape: Shape
1057
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1058
1027
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
1059
1028
 
1060
1029
 
@@ -1087,7 +1056,6 @@ class IntegrationInstance(pulumi.CustomResource):
1087
1056
  __props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
1088
1057
  __props__.__dict__["message_packs"] = message_packs
1089
1058
  __props__.__dict__["network_endpoint_details"] = network_endpoint_details
1090
- __props__.__dict__["private_endpoint_outbound_connections"] = private_endpoint_outbound_connections
1091
1059
  __props__.__dict__["shape"] = shape
1092
1060
  __props__.__dict__["state"] = state
1093
1061
  __props__.__dict__["state_message"] = state_message
@@ -1164,7 +1132,6 @@ class IntegrationInstance(pulumi.CustomResource):
1164
1132
  def enable_process_automation_trigger(self) -> pulumi.Output[Optional[int]]:
1165
1133
  """
1166
1134
  (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)
1168
1135
  """
1169
1136
  return pulumi.get(self, "enable_process_automation_trigger")
1170
1137
 
@@ -1248,20 +1215,11 @@ class IntegrationInstance(pulumi.CustomResource):
1248
1215
  """
1249
1216
  return pulumi.get(self, "network_endpoint_details")
1250
1217
 
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
-
1259
1218
  @property
1260
1219
  @pulumi.getter
1261
1220
  def shape(self) -> pulumi.Output[str]:
1262
1221
  """
1263
1222
  Shape
1264
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1265
1223
  """
1266
1224
  return pulumi.get(self, "shape")
1267
1225
 
@@ -17,14 +17,12 @@ __all__ = [
17
17
  'IntegrationInstanceIdcsInfo',
18
18
  'IntegrationInstanceNetworkEndpointDetails',
19
19
  'IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcn',
20
- 'IntegrationInstancePrivateEndpointOutboundConnection',
21
20
  'GetIntegrationInstanceAlternateCustomEndpointResult',
22
21
  'GetIntegrationInstanceAttachmentResult',
23
22
  'GetIntegrationInstanceCustomEndpointResult',
24
23
  'GetIntegrationInstanceIdcsInfoResult',
25
24
  'GetIntegrationInstanceNetworkEndpointDetailResult',
26
25
  'GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
27
- 'GetIntegrationInstancePrivateEndpointOutboundConnectionResult',
28
26
  'GetIntegrationInstancesFilterResult',
29
27
  'GetIntegrationInstancesIntegrationInstanceResult',
30
28
  'GetIntegrationInstancesIntegrationInstanceAlternateCustomEndpointResult',
@@ -33,7 +31,6 @@ __all__ = [
33
31
  'GetIntegrationInstancesIntegrationInstanceIdcsInfoResult',
34
32
  'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult',
35
33
  'GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
36
- 'GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult',
37
34
  ]
38
35
 
39
36
  @pulumi.output_type
@@ -403,7 +400,6 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
403
400
  :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.
404
401
  :param Sequence['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
405
402
  :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
407
403
  """
408
404
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
409
405
  if allowlisted_http_ips is not None:
@@ -442,7 +438,6 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
442
438
  def is_integration_vcn_allowlisted(self) -> Optional[bool]:
443
439
  """
444
440
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
445
- <<<<<<< HEAD
446
441
  """
447
442
  return pulumi.get(self, "is_integration_vcn_allowlisted")
448
443
 
@@ -494,70 +489,6 @@ class IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcn(dict):
494
489
  return pulumi.get(self, "allowlisted_ips")
495
490
 
496
491
 
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
-
561
492
  @pulumi.output_type
562
493
  class GetIntegrationInstanceAlternateCustomEndpointResult(dict):
563
494
  def __init__(__self__, *,
@@ -797,8 +728,7 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
797
728
  :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.
798
729
  :param Sequence['GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
799
730
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
800
- :param str network_endpoint_type: The type of network endpoint.
801
- <<<<<<< HEAD
731
+ :param str network_endpoint_type: The type of network endpoint.
802
732
  """
803
733
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
804
734
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -833,8 +763,7 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
833
763
  @pulumi.getter(name="networkEndpointType")
834
764
  def network_endpoint_type(self) -> str:
835
765
  """
836
- The type of network endpoint.
837
- <<<<<<< HEAD
766
+ The type of network endpoint.
838
767
  """
839
768
  return pulumi.get(self, "network_endpoint_type")
840
769
 
@@ -868,46 +797,6 @@ class GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
868
797
  return pulumi.get(self, "id")
869
798
 
870
799
 
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
-
911
800
  @pulumi.output_type
912
801
  class GetIntegrationInstancesFilterResult(dict):
913
802
  def __init__(__self__, *,
@@ -958,7 +847,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
958
847
  is_visual_builder_enabled: bool,
959
848
  message_packs: int,
960
849
  network_endpoint_details: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult'],
961
- private_endpoint_outbound_connections: Sequence['outputs.GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionResult'],
962
850
  shape: str,
963
851
  state: str,
964
852
  state_message: str,
@@ -982,9 +870,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
982
870
  :param bool is_visual_builder_enabled: Visual Builder is enabled or not.
983
871
  :param int message_packs: The number of configured message packs (if any)
984
872
  :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).
986
873
  :param str shape: Shape
987
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
988
874
  :param str state: Life cycle state to query on.
989
875
  :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.
990
876
  :param str time_created: The time the the Integration Instance was created. An RFC3339 formatted datetime string.
@@ -1010,7 +896,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1010
896
  pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
1011
897
  pulumi.set(__self__, "message_packs", message_packs)
1012
898
  pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
1013
- pulumi.set(__self__, "private_endpoint_outbound_connections", private_endpoint_outbound_connections)
1014
899
  pulumi.set(__self__, "shape", shape)
1015
900
  pulumi.set(__self__, "state", state)
1016
901
  pulumi.set(__self__, "state_message", state_message)
@@ -1168,20 +1053,11 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1168
1053
  """
1169
1054
  return pulumi.get(self, "network_endpoint_details")
1170
1055
 
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
-
1179
1056
  @property
1180
1057
  @pulumi.getter
1181
1058
  def shape(self) -> str:
1182
1059
  """
1183
1060
  Shape
1184
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1185
1061
  """
1186
1062
  return pulumi.get(self, "shape")
1187
1063
 
@@ -1457,8 +1333,7 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1457
1333
  :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.
1458
1334
  :param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
1459
1335
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
1460
- :param str network_endpoint_type: The type of network endpoint.
1461
- <<<<<<< HEAD
1336
+ :param str network_endpoint_type: The type of network endpoint.
1462
1337
  """
1463
1338
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
1464
1339
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -1493,8 +1368,7 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1493
1368
  @pulumi.getter(name="networkEndpointType")
1494
1369
  def network_endpoint_type(self) -> str:
1495
1370
  """
1496
- The type of network endpoint.
1497
- <<<<<<< HEAD
1371
+ The type of network endpoint.
1498
1372
  """
1499
1373
  return pulumi.get(self, "network_endpoint_type")
1500
1374
 
@@ -1528,43 +1402,3 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlisted
1528
1402
  return pulumi.get(self, "id")
1529
1403
 
1530
1404
 
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
-