pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.0__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 (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  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/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  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/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  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.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -52,9 +52,7 @@ class CloudAutonomousVmClusterArgs:
52
52
  :param pulumi.Input[str] description: (Updatable) User defined description of the cloud Autonomous VM cluster.
53
53
  :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"}`
54
54
  :param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
55
- <<<<<<< HEAD
56
- :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
57
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
55
+ :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
58
56
 
59
57
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
60
58
  :param pulumi.Input['CloudAutonomousVmClusterMaintenanceWindowDetailsArgs'] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
@@ -257,7 +255,6 @@ class CloudAutonomousVmClusterArgs:
257
255
  def is_mtls_enabled_vm_cluster(self) -> Optional[pulumi.Input[bool]]:
258
256
  """
259
257
  Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
260
- <<<<<<< HEAD
261
258
  """
262
259
  return pulumi.get(self, "is_mtls_enabled_vm_cluster")
263
260
 
@@ -269,8 +266,7 @@ class CloudAutonomousVmClusterArgs:
269
266
  @pulumi.getter(name="licenseModel")
270
267
  def license_model(self) -> Optional[pulumi.Input[str]]:
271
268
  """
272
- (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
273
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
269
+ (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
274
270
 
275
271
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
276
272
  """
@@ -454,12 +450,9 @@ class _CloudAutonomousVmClusterState:
454
450
  :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"}`
455
451
  :param pulumi.Input[str] hostname: The hostname for the cloud Autonomous VM cluster.
456
452
  :param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
457
- <<<<<<< HEAD
458
453
  :param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
459
454
  :param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
460
- <<<<<<< HEAD
461
- :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
462
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
455
+ :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
463
456
 
464
457
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
465
458
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
@@ -900,7 +893,6 @@ class _CloudAutonomousVmClusterState:
900
893
  def is_mtls_enabled_vm_cluster(self) -> Optional[pulumi.Input[bool]]:
901
894
  """
902
895
  Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
903
- <<<<<<< HEAD
904
896
  """
905
897
  return pulumi.get(self, "is_mtls_enabled_vm_cluster")
906
898
 
@@ -925,7 +917,6 @@ class _CloudAutonomousVmClusterState:
925
917
  def last_update_history_entry_id(self) -> Optional[pulumi.Input[str]]:
926
918
  """
927
919
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
928
- <<<<<<< HEAD
929
920
  """
930
921
  return pulumi.get(self, "last_update_history_entry_id")
931
922
 
@@ -937,8 +928,7 @@ class _CloudAutonomousVmClusterState:
937
928
  @pulumi.getter(name="licenseModel")
938
929
  def license_model(self) -> Optional[pulumi.Input[str]]:
939
930
  """
940
- (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
941
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
931
+ (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
942
932
 
943
933
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
944
934
  """
@@ -1379,9 +1369,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1379
1369
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
1380
1370
  :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"}`
1381
1371
  :param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
1382
- <<<<<<< HEAD
1383
- :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
1384
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
1372
+ :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
1385
1373
 
1386
1374
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
1387
1375
  :param pulumi.Input[pulumi.InputType['CloudAutonomousVmClusterMaintenanceWindowDetailsArgs']] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
@@ -1667,12 +1655,9 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1667
1655
  :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"}`
1668
1656
  :param pulumi.Input[str] hostname: The hostname for the cloud Autonomous VM cluster.
1669
1657
  :param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
1670
- <<<<<<< HEAD
1671
1658
  :param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
1672
1659
  :param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
1673
- <<<<<<< HEAD
1674
- :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
1675
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
1660
+ :param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
1676
1661
 
1677
1662
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
1678
1663
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
@@ -1967,7 +1952,6 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1967
1952
  def is_mtls_enabled_vm_cluster(self) -> pulumi.Output[bool]:
1968
1953
  """
1969
1954
  Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
1970
- <<<<<<< HEAD
1971
1955
  """
1972
1956
  return pulumi.get(self, "is_mtls_enabled_vm_cluster")
1973
1957
 
@@ -1984,7 +1968,6 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1984
1968
  def last_update_history_entry_id(self) -> pulumi.Output[str]:
1985
1969
  """
1986
1970
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
1987
- <<<<<<< HEAD
1988
1971
  """
1989
1972
  return pulumi.get(self, "last_update_history_entry_id")
1990
1973
 
@@ -1992,8 +1975,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1992
1975
  @pulumi.getter(name="licenseModel")
1993
1976
  def license_model(self) -> pulumi.Output[str]:
1994
1977
  """
1995
- (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
1996
- >>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
1978
+ (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
1997
1979
 
1998
1980
  This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
1999
1981
  """
@@ -26,7 +26,8 @@ class CloudExadataInfrastructureArgs:
26
26
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
27
27
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
28
28
  maintenance_window: Optional[pulumi.Input['CloudExadataInfrastructureMaintenanceWindowArgs']] = None,
29
- storage_count: Optional[pulumi.Input[int]] = None):
29
+ storage_count: Optional[pulumi.Input[int]] = None,
30
+ subscription_id: Optional[pulumi.Input[str]] = None):
30
31
  """
31
32
  The set of arguments for constructing a CloudExadataInfrastructure resource.
32
33
  :param pulumi.Input[str] availability_domain: The availability domain where the cloud Exadata infrastructure is located.
@@ -40,6 +41,7 @@ class CloudExadataInfrastructureArgs:
40
41
  :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"}`
41
42
  :param pulumi.Input['CloudExadataInfrastructureMaintenanceWindowArgs'] maintenance_window: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
42
43
  :param pulumi.Input[int] storage_count: (Updatable) The number of storage servers for the cloud Exadata infrastructure.
44
+ :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.
43
45
 
44
46
 
45
47
  ** IMPORTANT **
@@ -63,6 +65,8 @@ class CloudExadataInfrastructureArgs:
63
65
  pulumi.set(__self__, "maintenance_window", maintenance_window)
64
66
  if storage_count is not None:
65
67
  pulumi.set(__self__, "storage_count", storage_count)
68
+ if subscription_id is not None:
69
+ pulumi.set(__self__, "subscription_id", subscription_id)
66
70
 
67
71
  @property
68
72
  @pulumi.getter(name="availabilityDomain")
@@ -189,10 +193,6 @@ class CloudExadataInfrastructureArgs:
189
193
  def storage_count(self) -> Optional[pulumi.Input[int]]:
190
194
  """
