pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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.
Files changed (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,7 @@ class DeploymentArgs:
29
29
  fqdn: Optional[pulumi.Input[str]] = None,
30
30
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
31
31
  is_public: Optional[pulumi.Input[bool]] = None,
32
+ load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
32
33
  maintenance_configuration: Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']] = None,
33
34
  maintenance_window: Optional[pulumi.Input['DeploymentMaintenanceWindowArgs']] = None,
34
35
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -42,13 +43,14 @@ class DeploymentArgs:
42
43
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
43
44
  :param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
44
45
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
45
- :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
46
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
46
47
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
47
48
  :param pulumi.Input[str] deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
48
49
  :param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
49
50
  :param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
50
51
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A 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[bool] is_public: (Updatable) True if this object is publicly available.
53
+ :param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
52
54
  :param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
53
55
  :param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
54
56
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
@@ -73,6 +75,8 @@ class DeploymentArgs:
73
75
  pulumi.set(__self__, "freeform_tags", freeform_tags)
74
76
  if is_public is not None:
75
77
  pulumi.set(__self__, "is_public", is_public)
78
+ if load_balancer_subnet_id is not None:
79
+ pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
76
80
  if maintenance_configuration is not None:
77
81
  pulumi.set(__self__, "maintenance_configuration", maintenance_configuration)
78
82
  if maintenance_window is not None:
@@ -160,7 +164,7 @@ class DeploymentArgs:
160
164
  @pulumi.getter(name="subnetId")
161
165
  def subnet_id(self) -> pulumi.Input[str]:
162
166
  """
163
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
167
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
164
168
  """
165
169
  return pulumi.get(self, "subnet_id")
166
170
 
@@ -240,6 +244,18 @@ class DeploymentArgs:
240
244
  def is_public(self, value: Optional[pulumi.Input[bool]]):
241
245
  pulumi.set(self, "is_public", value)
242
246
 
247
+ @property
248
+ @pulumi.getter(name="loadBalancerSubnetId")
249
+ def load_balancer_subnet_id(self) -> Optional[pulumi.Input[str]]:
250
+ """
251
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
252
+ """
253
+ return pulumi.get(self, "load_balancer_subnet_id")
254
+
255
+ @load_balancer_subnet_id.setter
256
+ def load_balancer_subnet_id(self, value: Optional[pulumi.Input[str]]):
257
+ pulumi.set(self, "load_balancer_subnet_id", value)
258
+
243
259
  @property
244
260
  @pulumi.getter(name="maintenanceConfiguration")
245
261
  def maintenance_configuration(self) -> Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']]:
@@ -312,6 +328,7 @@ class _DeploymentState:
312
328
  display_name: Optional[pulumi.Input[str]] = None,
313
329
  fqdn: Optional[pulumi.Input[str]] = None,
314
330
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
331
+ ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]]] = None,
315
332
  is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
316
333
  is_healthy: Optional[pulumi.Input[bool]] = None,
317
334
  is_latest_version: Optional[pulumi.Input[bool]] = None,
@@ -320,6 +337,8 @@ class _DeploymentState:
320
337
  license_model: Optional[pulumi.Input[str]] = None,
321
338
  lifecycle_details: Optional[pulumi.Input[str]] = None,
322
339
  lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
340
+ load_balancer_id: Optional[pulumi.Input[str]] = None,
341
+ load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
323
342
  maintenance_configuration: Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']] = None,
324
343
  maintenance_window: Optional[pulumi.Input['DeploymentMaintenanceWindowArgs']] = None,
325
344
  next_maintenance_action_type: Optional[pulumi.Input[str]] = None,
@@ -350,6 +369,7 @@ class _DeploymentState:
350
369
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
351
370
  :param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
352
371
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
372
+ :param pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
353
373
  :param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
354
374
  :param pulumi.Input[bool] is_healthy: True if all of the aggregate resources are working correctly.
355
375
  :param pulumi.Input[bool] is_latest_version: Indicates if the resource is the the latest available version.
