pulumi-oci 2.4.0a1721890421__py3-none-any.whl → 2.4.0a1721933648__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 +19 -0
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/globallydistributeddatabase/private_endpoint.py +742 -0
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.4.0a1721890421.dist-info → pulumi_oci-2.4.0a1721933648.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.4.0a1721890421.dist-info → pulumi_oci-2.4.0a1721933648.dist-info}/RECORD +82 -72
  81. {pulumi_oci-2.4.0a1721890421.dist-info → pulumi_oci-2.4.0a1721933648.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-2.4.0a1721890421.dist-info → pulumi_oci-2.4.0a1721933648.dist-info}/top_level.txt +0 -0
@@ -2386,8 +2386,8 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
2386
2386
  :param pulumi.Input[str] reserved_count: (Updatable) The total number of instances that can be launched from the capacity configuration.
2387
2387
  :param pulumi.Input['ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs'] cluster_config: (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
2388
2388
 
2389
- <<<<<<< HEAD
2390
2389
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
2390
+ :param pulumi.Input[str] cluster_placement_group_id: (Updatable) The OCID of the cluster placement group for this instance reservation capacity configuration.
2391
2391
  :param pulumi.Input[str] fault_domain: (Updatable) The fault domain to use for instances created using this capacity configuration. For more information, see [Fault Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm#fault). If you do not specify the fault domain, the capacity is available for an instance that does not specify a fault domain. To change the fault domain for a reservation, delete the reservation and create a new one in the preferred fault domain.
2392
2392
 
2393
2393
  To retrieve a list of fault domains, use the `ListFaultDomains` operation in the [Identity and Access Management Service API](https://www.terraform.io/iaas/api/#/en/identity/20160918/).
@@ -2445,7 +2445,6 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
2445
2445
  """
2446
2446
  (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
2447
2447
 
2448
- <<<<<<< HEAD
2449
2448
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
2450
2449
  """
2451
2450
  return pulumi.get(self, "cluster_config")
@@ -2457,6 +2456,9 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
2457
2456
  @property
2458
2457
  @pulumi.getter(name="clusterPlacementGroupId")
2459
2458
  def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
2459
+ """
2460
+ (Updatable) The OCID of the cluster placement group for this instance reservation capacity configuration.
2461
+ """
2460
2462
  return pulumi.get(self, "cluster_placement_group_id")
2461
2463
 
2462
2464
  @cluster_placement_group_id.setter
@@ -10404,8 +10406,8 @@ class InstancePoolPlacementConfigurationArgs:
10404
10406
 
10405
10407
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
10406
10408
 
10407
- <<<<<<< HEAD
10408
10409
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
10410
+ :param pulumi.Input[str] primary_subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
10409
10411
  :param pulumi.Input['InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs'] primary_vnic_subnets: (Updatable) Details about the IPv6 primary subnet.
10410
10412
  :param pulumi.Input[Sequence[pulumi.Input['InstancePoolPlacementConfigurationSecondaryVnicSubnetArgs']]] secondary_vnic_subnets: (Updatable) The set of secondary VNIC data for instances in the pool.
10411
10413
  """
@@ -10443,7 +10445,6 @@ class InstancePoolPlacementConfigurationArgs:
10443
10445
 
10444
10446
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
10445
10447
 
10446
- <<<<<<< HEAD
10447
10448
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
10448
10449
  """
10449
10450
  return pulumi.get(self, "fault_domains")
@@ -10455,6 +10456,9 @@ class InstancePoolPlacementConfigurationArgs:
10455
10456
  @property
10456
10457
  @pulumi.getter(name="primarySubnetId")
10457
10458
  def primary_subnet_id(self) -> Optional[pulumi.Input[str]]:
10459
+ """
10460
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
10461
+ """
10458
10462
  return pulumi.get(self, "primary_subnet_id")
10459
10463
 
10460
10464
  @primary_subnet_id.setter
@@ -10494,8 +10498,6 @@ class InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs:
10494
10498
  is_assign_ipv6ip: Optional[pulumi.Input[bool]] = None):
10495
10499
  """
10496
10500
  :param pulumi.Input[str] subnet_id: (Updatable) The subnet [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the secondary VNIC.
10497
- =======
10498
- Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
10499
10501
  :param pulumi.Input[Sequence[pulumi.Input['InstancePoolPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs']]] ipv6address_ipv6subnet_cidr_pair_details: (Updatable) A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
10500
10502
  :param pulumi.Input[bool] is_assign_ipv6ip: (Updatable) Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
10501
10503
  """
@@ -10510,8 +10512,6 @@ class InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs:
10510
10512
  def subnet_id(self) -> pulumi.Input[str]:
10511
10513
  """
10512
10514
  (Updatable) The subnet [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the secondary VNIC.
10513
- =======
10514
- Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
10515
10515
  """
10516
10516
  return pulumi.get(self, "subnet_id")
10517
10517
 
@@ -2918,8 +2918,8 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2918
2918
  :param str reserved_count: (Updatable) The total number of instances that can be launched from the capacity configuration.
2919
2919
  :param 'ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs' cluster_config: (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
2920
2920
 
2921
- <<<<<<< HEAD
2922
2921
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
2922
+ :param str cluster_placement_group_id: (Updatable) The OCID of the cluster placement group for this instance reservation capacity configuration.
2923
2923
  :param str fault_domain: (Updatable) The fault domain to use for instances created using this capacity configuration. For more information, see [Fault Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm#fault). If you do not specify the fault domain, the capacity is available for an instance that does not specify a fault domain. To change the fault domain for a reservation, delete the reservation and create a new one in the preferred fault domain.
2924
2924
 
2925
2925
  To retrieve a list of fault domains, use the `ListFaultDomains` operation in the [Identity and Access Management Service API](https://www.terraform.io/iaas/api/#/en/identity/20160918/).
@@ -2969,7 +2969,6 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2969
2969
  """
2970
2970
  (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
2971
2971
 
2972
- <<<<<<< HEAD
2973
2972
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
2974
2973
  """
2975
2974
  return pulumi.get(self, "cluster_config")
@@ -2977,6 +2976,9 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2977
2976
  @property
2978
2977
  @pulumi.getter(name="clusterPlacementGroupId")
2979
2978
  def cluster_placement_group_id(self) -> Optional[str]:
2979
+ """
2980
+ (Updatable) The OCID of the cluster placement group for this instance reservation capacity configuration.
2981
+ """
2980
2982
  return pulumi.get(self, "cluster_placement_group_id")
2981
2983
 
2982
2984
  @property
@@ -11071,8 +11073,8 @@ class InstancePoolPlacementConfiguration(dict):
11071
11073
 
11072
11074
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
11073
11075
 
11074
- <<<<<<< HEAD
11075
11076
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11077
+ :param str primary_subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
11076
11078
  :param 'InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs' primary_vnic_subnets: (Updatable) Details about the IPv6 primary subnet.
11077
11079
  :param Sequence['InstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: (Updatable) The set of secondary VNIC data for instances in the pool.
11078
11080
  """
@@ -11106,7 +11108,6 @@ class InstancePoolPlacementConfiguration(dict):
11106
11108
 
11107
11109
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
11108
11110
 
11109
- <<<<<<< HEAD
11110
11111
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11111
11112
  """
11112
11113
  return pulumi.get(self, "fault_domains")
@@ -11114,6 +11115,9 @@ class InstancePoolPlacementConfiguration(dict):
11114
11115
  @property
11115
11116
  @pulumi.getter(name="primarySubnetId")
11116
11117
  def primary_subnet_id(self) -> Optional[str]:
11118
+ """
11119
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
11120
+ """
11117
11121
  return pulumi.get(self, "primary_subnet_id")
11118
11122
 
11119
11123
  @property
@@ -11162,8 +11166,6 @@ class InstancePoolPlacementConfigurationPrimaryVnicSubnets(dict):
11162
11166
  is_assign_ipv6ip: Optional[bool] = None):
11163
11167
  """
11164
11168
  :param str subnet_id: (Updatable) The subnet [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the secondary VNIC.
11165
- =======
11166
- Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11167
11169
  :param Sequence['InstancePoolPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: (Updatable) A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
11168
11170
  :param bool is_assign_ipv6ip: (Updatable) Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
11169
11171
  """
@@ -11178,8 +11180,6 @@ class InstancePoolPlacementConfigurationPrimaryVnicSubnets(dict):
11178
11180
  def subnet_id(self) -> str:
11179
11181
  """
11180
11182
  (Updatable) The subnet [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the secondary VNIC.
11181
- =======
11182
- Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11183
11183
  """
11184
11184
  return pulumi.get(self, "subnet_id")
11185
11185
 
@@ -19999,6 +19999,7 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
19999
19999
  used_count: str):
20000
20000
  """
20001
20001
  :param Sequence['GetComputeCapacityReservationInstanceReservationConfigClusterConfigArgs'] cluster_configs: The HPC cluster configuration requested when launching instances in a compute capacity reservation.
20002
+ :param str cluster_placement_group_id: The OCID of the cluster placement group for this instance reservation capacity configuration.
20002
20003
  :param str fault_domain: The fault domain of this capacity configuration. If a value is not supplied, this capacity configuration is applicable to all fault domains in the specified availability domain. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm).
20003
20004
  :param str instance_shape: The shape to use when launching instances using compute capacity reservations. The shape determines the number of CPUs, the amount of memory, and other resources allocated to the instance. You can list all available shapes by calling [ListComputeCapacityReservationInstanceShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/computeCapacityReservationInstanceShapes/ListComputeCapacityReservationInstanceShapes).
20004
20005
  :param Sequence['GetComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigArgs'] instance_shape_configs: The shape configuration requested when launching instances in a compute capacity reservation.
@@ -20024,6 +20025,9 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20024
20025
  @property
20025
20026
  @pulumi.getter(name="clusterPlacementGroupId")
20026
20027
  def cluster_placement_group_id(self) -> str:
20028
+ """
20029
+ The OCID of the cluster placement group for this instance reservation capacity configuration.
20030
+ """
20027
20031
  return pulumi.get(self, "cluster_placement_group_id")
20028
20032
 
20029
20033
  @property
@@ -20483,6 +20487,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20483
20487
  used_count: str):
20484
20488
  """
20485
20489
  :param Sequence['GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigClusterConfigArgs'] cluster_configs: The HPC cluster configuration requested when launching instances in a compute capacity reservation.
20490
+ :param str cluster_placement_group_id: The OCID of the cluster placement group for this instance reservation capacity configuration.
20486
20491
  :param str fault_domain: The fault domain of this capacity configuration. If a value is not supplied, this capacity configuration is applicable to all fault domains in the specified availability domain. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm).
20487
20492
  :param str instance_shape: The shape to use when launching instances using compute capacity reservations. The shape determines the number of CPUs, the amount of memory, and other resources allocated to the instance. You can list all available shapes by calling [ListComputeCapacityReservationInstanceShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/computeCapacityReservationInstanceShapes/ListComputeCapacityReservationInstanceShapes).
20488
20493
  :param Sequence['GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigArgs'] instance_shape_configs: The shape configuration requested when launching instances in a compute capacity reservation.
@@ -20508,6 +20513,9 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20508
20513
  @property
20509
20514
  @pulumi.getter(name="clusterPlacementGroupId")
20510
20515
  def cluster_placement_group_id(self) -> str:
20516
+ """
20517
+ The OCID of the cluster placement group for this instance reservation capacity configuration.
20518
+ """
20511
20519
  return pulumi.get(self, "cluster_placement_group_id")
20512
20520
 
20513
20521
  @property
@@ -33963,6 +33971,7 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33963
33971
  """
33964
33972
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
33965
33973
  :param Sequence[str] fault_domains: The fault domains to place instances.
33974
+ :param str primary_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
33966
33975
  :param Sequence['GetInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
33967
33976
  :param Sequence['GetInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
33968
33977
  """
@@ -33991,6 +34000,9 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33991
34000
  @property
33992
34001
  @pulumi.getter(name="primarySubnetId")
33993
34002
  def primary_subnet_id(self) -> str:
34003
+ """
34004
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
34005
+ """
33994
34006
  return pulumi.get(self, "primary_subnet_id")
33995
34007
 
33996
34008
  @property
@@ -34416,6 +34428,7 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34416
34428
  """
34417
34429
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
34418
34430
  :param Sequence[str] fault_domains: The fault domains to place instances.
34431
+ :param str primary_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
34419
34432
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
34420
34433
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
34421
34434
  """
@@ -34444,6 +34457,9 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34444
34457
  @property
34445
34458
  @pulumi.getter(name="primarySubnetId")
34446
34459
  def primary_subnet_id(self) -> str:
34460
+ """
34461
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
34462
+ """
34447
34463
  return pulumi.get(self, "primary_subnet_id")
34448
34464
 
34449
34465
  @property
@@ -5811,6 +5811,7 @@ class DbHomeDatabaseArgs:
5811
5811
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
5812
5812
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
5813
5813
  id: Optional[pulumi.Input[str]] = None,
5814
+ key_store_id: Optional[pulumi.Input[str]] = None,
5814
5815
  kms_key_id: Optional[pulumi.Input[str]] = None,
5815
5816
  kms_key_version_id: Optional[pulumi.Input[str]] = None,
5816
5817
  lifecycle_details: Optional[pulumi.Input[str]] = None,
@@ -5841,6 +5842,7 @@ class DbHomeDatabaseArgs:
5841
5842
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
5842
5843
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
5843
5844
  :param pulumi.Input[str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Home.
5845
+ :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
5844
5846
  :param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
5845
5847
  :param pulumi.Input[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.
5846
5848
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
@@ -5882,6 +5884,8 @@ class DbHomeDatabaseArgs:
5882
5884
  pulumi.set(__self__, "freeform_tags", freeform_tags)
5883
5885
  if id is not None:
5884
5886
  pulumi.set(__self__, "id", id)
5887
+ if key_store_id is not None:
5888
+ pulumi.set(__self__, "key_store_id", key_store_id)
5885
5889
  if kms_key_id is not None:
5886
5890
  pulumi.set(__self__, "kms_key_id", kms_key_id)
5887
5891
  if kms_key_version_id is not None:
@@ -6075,6 +6079,18 @@ class DbHomeDatabaseArgs:
6075
6079
  def id(self, value: Optional[pulumi.Input[str]]):
6076
6080
  pulumi.set(self, "id", value)
6077
6081
 
6082
+ @property
6083
+ @pulumi.getter(name="keyStoreId")
6084
+ def key_store_id(self) -> Optional[pulumi.Input[str]]:
6085
+ """
6086
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
6087
+ """
6088
+ return pulumi.get(self, "key_store_id")
6089
+
6090
+ @key_store_id.setter
6091
+ def key_store_id(self, value: Optional[pulumi.Input[str]]):
6092
+ pulumi.set(self, "key_store_id", value)
6093
+
6078
6094
  @property
6079
6095
  @pulumi.getter(name="kmsKeyId")
6080
6096
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
@@ -27,6 +27,7 @@ class AutonomousDatabaseArgs:
27
27
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
28
28
  autonomous_maintenance_schedule_type: Optional[pulumi.Input[str]] = None,
29
29
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
30
+ byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
30
31
  character_set: Optional[pulumi.Input[str]] = None,
31
32
  clone_type: Optional[pulumi.Input[str]] = None,
32
33
  compute_count: Optional[pulumi.Input[float]] = None,
@@ -86,6 +87,7 @@ class AutonomousDatabaseArgs:
86
87
  standby_whitelisted_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
87
88
  state: Optional[pulumi.Input[str]] = None,
88
89
  subnet_id: Optional[pulumi.Input[str]] = None,
90
+ subscription_id: Optional[pulumi.Input[str]] = None,
89
91
  switchover_to: Optional[pulumi.Input[str]] = None,
90
92
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
91
93
  time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
@@ -235,7 +237,7 @@ class AutonomousDatabaseArgs:
235
237
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
236
238
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
237
239
  * For Autonomous Database, setting this will disable public secure access to the database.
238
-
240
+ :param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
239
241
  These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
240
242
  :param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
241
243
  :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
@@ -271,6 +273,8 @@ class AutonomousDatabaseArgs:
271
273
  pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
272
274
  if backup_retention_period_in_days is not None:
273
275
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
276
+ if byol_compute_count_limit is not None:
277
+ pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
274
278
  if character_set is not None:
275
279
  pulumi.set(__self__, "character_set", character_set)
276
280
  if clone_type is not None:
@@ -392,6 +396,8 @@ class AutonomousDatabaseArgs:
392
396
  pulumi.set(__self__, "state", state)
393
397
  if subnet_id is not None:
394
398
  pulumi.set(__self__, "subnet_id", subnet_id)
399
+ if subscription_id is not None:
400
+ pulumi.set(__self__, "subscription_id", subscription_id)
395
401
  if switchover_to is not None:
396
402
  pulumi.set(__self__, "switchover_to", switchover_to)
397
403
  if switchover_to_remote_peer_id is not None:
@@ -539,6 +545,15 @@ class AutonomousDatabaseArgs:
539
545
  def backup_retention_period_in_days(self, value: Optional[pulumi.Input[int]]):
540
546
  pulumi.set(self, "backup_retention_period_in_days", value)
541
547
 
548
+ @property
549
+ @pulumi.getter(name="byolComputeCountLimit")
550
+ def byol_compute_count_limit(self) -> Optional[pulumi.Input[float]]:
551
+ return pulumi.get(self, "byol_compute_count_limit")
552
+
553
+ @byol_compute_count_limit.setter
554
+ def byol_compute_count_limit(self, value: Optional[pulumi.Input[float]]):
555
+ pulumi.set(self, "byol_compute_count_limit", value)
556
+
542
557
  @property
543
558
  @pulumi.getter(name="characterSet")
544
559
  def character_set(self) -> Optional[pulumi.Input[str]]:
@@ -1309,8 +1324,6 @@ class AutonomousDatabaseArgs:
1309
1324
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
1310
1325
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
1311
1326
  * For Autonomous Database, setting this will disable public secure access to the database.
1312
-
1313
- These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
1314
1327
  """
1315
1328
  return pulumi.get(self, "subnet_id")
1316
1329
 
@@ -1318,6 +1331,19 @@ class AutonomousDatabaseArgs:
1318
1331
  def subnet_id(self, value: Optional[pulumi.Input[str]]):
1319
1332
  pulumi.set(self, "subnet_id", value)
1320
1333
 
1334
+ @property
1335
+ @pulumi.getter(name="subscriptionId")
1336
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
1337
+ """
1338
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
1339
+ These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
1340
+ """
1341
+ return pulumi.get(self, "subscription_id")
1342
+
1343
+ @subscription_id.setter
1344
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
1345
+ pulumi.set(self, "subscription_id", value)
1346
+
1321
1347
  @property
1322
1348
  @pulumi.getter(name="switchoverTo")
1323
1349
  def switchover_to(self) -> Optional[pulumi.Input[str]]:
@@ -1426,6 +1452,7 @@ class _AutonomousDatabaseState:
1426
1452
  available_upgrade_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1427
1453
  backup_configs: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseBackupConfigArgs']]]] = None,
1428
1454
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
1455
+ byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
1429
1456
  character_set: Optional[pulumi.Input[str]] = None,
1430
1457
  clone_type: Optional[pulumi.Input[str]] = None,
1431
1458
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -1518,6 +1545,7 @@ class _AutonomousDatabaseState:
1518
1545
  standby_whitelisted_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1519
1546
  state: Optional[pulumi.Input[str]] = None,
1520
1547
  subnet_id: Optional[pulumi.Input[str]] = None,
1548
+ subscription_id: Optional[pulumi.Input[str]] = None,
1521
1549
  supported_regions_to_clone_tos: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1522
1550
  switchover_to: Optional[pulumi.Input[str]] = None,
1523
1551
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
@@ -1723,7 +1751,7 @@ class _AutonomousDatabaseState:
1723
1751
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
1724
1752
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
1725
1753
  * For Autonomous Database, setting this will disable public secure access to the database.
1726
-
1754
+ :param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
1727
1755
  These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
1728
1756
  :param pulumi.Input[Sequence[pulumi.Input[str]]] supported_regions_to_clone_tos: The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
1729
1757
  :param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
@@ -1786,6 +1814,8 @@ class _AutonomousDatabaseState:
1786
1814
  pulumi.set(__self__, "backup_configs", backup_configs)
1787
1815
  if backup_retention_period_in_days is not None:
1788
1816
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
1817
+ if byol_compute_count_limit is not None:
1818
+ pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
1789
1819
  if character_set is not None:
1790
1820
  pulumi.set(__self__, "character_set", character_set)
1791
1821
  if clone_type is not None:
@@ -1973,6 +2003,8 @@ class _AutonomousDatabaseState:
1973
2003
  pulumi.set(__self__, "state", state)
1974
2004
  if subnet_id is not None:
1975
2005
  pulumi.set(__self__, "subnet_id", subnet_id)
2006
+ if subscription_id is not None:
2007
+ pulumi.set(__self__, "subscription_id", subscription_id)
1976
2008
  if supported_regions_to_clone_tos is not None:
1977
2009
  pulumi.set(__self__, "supported_regions_to_clone_tos", supported_regions_to_clone_tos)
1978
2010
  if switchover_to is not None:
@@ -2196,6 +2228,15 @@ class _AutonomousDatabaseState:
2196
2228
  def backup_retention_period_in_days(self, value: Optional[pulumi.Input[int]]):
2197
2229
  pulumi.set(self, "backup_retention_period_in_days", value)
2198
2230
 
2231
+ @property
2232
+ @pulumi.getter(name="byolComputeCountLimit")
2233
+ def byol_compute_count_limit(self) -> Optional[pulumi.Input[float]]:
2234
+ return pulumi.get(self, "byol_compute_count_limit")
2235
+
2236
+ @byol_compute_count_limit.setter
2237
+ def byol_compute_count_limit(self, value: Optional[pulumi.Input[float]]):
2238
+ pulumi.set(self, "byol_compute_count_limit", value)
2239
+
2199
2240
  @property
2200
2241
  @pulumi.getter(name="characterSet")
2201
2242
  def character_set(self) -> Optional[pulumi.Input[str]]:
@@ -3362,8 +3403,6 @@ class _AutonomousDatabaseState:
3362
3403
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
3363
3404
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
3364
3405
  * For Autonomous Database, setting this will disable public secure access to the database.
3365
-
3366
- These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
3367
3406
  """
3368
3407
  return pulumi.get(self, "subnet_id")
3369
3408
 
@@ -3371,6 +3410,19 @@ class _AutonomousDatabaseState:
3371
3410
  def subnet_id(self, value: Optional[pulumi.Input[str]]):
3372
3411
  pulumi.set(self, "subnet_id", value)
3373
3412
 
3413
+ @property
3414
+ @pulumi.getter(name="subscriptionId")
3415
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
3416
+ """
3417
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
3418
+ These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
3419
+ """
3420
+ return pulumi.get(self, "subscription_id")
3421
+
3422
+ @subscription_id.setter
3423
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
3424
+ pulumi.set(self, "subscription_id", value)
3425
+
3374
3426
  @property
3375
3427
  @pulumi.getter(name="supportedRegionsToCloneTos")
3376
3428
  def supported_regions_to_clone_tos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -3713,6 +3765,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3713
3765
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
3714
3766
  autonomous_maintenance_schedule_type: Optional[pulumi.Input[str]] = None,
3715
3767
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
3768
+ byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
3716
3769
  character_set: Optional[pulumi.Input[str]] = None,
3717
3770
  clone_type: Optional[pulumi.Input[str]] = None,
3718
3771
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -3774,6 +3827,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3774
3827
  standby_whitelisted_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3775
3828
  state: Optional[pulumi.Input[str]] = None,
3776
3829
  subnet_id: Optional[pulumi.Input[str]] = None,
3830
+ subscription_id: Optional[pulumi.Input[str]] = None,
3777
3831
  switchover_to: Optional[pulumi.Input[str]] = None,
3778
3832
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
3779
3833
  time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
@@ -3939,7 +3993,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3939
3993
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
3940
3994
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
3941
3995
  * For Autonomous Database, setting this will disable public secure access to the database.
3942
-
3996
+ :param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
3943
3997
  These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
3944
3998
  :param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
3945
3999
  :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
@@ -4000,6 +4054,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4000
4054
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
4001
4055
  autonomous_maintenance_schedule_type: Optional[pulumi.Input[str]] = None,
4002
4056
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
4057
+ byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
4003
4058
  character_set: Optional[pulumi.Input[str]] = None,
4004
4059
  clone_type: Optional[pulumi.Input[str]] = None,
4005
4060
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -4061,6 +4116,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4061
4116
  standby_whitelisted_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4062
4117
  state: Optional[pulumi.Input[str]] = None,
4063
4118
  subnet_id: Optional[pulumi.Input[str]] = None,
4119
+ subscription_id: Optional[pulumi.Input[str]] = None,
4064
4120
  switchover_to: Optional[pulumi.Input[str]] = None,
4065
4121
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
4066
4122
  time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
@@ -4086,6 +4142,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4086
4142
  __props__.__dict__["autonomous_database_id"] = autonomous_database_id
4087
4143
  __props__.__dict__["autonomous_maintenance_schedule_type"] = autonomous_maintenance_schedule_type
4088
4144
  __props__.__dict__["backup_retention_period_in_days"] = backup_retention_period_in_days
4145
+ __props__.__dict__["byol_compute_count_limit"] = byol_compute_count_limit
4089
4146
  __props__.__dict__["character_set"] = character_set
4090
4147
  __props__.__dict__["clone_type"] = clone_type
4091
4148
  if compartment_id is None and not opts.urn:
@@ -4151,6 +4208,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4151
4208
  __props__.__dict__["standby_whitelisted_ips"] = standby_whitelisted_ips
4152
4209
  __props__.__dict__["state"] = state
4153
4210
  __props__.__dict__["subnet_id"] = subnet_id
4211
+ __props__.__dict__["subscription_id"] = subscription_id
4154
4212
  __props__.__dict__["switchover_to"] = switchover_to
4155
4213
  __props__.__dict__["switchover_to_remote_peer_id"] = switchover_to_remote_peer_id
4156
4214
  __props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
@@ -4240,6 +4298,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4240
4298
  available_upgrade_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4241
4299
  backup_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseBackupConfigArgs']]]]] = None,
4242
4300
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
4301
+ byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
4243
4302
  character_set: Optional[pulumi.Input[str]] = None,
4244
4303
  clone_type: Optional[pulumi.Input[str]] = None,
4245
4304
  compartment_id: Optional[pulumi.Input[str]] = None,
@@ -4332,6 +4391,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4332
4391
  standby_whitelisted_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4333
4392
  state: Optional[pulumi.Input[str]] = None,
4334
4393
  subnet_id: Optional[pulumi.Input[str]] = None,
4394
+ subscription_id: Optional[pulumi.Input[str]] = None,
4335
4395
  supported_regions_to_clone_tos: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4336
4396
  switchover_to: Optional[pulumi.Input[str]] = None,
4337
4397
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
@@ -4542,7 +4602,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4542
4602
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
4543
4603
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
4544
4604
  * For Autonomous Database, setting this will disable public secure access to the database.
4545
-
4605
+ :param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
4546
4606
  These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
4547
4607
  :param pulumi.Input[Sequence[pulumi.Input[str]]] supported_regions_to_clone_tos: The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
4548
4608
  :param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
@@ -4595,6 +4655,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4595
4655
  __props__.__dict__["available_upgrade_versions"] = available_upgrade_versions
4596
4656
  __props__.__dict__["backup_configs"] = backup_configs
4597
4657
  __props__.__dict__["backup_retention_period_in_days"] = backup_retention_period_in_days
4658
+ __props__.__dict__["byol_compute_count_limit"] = byol_compute_count_limit
4598
4659
  __props__.__dict__["character_set"] = character_set
4599
4660
  __props__.__dict__["clone_type"] = clone_type
4600
4661
  __props__.__dict__["compartment_id"] = compartment_id
@@ -4687,6 +4748,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4687
4748
  __props__.__dict__["standby_whitelisted_ips"] = standby_whitelisted_ips
4688
4749
  __props__.__dict__["state"] = state
4689
4750
  __props__.__dict__["subnet_id"] = subnet_id
4751
+ __props__.__dict__["subscription_id"] = subscription_id
4690
4752
  __props__.__dict__["supported_regions_to_clone_tos"] = supported_regions_to_clone_tos
4691
4753
  __props__.__dict__["switchover_to"] = switchover_to
4692
4754
  __props__.__dict__["switchover_to_remote_peer_id"] = switchover_to_remote_peer_id
@@ -4828,6 +4890,11 @@ class AutonomousDatabase(pulumi.CustomResource):
4828
4890
  """
4829
4891
  return pulumi.get(self, "backup_retention_period_in_days")
4830
4892
 
4893
+ @property
4894
+ @pulumi.getter(name="byolComputeCountLimit")
4895
+ def byol_compute_count_limit(self) -> pulumi.Output[float]:
4896
+ return pulumi.get(self, "byol_compute_count_limit")
4897
+
4831
4898
  @property
4832
4899
  @pulumi.getter(name="characterSet")
4833
4900
  def character_set(self) -> pulumi.Output[str]:
@@ -5630,10 +5697,17 @@ class AutonomousDatabase(pulumi.CustomResource):
5630
5697
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
5631
5698
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
5632
5699
  * For Autonomous Database, setting this will disable public secure access to the database.
5700
+ """
5701
+ return pulumi.get(self, "subnet_id")
5633
5702
 
5703
+ @property
5704
+ @pulumi.getter(name="subscriptionId")
5705
+ def subscription_id(self) -> pulumi.Output[str]:
5706
+ """
5707
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
5634
5708
  These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
5635
5709
  """
5636
- return pulumi.get(self, "subnet_id")
5710
+ return pulumi.get(self, "subscription_id")
5637
5711
 
5638
5712
  @property
5639
5713
  @pulumi.getter(name="supportedRegionsToCloneTos")