191
195
  (Updatable) The number of storage servers for the cloud Exadata infrastructure.
192
-
193
-
194
- ** IMPORTANT **
195
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
196
196
  """
197
197
  return pulumi.get(self, "storage_count")
198
198
 
@@ -200,6 +200,22 @@ class CloudExadataInfrastructureArgs:
200
200
  def storage_count(self, value: Optional[pulumi.Input[int]]):
201
201
  pulumi.set(self, "storage_count", value)
202
202
 
203
+ @property
204
+ @pulumi.getter(name="subscriptionId")
205
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
206
+ """
207
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
208
+
209
+
210
+ ** IMPORTANT **
211
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
212
+ """
213
+ return pulumi.get(self, "subscription_id")
214
+
215
+ @subscription_id.setter
216
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
217
+ pulumi.set(self, "subscription_id", value)
218
+
203
219
 
204
220
  @pulumi.input_type
205
221
  class _CloudExadataInfrastructureState:
@@ -235,6 +251,7 @@ class _CloudExadataInfrastructureState:
235
251
  state: Optional[pulumi.Input[str]] = None,
236
252
  storage_count: Optional[pulumi.Input[int]] = None,
237
253
  storage_server_version: Optional[pulumi.Input[str]] = None,
254
+ subscription_id: Optional[pulumi.Input[str]] = None,
238
255
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
239
256
  time_created: Optional[pulumi.Input[str]] = None,
240
257
  total_storage_size_in_gbs: Optional[pulumi.Input[int]] = None):
@@ -270,11 +287,12 @@ class _CloudExadataInfrastructureState:
270
287
  :param pulumi.Input[str] shape: The shape of the cloud Exadata infrastructure resource.
271
288
  :param pulumi.Input[str] state: The current lifecycle state of the cloud Exadata infrastructure resource.
272
289
  :param pulumi.Input[int] storage_count: (Updatable) The number of storage servers for the cloud Exadata infrastructure.
290
+ :param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
291
+ :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.
273
292
 
274
293
 
275
294
  ** IMPORTANT **
276
295
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
277
- :param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
278
296
  :param pulumi.Input[Mapping[str, Any]] system_tags: System 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).
279
297
  :param pulumi.Input[str] time_created: The date and time the cloud Exadata infrastructure resource was created.
280
298
  :param pulumi.Input[int] total_storage_size_in_gbs: The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
@@ -341,6 +359,8 @@ class _CloudExadataInfrastructureState:
341
359
  pulumi.set(__self__, "storage_count", storage_count)
342
360
  if storage_server_version is not None:
343
361
  pulumi.set(__self__, "storage_server_version", storage_server_version)
362
+ if subscription_id is not None:
363
+ pulumi.set(__self__, "subscription_id", subscription_id)
344
364
  if system_tags is not None:
345
365
  pulumi.set(__self__, "system_tags", system_tags)
346
366
  if time_created is not None:
@@ -701,10 +721,6 @@ class _CloudExadataInfrastructureState:
701
721
  def storage_count(self) -> Optional[pulumi.Input[int]]:
702
722
  """