@@ -358,6 +378,8 @@ class _DeploymentState:
358
378
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
359
379
  :param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
360
380
  :param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
381
+ :param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
382
+ :param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
361
383
  :param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
362
384
  :param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
363
385
  :param pulumi.Input[str] next_maintenance_action_type: Type of the next maintenance.
@@ -367,7 +389,7 @@ class _DeploymentState:
367
389
  :param pulumi.Input[str] private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
368
390
  :param pulumi.Input[str] public_ip_address: The public IP address representing the access point for the Deployment.
369
391
  :param pulumi.Input[str] storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
370
- :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
392
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
371
393
  :param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
372
394
  :param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
373
395
  :param pulumi.Input[str] time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
@@ -397,6 +419,8 @@ class _DeploymentState:
397
419
  pulumi.set(__self__, "fqdn", fqdn)
398
420
  if freeform_tags is not None:
399
421
  pulumi.set(__self__, "freeform_tags", freeform_tags)
422
+ if ingress_ips is not None:
423
+ pulumi.set(__self__, "ingress_ips", ingress_ips)
400
424
  if is_auto_scaling_enabled is not None:
401
425
  pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
402
426
  if is_healthy is not None:
@@ -413,6 +437,10 @@ class _DeploymentState:
413
437
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
414
438
  if lifecycle_sub_state is not None:
415
439
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
440
+ if load_balancer_id is not None:
441
+ pulumi.set(__self__, "load_balancer_id", load_balancer_id)
442
+ if load_balancer_subnet_id is not None:
443
+ pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
416
444
  if maintenance_configuration is not None:
417
445
  pulumi.set(__self__, "maintenance_configuration", maintenance_configuration)
418
446
  if maintenance_window is not None:
@@ -580,6 +608,18 @@ class _DeploymentState:
580
608
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
581
609
  pulumi.set(self, "freeform_tags", value)
582
610
 
611
+ @property
612
+ @pulumi.getter(name="ingressIps")
613
+ def ingress_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]]]:
614
+ """
615
+ List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
616
+ """
617
+ return pulumi.get(self, "ingress_ips")
618
+
619
+ @ingress_ips.setter
620
+ def ingress_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]]]):
621
+ pulumi.set(self, "ingress_ips", value)
622
+
583
623
  @property
584
624
  @pulumi.getter(name="isAutoScalingEnabled")
585
625
  def is_auto_scaling_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -676,6 +716,30 @@ class _DeploymentState:
676
716
  def lifecycle_sub_state(self, value: Optional[pulumi.Input[str]]):
677
717
  pulumi.set(self, "lifecycle_sub_state", value)
678
718
 
719
+ @property
720
+ @pulumi.getter(name="loadBalancerId")
721
+ def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
722
+ """
723
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
724
+ """
725
+ return pulumi.get(self, "load_balancer_id")
726
+
727
+ @load_balancer_id.setter
728
+ def load_balancer_id(self, value: Optional[pulumi.Input[str]]):
729
+ pulumi.set(self, "load_balancer_id", value)
730
+
731
+ @property
732
+ @pulumi.getter(name="loadBalancerSubnetId")
733
+ def load_balancer_subnet_id(self) -> Optional[pulumi.Input[str]]:
734
+ """
735
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
736
+ """
737
+ return pulumi.get(self, "load_balancer_subnet_id")
738
+
739
+ @load_balancer_subnet_id.setter
740
+ def load_balancer_subnet_id(self, value: Optional[pulumi.Input[str]]):
741
+ pulumi.set(self, "load_balancer_subnet_id", value)
742
+
679
743
  @property
680
744
  @pulumi.getter(name="maintenanceConfiguration")
681
745
  def maintenance_configuration(self) -> Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']]:
@@ -797,7 +861,7 @@ class _DeploymentState:
797
861
  @pulumi.getter(name="subnetId")
798
862
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
799
863
  """
800
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
864
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
801
865
  """
802
866
  return pulumi.get(self, "subnet_id")
803
867
 
@@ -895,6 +959,7 @@ class Deployment(pulumi.CustomResource):
895
959
  is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
896
960
  is_public: Optional[pulumi.Input[bool]] = None,
897
961
  license_model: Optional[pulumi.Input[str]] = None,
962
+ load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
898
963
  maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
899
964
  maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
900
965
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -929,11 +994,12 @@ class Deployment(pulumi.CustomResource):
929
994
  :param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
930
995
  :param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
931
996
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
997
+ :param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
932
998
  :param pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
933
999
  :param pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
934
1000
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
935
1001
  :param pulumi.Input[pulumi.InputType['DeploymentOggDataArgs']] ogg_data: (Updatable) Deployment Data for creating an OggDeployment
936
- :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1002
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
937
1003
  """
938
1004
  ...
939
1005
  @overload
@@ -981,6 +1047,7 @@ class Deployment(pulumi.CustomResource):
981
1047
  is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
982
1048
  is_public: Optional[pulumi.Input[bool]] = None,
983
1049
  license_model: Optional[pulumi.Input[str]] = None,
1050
+ load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
984
1051
  maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
985
1052
  maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
986
1053
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1020,6 +1087,7 @@ class Deployment(pulumi.CustomResource):
1020
1087
  if license_model is None and not opts.urn:
1021
1088
  raise TypeError("Missing required property 'license_model'")
1022
1089
  __props__.__dict__["license_model"] = license_model
1090
+ __props__.__dict__["load_balancer_subnet_id"] = load_balancer_subnet_id
1023
1091
  __props__.__dict__["maintenance_configuration"] = maintenance_configuration
1024
1092
  __props__.__dict__["maintenance_window"] = maintenance_window
1025
1093
  __props__.__dict__["nsg_ids"] = nsg_ids
@@ -1030,11 +1098,13 @@ class Deployment(pulumi.CustomResource):
1030
1098
  __props__.__dict__["subnet_id"] = subnet_id
1031
1099
  __props__.__dict__["deployment_diagnostic_datas"] = None
1032
1100
  __props__.__dict__["deployment_url"] = None
1101
+ __props__.__dict__["ingress_ips"] = None
1033
1102
  __props__.__dict__["is_healthy"] = None
1034
1103
  __props__.__dict__["is_latest_version"] = None
1035
1104
  __props__.__dict__["is_storage_utilization_limit_exceeded"] = None
1036
1105
  __props__.__dict__["lifecycle_details"] = None
1037
1106
  __props__.__dict__["lifecycle_sub_state"] = None
1107
+ __props__.__dict__["load_balancer_id"] = None
1038
1108
  __props__.__dict__["next_maintenance_action_type"] = None
1039
1109
  __props__.__dict__["next_maintenance_description"] = None
1040
1110
  __props__.__dict__["private_ip_address"] = None
@@ -1067,6 +1137,7 @@ class Deployment(pulumi.CustomResource):
1067
1137
  display_name: Optional[pulumi.Input[str]] = None,
1068
1138
  fqdn: Optional[pulumi.Input[str]] = None,
1069
1139
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1140
+ ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentIngressIpArgs']]]]] = None,
1070
1141
  is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
1071
1142
  is_healthy: Optional[pulumi.Input[bool]] = None,
1072
1143
  is_latest_version: Optional[pulumi.Input[bool]] = None,
@@ -1075,6 +1146,8 @@ class Deployment(pulumi.CustomResource):
1075
1146
  license_model: Optional[pulumi.Input[str]] = None,
1076
1147
  lifecycle_details: Optional[pulumi.Input[str]] = None,
1077
1148
  lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
1149
+ load_balancer_id: Optional[pulumi.Input[str]] = None,
1150
+ load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
1078
1151
  maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
1079
1152
  maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
1080
1153
  next_maintenance_action_type: Optional[pulumi.Input[str]] = None,
@@ -1110,6 +1183,7 @@ class Deployment(pulumi.CustomResource):
1110
1183
  :param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
1111
1184
  :param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
1112
1185
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1186
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentIngressIpArgs']]]] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
1113
1187
  :param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
1114
1188
  :param pulumi.Input[bool] is_healthy: True if all of the aggregate resources are working correctly.
1115
1189
  :param pulumi.Input[bool] is_latest_version: Indicates if the resource is the the latest available version.
@@ -1118,6 +1192,8 @@ class Deployment(pulumi.CustomResource):
1118
1192
  :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
1119
1193
  :param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
1120
1194
  :param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
1195
+ :param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
1196
+ :param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
1121
1197
  :param pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
1122
1198
  :param pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
1123
1199
  :param pulumi.Input[str] next_maintenance_action_type: Type of the next maintenance.
@@ -1127,7 +1203,7 @@ class Deployment(pulumi.CustomResource):
1127
1203
  :param pulumi.Input[str] private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
1128
1204
  :param pulumi.Input[str] public_ip_address: The public IP address representing the access point for the Deployment.
1129
1205
  :param pulumi.Input[str] storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
1130
- :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1206
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
1131
1207
  :param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
1132
1208
  :param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
1133
1209
  :param pulumi.Input[str] time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
@@ -1150,6 +1226,7 @@ class Deployment(pulumi.CustomResource):
1150
1226
  __props__.__dict__["display_name"] = display_name
1151
1227
  __props__.__dict__["fqdn"] = fqdn
1152
1228
  __props__.__dict__["freeform_tags"] = freeform_tags
1229
+ __props__.__dict__["ingress_ips"] = ingress_ips
1153
1230
  __props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
1154
1231
  __props__.__dict__["is_healthy"] = is_healthy
1155
1232
  __props__.__dict__["is_latest_version"] = is_latest_version
@@ -1158,6 +1235,8 @@ class Deployment(pulumi.CustomResource):
1158
1235
  __props__.__dict__["license_model"] = license_model
1159
1236
  __props__.__dict__["lifecycle_details"] = lifecycle_details
1160
1237
  __props__.__dict__["lifecycle_sub_state"] = lifecycle_sub_state
1238
+ __props__.__dict__["load_balancer_id"] = load_balancer_id
1239
+ __props__.__dict__["load_balancer_subnet_id"] = load_balancer_subnet_id
1161
1240
  __props__.__dict__["maintenance_configuration"] = maintenance_configuration
1162
1241
  __props__.__dict__["maintenance_window"] = maintenance_window
1163
1242
  __props__.__dict__["next_maintenance_action_type"] = next_maintenance_action_type
@@ -1265,6 +1344,14 @@ class Deployment(pulumi.CustomResource):
1265
1344
  """
1266
1345
  return pulumi.get(self, "freeform_tags")
1267
1346
 
1347
+ @property
1348
+ @pulumi.getter(name="ingressIps")
1349
+ def ingress_ips(self) -> pulumi.Output[Sequence['outputs.DeploymentIngressIp']]:
1350
+ """
1351
+ List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
1352
+ """
1353
+ return pulumi.get(self, "ingress_ips")
1354
+
1268
1355
  @property
1269
1356
  @pulumi.getter(name="isAutoScalingEnabled")
1270
1357
  def is_auto_scaling_enabled(self) -> pulumi.Output[bool]:
@@ -1329,6 +1416,22 @@ class Deployment(pulumi.CustomResource):
1329
1416
  """
1330
1417
  return pulumi.get(self, "lifecycle_sub_state")
1331
1418
 
1419
+ @property
1420
+ @pulumi.getter(name="loadBalancerId")
1421
+ def load_balancer_id(self) -> pulumi.Output[str]:
1422
+ """
1423
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
1424
+ """
1425
+ return pulumi.get(self, "load_balancer_id")
1426
+
1427
+ @property
1428
+ @pulumi.getter(name="loadBalancerSubnetId")
1429
+ def load_balancer_subnet_id(self) -> pulumi.Output[str]:
1430
+ """
1431
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
1432
+ """
1433
+ return pulumi.get(self, "load_balancer_subnet_id")
1434
+
1332
1435
  @property
1333
1436
  @pulumi.getter(name="maintenanceConfiguration")
1334
1437
  def maintenance_configuration(self) -> pulumi.Output['outputs.DeploymentMaintenanceConfiguration']:
@@ -1410,7 +1513,7 @@ class Deployment(pulumi.CustomResource):
1410
1513
  @pulumi.getter(name="subnetId")
1411
1514
  def subnet_id(self) -> pulumi.Output[str]:
1412
1515
  """
1413
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1516
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
1414
1517
  """
1415
1518
  return pulumi.get(self, "subnet_id")
1416
1519
 
@@ -22,7 +22,7 @@ class GetConnectionResult:
22
22
  """
23
23
  A collection of values returned by getConnection.
24
24
  """
25
- def __init__(__self__, access_key_id=None, account_key=None, account_name=None, additional_attributes=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, lifecycle_details=None, nsg_ids=None, password=None, port=None, private_ip=None, private_key_file=None, private_key_passphrase=None, producer_properties=None, public_key_fingerprint=None, region=None, sas_token=None, secret_access_key=None, security_protocol=None, servers=None, service_account_key_file=None, session_mode=None, should_use_jndi=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_mode=None, state=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, time_created=None, time_updated=None, trust_store=None, trust_store_password=None, url=None, user_id=None, username=None, vault_id=None, wallet=None):
25
+ def __init__(__self__, access_key_id=None, account_key=None, account_name=None, additional_attributes=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, lifecycle_details=None, nsg_ids=None, password=None, port=None, private_ip=None, private_key_file=None, private_key_passphrase=None, producer_properties=None, public_key_fingerprint=None, region=None, routing_method=None, sas_token=None, secret_access_key=None, security_protocol=None, servers=None, service_account_key_file=None, session_mode=None, should_use_jndi=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_mode=None, state=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, time_created=None, time_updated=None, trust_store=None, trust_store_password=None, url=None, user_id=None, username=None, vault_id=None, wallet=None):
26
26
  if access_key_id and not isinstance(access_key_id, str):
27
27
  raise TypeError("Expected argument 'access_key_id' to be a str")
28
28
  pulumi.set(__self__, "access_key_id", access_key_id)
@@ -167,6 +167,9 @@ class GetConnectionResult:
167
167
  if region and not isinstance(region, str):
168
168
  raise TypeError("Expected argument 'region' to be a str")
169
169
  pulumi.set(__self__, "region", region)
170
+ if routing_method and not isinstance(routing_method, str):
171
+ raise TypeError("Expected argument 'routing_method' to be a str")
172
+ pulumi.set(__self__, "routing_method", routing_method)
170
173
  if sas_token and not isinstance(sas_token, str):
171
174
  raise TypeError("Expected argument 'sas_token' to be a str")
172
175
  pulumi.set(__self__, "sas_token", sas_token)
@@ -573,6 +576,7 @@ class GetConnectionResult:
573
576
  @pulumi.getter(name="privateIp")
574
577
  def private_ip(self) -> str:
575
578
  """
579
+ Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
576
580
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
577
581
  """
578
582
  return pulumi.get(self, "private_ip")
@@ -605,6 +609,14 @@ class GetConnectionResult:
605
609
  """
606
610
  return pulumi.get(self, "region")
607
611
 
612
+ @property
613
+ @pulumi.getter(name="routingMethod")
614
+ def routing_method(self) -> str:
615
+ """
616
+ Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
617
+ """
618
+ return pulumi.get(self, "routing_method")
619
+
608
620
  @property
609
621
  @pulumi.getter(name="sasToken")
610
622
  def sas_token(self) -> str:
@@ -719,7 +731,7 @@ class GetConnectionResult:
719
731
  @pulumi.getter(name="subnetId")
720
732
  def subnet_id(self) -> str:
721
733
  """
722
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
734
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
723
735
  """
724
736
  return pulumi.get(self, "subnet_id")
725
737
 
@@ -865,6 +877,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
865
877
  producer_properties=self.producer_properties,
866
878
  public_key_fingerprint=self.public_key_fingerprint,
867
879
  region=self.region,
880
+ routing_method=self.routing_method,
868
881
  sas_token=self.sas_token,
869
882
  secret_access_key=self.secret_access_key,
870
883
  security_protocol=self.security_protocol,
@@ -969,6 +982,7 @@ def get_connection(connection_id: Optional[str] = None,
969
982
  producer_properties=pulumi.get(__ret__, 'producer_properties'),
970
983
  public_key_fingerprint=pulumi.get(__ret__, 'public_key_fingerprint'),
971
984
  region=pulumi.get(__ret__, 'region'),
985
+ routing_method=pulumi.get(__ret__, 'routing_method'),
972
986
  sas_token=pulumi.get(__ret__, 'sas_token'),
973
987
  secret_access_key=pulumi.get(__ret__, 'secret_access_key'),
974
988
  security_protocol=pulumi.get(__ret__, 'security_protocol'),
@@ -262,7 +262,7 @@ class GetDatabaseRegistrationResult:
262
262
  @pulumi.getter(name="subnetId")
263
263
  def subnet_id(self) -> str:
264
264
  """
265
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
265
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
266
266
  """
267
267
  return pulumi.get(self, "subnet_id")
268
268
 
@@ -22,7 +22,7 @@ class GetDeploymentResult:
22
22
  """
23
23
  A collection of values returned by getDeployment.
24
24
  """
25
- def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, fqdn=None, freeform_tags=None, id=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
25
+ def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, fqdn=None, freeform_tags=None, id=None, ingress_ips=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, load_balancer_id=None, load_balancer_subnet_id=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
26
26
  if compartment_id and not isinstance(compartment_id, str):
27
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
28
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -62,6 +62,9 @@ class GetDeploymentResult:
62
62
  if id and not isinstance(id, str):
63
63
  raise TypeError("Expected argument 'id' to be a str")
64
64
  pulumi.set(__self__, "id", id)
65
+ if ingress_ips and not isinstance(ingress_ips, list):
66
+ raise TypeError("Expected argument 'ingress_ips' to be a list")
67
+ pulumi.set(__self__, "ingress_ips", ingress_ips)
65
68
  if is_auto_scaling_enabled and not isinstance(is_auto_scaling_enabled, bool):
66
69
  raise TypeError("Expected argument 'is_auto_scaling_enabled' to be a bool")
67
70
  pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
@@ -86,6 +89,12 @@ class GetDeploymentResult:
86
89
  if lifecycle_sub_state and not isinstance(lifecycle_sub_state, str):
87
90
  raise TypeError("Expected argument 'lifecycle_sub_state' to be a str")
88
91
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
92
+ if load_balancer_id and not isinstance(load_balancer_id, str):
93
+ raise TypeError("Expected argument 'load_balancer_id' to be a str")
94
+ pulumi.set(__self__, "load_balancer_id", load_balancer_id)
95
+ if load_balancer_subnet_id and not isinstance(load_balancer_subnet_id, str):
96
+ raise TypeError("Expected argument 'load_balancer_subnet_id' to be a str")
97
+ pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
89
98
  if maintenance_configurations and not isinstance(maintenance_configurations, list):
90
99
  raise TypeError("Expected argument 'maintenance_configurations' to be a list")
91
100
  pulumi.set(__self__, "maintenance_configurations", maintenance_configurations)
@@ -239,6 +248,14 @@ class GetDeploymentResult:
239
248
  """
240
249
  return pulumi.get(self, "id")
241
250
 
251
+ @property
252
+ @pulumi.getter(name="ingressIps")
253
+ def ingress_ips(self) -> Sequence['outputs.GetDeploymentIngressIpResult']:
254
+ """
255
+ List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
256
+ """
257
+ return pulumi.get(self, "ingress_ips")
258
+
242
259
  @property
243
260
  @pulumi.getter(name="isAutoScalingEnabled")
244
261
  def is_auto_scaling_enabled(self) -> bool:
@@ -303,6 +320,22 @@ class GetDeploymentResult:
303
320
  """
304
321
  return pulumi.get(self, "lifecycle_sub_state")
305
322
 
323
+ @property
324
+ @pulumi.getter(name="loadBalancerId")
325
+ def load_balancer_id(self) -> str:
326
+ """
327
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
328
+ """
329
+ return pulumi.get(self, "load_balancer_id")
330
+
331
+ @property
332
+ @pulumi.getter(name="loadBalancerSubnetId")
333
+ def load_balancer_subnet_id(self) -> str:
334
+ """
335
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
336
+ """
337
+ return pulumi.get(self, "load_balancer_subnet_id")
338
+
306
339
  @property
307
340
  @pulumi.getter(name="maintenanceConfigurations")
308
341
  def maintenance_configurations(self) -> Sequence['outputs.GetDeploymentMaintenanceConfigurationResult']:
@@ -387,7 +420,7 @@ class GetDeploymentResult:
387
420
  @pulumi.getter(name="subnetId")
388
421
  def subnet_id(self) -> str:
389
422
  """
390
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
423
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
391
424
  """
392
425
  return pulumi.get(self, "subnet_id")
393
426
 
@@ -459,6 +492,7 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
459
492
  fqdn=self.fqdn,
460
493
  freeform_tags=self.freeform_tags,
461
494
  id=self.id,
495
+ ingress_ips=self.ingress_ips,
462
496
  is_auto_scaling_enabled=self.is_auto_scaling_enabled,
463
497
  is_healthy=self.is_healthy,
464
498
  is_latest_version=self.is_latest_version,
@@ -467,6 +501,8 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
467
501
  license_model=self.license_model,
468
502
  lifecycle_details=self.lifecycle_details,
469
503
  lifecycle_sub_state=self.lifecycle_sub_state,
504
+ load_balancer_id=self.load_balancer_id,
505
+ load_balancer_subnet_id=self.load_balancer_subnet_id,
470
506
  maintenance_configurations=self.maintenance_configurations,
471
507
  maintenance_windows=self.maintenance_windows,
472
508
  next_maintenance_action_type=self.next_maintenance_action_type,
@@ -524,6 +560,7 @@ def get_deployment(deployment_id: Optional[str] = None,
524
560
  fqdn=pulumi.get(__ret__, 'fqdn'),
525
561
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
526
562
  id=pulumi.get(__ret__, 'id'),
563
+ ingress_ips=pulumi.get(__ret__, 'ingress_ips'),
527
564
  is_auto_scaling_enabled=pulumi.get(__ret__, 'is_auto_scaling_enabled'),
528
565
  is_healthy=pulumi.get(__ret__, 'is_healthy'),
529
566
  is_latest_version=pulumi.get(__ret__, 'is_latest_version'),
@@ -532,6 +569,8 @@ def get_deployment(deployment_id: Optional[str] = None,
532
569
  license_model=pulumi.get(__ret__, 'license_model'),
533
570
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
534
571
  lifecycle_sub_state=pulumi.get(__ret__, 'lifecycle_sub_state'),
572
+ load_balancer_id=pulumi.get(__ret__, 'load_balancer_id'),
573
+ load_balancer_subnet_id=pulumi.get(__ret__, 'load_balancer_subnet_id'),
535
574
  maintenance_configurations=pulumi.get(__ret__, 'maintenance_configurations'),
536
575
  maintenance_windows=pulumi.get(__ret__, 'maintenance_windows'),
537
576
  next_maintenance_action_type=pulumi.get(__ret__, 'next_maintenance_action_type'),