703
723
  (Updatable) The number of storage servers for the cloud Exadata infrastructure.
704
-
705
-
706
- ** IMPORTANT **
707
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
708
724
  """
709
725
  return pulumi.get(self, "storage_count")
710
726
 
@@ -724,6 +740,22 @@ class _CloudExadataInfrastructureState:
724
740
  def storage_server_version(self, value: Optional[pulumi.Input[str]]):
725
741
  pulumi.set(self, "storage_server_version", value)
726
742
 
743
+ @property
744
+ @pulumi.getter(name="subscriptionId")
745
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
746
+ """
747
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
748
+
749
+
750
+ ** IMPORTANT **
751
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
752
+ """
753
+ return pulumi.get(self, "subscription_id")
754
+
755
+ @subscription_id.setter
756
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
757
+ pulumi.set(self, "subscription_id", value)
758
+
727
759
  @property
728
760
  @pulumi.getter(name="systemTags")
729
761
  def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -777,6 +809,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
777
809
  maintenance_window: Optional[pulumi.Input[pulumi.InputType['CloudExadataInfrastructureMaintenanceWindowArgs']]] = None,
778
810
  shape: Optional[pulumi.Input[str]] = None,
779
811
  storage_count: Optional[pulumi.Input[int]] = None,
812
+ subscription_id: Optional[pulumi.Input[str]] = None,
780
813
  __props__=None):
781
814
  """
782
815
  This resource provides the Cloud Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service.
@@ -819,7 +852,8 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
819
852
  preference=cloud_exadata_infrastructure_maintenance_window_preference,
820
853
  weeks_of_months=cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
821
854
  ),
822
- storage_count=cloud_exadata_infrastructure_storage_count)
855
+ storage_count=cloud_exadata_infrastructure_storage_count,
856
+ subscription_id=tenant_subscription_id)
823
857
  ```
824
858
 
825
859
  ## Import
@@ -843,6 +877,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
843
877
  :param pulumi.Input[pulumi.InputType['CloudExadataInfrastructureMaintenanceWindowArgs']] maintenance_window: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
844
878
  :param pulumi.Input[str] shape: The shape of the cloud Exadata infrastructure resource.
845
879
  :param pulumi.Input[int] storage_count: (Updatable) The number of storage servers for the cloud Exadata infrastructure.
880
+ :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.
846
881
 
847
882
 
848
883
  ** IMPORTANT **
@@ -895,7 +930,8 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
895
930
  preference=cloud_exadata_infrastructure_maintenance_window_preference,
896
931
  weeks_of_months=cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
897
932
  ),
898
- storage_count=cloud_exadata_infrastructure_storage_count)
933
+ storage_count=cloud_exadata_infrastructure_storage_count,
934
+ subscription_id=tenant_subscription_id)
899
935
  ```
900
936
 
901
937
  ## Import
@@ -932,6 +968,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
932
968
  maintenance_window: Optional[pulumi.Input[pulumi.InputType['CloudExadataInfrastructureMaintenanceWindowArgs']]] = None,
933
969
  shape: Optional[pulumi.Input[str]] = None,
934
970
  storage_count: Optional[pulumi.Input[int]] = None,
971
+ subscription_id: Optional[pulumi.Input[str]] = None,
935
972
  __props__=None):
936
973
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
937
974
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -960,6 +997,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
960
997
  raise TypeError("Missing required property 'shape'")
961
998
  __props__.__dict__["shape"] = shape
962
999
  __props__.__dict__["storage_count"] = storage_count
1000
+ __props__.__dict__["subscription_id"] = subscription_id
963
1001
  __props__.__dict__["activated_storage_count"] = None
964
1002
  __props__.__dict__["additional_storage_count"] = None
965
1003
  __props__.__dict__["available_storage_size_in_gbs"] = None
@@ -1024,6 +1062,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
1024
1062
  state: Optional[pulumi.Input[str]] = None,
1025
1063
  storage_count: Optional[pulumi.Input[int]] = None,
1026
1064
  storage_server_version: Optional[pulumi.Input[str]] = None,
1065
+ subscription_id: Optional[pulumi.Input[str]] = None,
1027
1066
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1028
1067
  time_created: Optional[pulumi.Input[str]] = None,
1029
1068
  total_storage_size_in_gbs: Optional[pulumi.Input[int]] = None) -> 'CloudExadataInfrastructure':
@@ -1064,11 +1103,12 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
1064
1103
  :param pulumi.Input[str] shape: The shape of the cloud Exadata infrastructure resource.
1065
1104
  :param pulumi.Input[str] state: The current lifecycle state of the cloud Exadata infrastructure resource.
1066
1105
  :param pulumi.Input[int] storage_count: (Updatable) The number of storage servers for the cloud Exadata infrastructure.
1106
+ :param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
1107
+ :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.
1067
1108
 
1068
1109
 
1069
1110
  ** IMPORTANT **
1070
1111
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1071
- :param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
1072
1112
  :param pulumi.Input[Mapping[str, Any]] system_tags: System 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).
1073
1113
  :param pulumi.Input[str] time_created: The date and time the cloud Exadata infrastructure resource was created.
1074
1114
  :param pulumi.Input[int] total_storage_size_in_gbs: The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
@@ -1108,6 +1148,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
1108
1148
  __props__.__dict__["state"] = state
1109
1149
  __props__.__dict__["storage_count"] = storage_count
1110
1150
  __props__.__dict__["storage_server_version"] = storage_server_version
1151
+ __props__.__dict__["subscription_id"] = subscription_id
1111
1152
  __props__.__dict__["system_tags"] = system_tags
1112
1153
  __props__.__dict__["time_created"] = time_created
1113
1154
  __props__.__dict__["total_storage_size_in_gbs"] = total_storage_size_in_gbs
@@ -1350,10 +1391,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
1350
1391
  def storage_count(self) -> pulumi.Output[int]:
1351
1392
  """
1352
1393
  (Updatable) The number of storage servers for the cloud Exadata infrastructure.
1353
-
1354
-
1355
- ** IMPORTANT **
1356
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1357
1394
  """
1358
1395
  return pulumi.get(self, "storage_count")
1359
1396
 
@@ -1365,6 +1402,18 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
1365
1402
  """
1366
1403
  return pulumi.get(self, "storage_server_version")
1367
1404
 
1405
+ @property
1406
+ @pulumi.getter(name="subscriptionId")
1407
+ def subscription_id(self) -> pulumi.Output[str]:
1408
+ """
1409
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
1410
+
1411
+
1412
+ ** IMPORTANT **
1413
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1414
+ """
1415
+ return pulumi.get(self, "subscription_id")
1416
+
1368
1417
  @property
1369
1418
  @pulumi.getter(name="systemTags")
1370
1419
  def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
@@ -46,6 +46,7 @@ class CloudVmClusterArgs:
46
46
  private_zone_id: Optional[pulumi.Input[str]] = None,
47
47
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
48
48
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
49
+ subscription_id: Optional[pulumi.Input[str]] = None,
49
50
  system_version: Optional[pulumi.Input[str]] = None,
50
51
  time_zone: Optional[pulumi.Input[str]] = None):
51
52
  """
@@ -91,6 +92,7 @@ class CloudVmClusterArgs:
91
92
  :param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
92
93
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
93
94
  :param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
95
+ :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.
94
96
  :param pulumi.Input[str] system_version: Operating system version of the image.
95
97
  :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
96
98
 
@@ -149,6 +151,8 @@ class CloudVmClusterArgs:
149
151
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
150
152
  if scan_listener_port_tcp_ssl is not None:
151
153
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
154
+ if subscription_id is not None:
155
+ pulumi.set(__self__, "subscription_id", subscription_id)
152
156
  if system_version is not None:
153
157
  pulumi.set(__self__, "system_version", system_version)
154
158
  if time_zone is not None:
@@ -523,6 +527,18 @@ class CloudVmClusterArgs:
523
527
  def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
524
528
  pulumi.set(self, "scan_listener_port_tcp_ssl", value)
525
529
 
530
+ @property
531
+ @pulumi.getter(name="subscriptionId")
532
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
533
+ """
534
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
535
+ """
536
+ return pulumi.get(self, "subscription_id")
537
+
538
+ @subscription_id.setter
539
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
540
+ pulumi.set(self, "subscription_id", value)
541
+
526
542
  @property
527
543
  @pulumi.getter(name="systemVersion")
528
544
  def system_version(self) -> Optional[pulumi.Input[str]]:
@@ -598,6 +614,7 @@ class _CloudVmClusterState:
598
614
  state: Optional[pulumi.Input[str]] = None,
599
615
  storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
600
616
  subnet_id: Optional[pulumi.Input[str]] = None,
617
+ subscription_id: Optional[pulumi.Input[str]] = None,
601
618
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
602
619
  system_version: Optional[pulumi.Input[str]] = None,
603
620
  time_created: Optional[pulumi.Input[str]] = None,
@@ -660,6 +677,7 @@ class _CloudVmClusterState:
660
677
  :param pulumi.Input[str] state: The current state of the cloud VM cluster.
661
678
  :param pulumi.Input[int] storage_size_in_gbs: The storage allocation for the disk group, in gigabytes (GB).
662
679
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
680
+ :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.
663
681
  :param pulumi.Input[Mapping[str, Any]] system_tags: System 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).
664
682
  :param pulumi.Input[str] system_version: Operating system version of the image.
665
683
  :param pulumi.Input[str] time_created: The date and time that the cloud VM cluster was created.
@@ -757,6 +775,8 @@ class _CloudVmClusterState:
757
775
  pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
758
776
  if subnet_id is not None:
759
777
  pulumi.set(__self__, "subnet_id", subnet_id)
778
+ if subscription_id is not None:
779
+ pulumi.set(__self__, "subscription_id", subscription_id)
760
780
  if system_tags is not None:
761
781
  pulumi.set(__self__, "system_tags", system_tags)
762
782
  if system_version is not None:
@@ -1295,6 +1315,18 @@ class _CloudVmClusterState:
1295
1315
  def subnet_id(self, value: Optional[pulumi.Input[str]]):
1296
1316
  pulumi.set(self, "subnet_id", value)
1297
1317
 
1318
+ @property
1319
+ @pulumi.getter(name="subscriptionId")
1320
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
1321
+ """
1322
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
1323
+ """
1324
+ return pulumi.get(self, "subscription_id")
1325
+
1326
+ @subscription_id.setter
1327
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
1328
+ pulumi.set(self, "subscription_id", value)
1329
+
1298
1330
  @property
1299
1331
  @pulumi.getter(name="systemTags")
1300
1332
  def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -1407,6 +1439,7 @@ class CloudVmCluster(pulumi.CustomResource):
1407
1439
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1408
1440
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1409
1441
  subnet_id: Optional[pulumi.Input[str]] = None,
1442
+ subscription_id: Optional[pulumi.Input[str]] = None,
1410
1443
  system_version: Optional[pulumi.Input[str]] = None,
1411
1444
  time_zone: Optional[pulumi.Input[str]] = None,
1412
1445
  __props__=None):
@@ -1460,6 +1493,7 @@ class CloudVmCluster(pulumi.CustomResource):
1460
1493
  private_zone_id=test_zone["id"],
1461
1494
  scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
1462
1495
  scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
1496
+ subscription_id=tenant_subscription_id,
1463
1497
  system_version=cloud_vm_cluster_system_version,
1464
1498
  time_zone=cloud_vm_cluster_time_zone)
1465
1499
  ```
@@ -1515,6 +1549,7 @@ class CloudVmCluster(pulumi.CustomResource):
1515
1549
  :param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
1516
1550
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
1517
1551
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
1552
+ :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.
1518
1553
  :param pulumi.Input[str] system_version: Operating system version of the image.
1519
1554
  :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
1520
1555
 
@@ -1578,6 +1613,7 @@ class CloudVmCluster(pulumi.CustomResource):
1578
1613
  private_zone_id=test_zone["id"],
1579
1614
  scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
1580
1615
  scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
1616
+ subscription_id=tenant_subscription_id,
1581
1617
  system_version=cloud_vm_cluster_system_version,
1582
1618
  time_zone=cloud_vm_cluster_time_zone)
1583
1619
  ```
@@ -1635,6 +1671,7 @@ class CloudVmCluster(pulumi.CustomResource):
1635
1671
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1636
1672
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1637
1673
  subnet_id: Optional[pulumi.Input[str]] = None,
1674
+ subscription_id: Optional[pulumi.Input[str]] = None,
1638
1675
  system_version: Optional[pulumi.Input[str]] = None,
1639
1676
  time_zone: Optional[pulumi.Input[str]] = None,
1640
1677
  __props__=None):
@@ -1694,6 +1731,7 @@ class CloudVmCluster(pulumi.CustomResource):
1694
1731
  if subnet_id is None and not opts.urn:
1695
1732
  raise TypeError("Missing required property 'subnet_id'")
1696
1733
  __props__.__dict__["subnet_id"] = subnet_id
1734
+ __props__.__dict__["subscription_id"] = subscription_id
1697
1735
  __props__.__dict__["system_version"] = system_version
1698
1736
  __props__.__dict__["time_zone"] = time_zone
1699
1737
  __props__.__dict__["availability_domain"] = None
@@ -1766,6 +1804,7 @@ class CloudVmCluster(pulumi.CustomResource):
1766
1804
  state: Optional[pulumi.Input[str]] = None,
1767
1805
  storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
1768
1806
  subnet_id: Optional[pulumi.Input[str]] = None,
1807
+ subscription_id: Optional[pulumi.Input[str]] = None,
1769
1808
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1770
1809
  system_version: Optional[pulumi.Input[str]] = None,
1771
1810
  time_created: Optional[pulumi.Input[str]] = None,
@@ -1833,6 +1872,7 @@ class CloudVmCluster(pulumi.CustomResource):
1833
1872
  :param pulumi.Input[str] state: The current state of the cloud VM cluster.
1834
1873
  :param pulumi.Input[int] storage_size_in_gbs: The storage allocation for the disk group, in gigabytes (GB).
1835
1874
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
1875
+ :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.
1836
1876
  :param pulumi.Input[Mapping[str, Any]] system_tags: System 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).
1837
1877
  :param pulumi.Input[str] system_version: Operating system version of the image.
1838
1878
  :param pulumi.Input[str] time_created: The date and time that the cloud VM cluster was created.
@@ -1891,6 +1931,7 @@ class CloudVmCluster(pulumi.CustomResource):
1891
1931
  __props__.__dict__["state"] = state
1892
1932
  __props__.__dict__["storage_size_in_gbs"] = storage_size_in_gbs
1893
1933
  __props__.__dict__["subnet_id"] = subnet_id
1934
+ __props__.__dict__["subscription_id"] = subscription_id
1894
1935
  __props__.__dict__["system_tags"] = system_tags
1895
1936
  __props__.__dict__["system_version"] = system_version
1896
1937
  __props__.__dict__["time_created"] = time_created
@@ -2252,6 +2293,14 @@ class CloudVmCluster(pulumi.CustomResource):
2252
2293
  """
2253
2294
  return pulumi.get(self, "subnet_id")
2254
2295
 
2296
+ @property
2297
+ @pulumi.getter(name="subscriptionId")
2298
+ def subscription_id(self) -> pulumi.Output[str]:
2299
+ """
2300
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
2301
+ """
2302
+ return pulumi.get(self, "subscription_id")
2303
+
2255
2304
  @property
2256
2305
  @pulumi.getter(name="systemTags")
2257
2306
  def system_tags(self) -> pulumi.Output[Mapping[str, Any]]: