pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -2275,6 +2275,14 @@ _utilities.register(
2275
2275
  "oci:Database/autonomousDatabaseRegionalWalletManagement:AutonomousDatabaseRegionalWalletManagement": "AutonomousDatabaseRegionalWalletManagement"
2276
2276
  }
2277
2277
  },
2278
+ {
2279
+ "pkg": "oci",
2280
+ "mod": "Database/autonomousDatabaseSaasAdminUser",
2281
+ "fqn": "pulumi_oci.database",
2282
+ "classes": {
2283
+ "oci:Database/autonomousDatabaseSaasAdminUser:AutonomousDatabaseSaasAdminUser": "AutonomousDatabaseSaasAdminUser"
2284
+ }
2285
+ },
2278
2286
  {
2279
2287
  "pkg": "oci",
2280
2288
  "mod": "Database/autonomousDatabaseWallet",
@@ -3547,6 +3555,14 @@ _utilities.register(
3547
3555
  "oci:Identity/domainsGroup:DomainsGroup": "DomainsGroup"
3548
3556
  }
3549
3557
  },
3558
+ {
3559
+ "pkg": "oci",
3560
+ "mod": "Identity/domainsIdentityPropagationTrust",
3561
+ "fqn": "pulumi_oci.identity",
3562
+ "classes": {
3563
+ "oci:Identity/domainsIdentityPropagationTrust:DomainsIdentityPropagationTrust": "DomainsIdentityPropagationTrust"
3564
+ }
3565
+ },
3550
3566
  {
3551
3567
  "pkg": "oci",
3552
3568
  "mod": "Identity/domainsIdentityProvider",
@@ -4363,6 +4379,22 @@ _utilities.register(
4363
4379
  "oci:MeteringComputation/usage:Usage": "Usage"
4364
4380
  }
4365
4381
  },
4382
+ {
4383
+ "pkg": "oci",
4384
+ "mod": "MeteringComputation/usageCarbonEmission",
4385
+ "fqn": "pulumi_oci.meteringcomputation",
4386
+ "classes": {
4387
+ "oci:MeteringComputation/usageCarbonEmission:UsageCarbonEmission": "UsageCarbonEmission"
4388
+ }
4389
+ },
4390
+ {
4391
+ "pkg": "oci",
4392
+ "mod": "MeteringComputation/usageCarbonEmissionsQuery",
4393
+ "fqn": "pulumi_oci.meteringcomputation",
4394
+ "classes": {
4395
+ "oci:MeteringComputation/usageCarbonEmissionsQuery:UsageCarbonEmissionsQuery": "UsageCarbonEmissionsQuery"
4396
+ }
4397
+ },
4366
4398
  {
4367
4399
  "pkg": "oci",
4368
4400
  "mod": "Monitoring/alarm",
@@ -4747,6 +4779,22 @@ _utilities.register(
4747
4779
  "oci:Opsi/awrHub:AwrHub": "AwrHub"
4748
4780
  }
4749
4781
  },
4782
+ {
4783
+ "pkg": "oci",
4784
+ "mod": "Opsi/awrHubSource",
4785
+ "fqn": "pulumi_oci.opsi",
4786
+ "classes": {
4787
+ "oci:Opsi/awrHubSource:AwrHubSource": "AwrHubSource"
4788
+ }
4789
+ },
4790
+ {
4791
+ "pkg": "oci",
4792
+ "mod": "Opsi/awrHubSourceAwrhubsourcesManagement",
4793
+ "fqn": "pulumi_oci.opsi",
4794
+ "classes": {
4795
+ "oci:Opsi/awrHubSourceAwrhubsourcesManagement:AwrHubSourceAwrhubsourcesManagement": "AwrHubSourceAwrhubsourcesManagement"
4796
+ }
4797
+ },
4750
4798
  {
4751
4799
  "pkg": "oci",
4752
4800
  "mod": "Opsi/databaseInsight",
@@ -56,7 +56,7 @@ class InstanceArgs:
56
56
  :param pulumi.Input[str] capacity_reservation_id: (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm#default).
57
57
  :param pulumi.Input[str] compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) that the instance will be created in.
58
58
  :param pulumi.Input['InstanceCreateVnicDetailsArgs'] create_vnic_details: (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
59
- :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
59
+ :param pulumi.Input[str] dedicated_vm_host_id: (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
60
60
  :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). Example: `{"Operations.CostCenter": "42"}`
61
61
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
62
62
  :param pulumi.Input[str] fault_domain: (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
@@ -309,7 +309,7 @@ class InstanceArgs:
309
309
  @pulumi.getter(name="dedicatedVmHostId")
310
310
  def dedicated_vm_host_id(self) -> Optional[pulumi.Input[str]]:
311
311
  """
312
- The OCID of the dedicated virtual machine host to place the instance on.
312
+ (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
313
313
  """
314
314
  return pulumi.get(self, "dedicated_vm_host_id")
315
315
 
@@ -702,7 +702,7 @@ class _InstanceState:
702
702
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
703
703
  :param pulumi.Input[str] compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) that the instance will be created in.
704
704
  :param pulumi.Input['InstanceCreateVnicDetailsArgs'] create_vnic_details: (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
705
- :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
705
+ :param pulumi.Input[str] dedicated_vm_host_id: (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
706
706
  :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). Example: `{"Operations.CostCenter": "42"}`
707
707
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
708
708
  :param pulumi.Input[str] fault_domain: (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
@@ -999,7 +999,7 @@ class _InstanceState:
999
999
  @pulumi.getter(name="dedicatedVmHostId")
1000
1000
  def dedicated_vm_host_id(self) -> Optional[pulumi.Input[str]]:
1001
1001
  """
1002
- The OCID of the dedicated virtual machine host to place the instance on.
1002
+ (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
1003
1003
  """
1004
1004
  return pulumi.get(self, "dedicated_vm_host_id")
1005
1005
 
@@ -1540,7 +1540,7 @@ class Instance(pulumi.CustomResource):
1540
1540
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
1541
1541
  :param pulumi.Input[str] compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) that the instance will be created in.
1542
1542
  :param pulumi.Input[pulumi.InputType['InstanceCreateVnicDetailsArgs']] create_vnic_details: (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
1543
- :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
1543
+ :param pulumi.Input[str] dedicated_vm_host_id: (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
1544
1544
  :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). Example: `{"Operations.CostCenter": "42"}`
1545
1545
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
1546
1546
  :param pulumi.Input[str] fault_domain: (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
@@ -1851,7 +1851,7 @@ class Instance(pulumi.CustomResource):
1851
1851
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
1852
1852
  :param pulumi.Input[str] compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) that the instance will be created in.
1853
1853
  :param pulumi.Input[pulumi.InputType['InstanceCreateVnicDetailsArgs']] create_vnic_details: (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
1854
- :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
1854
+ :param pulumi.Input[str] dedicated_vm_host_id: (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
1855
1855
  :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). Example: `{"Operations.CostCenter": "42"}`
1856
1856
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
1857
1857
  :param pulumi.Input[str] fault_domain: (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
@@ -2068,7 +2068,7 @@ class Instance(pulumi.CustomResource):
2068
2068
  @pulumi.getter(name="dedicatedVmHostId")
2069
2069
  def dedicated_vm_host_id(self) -> pulumi.Output[str]:
2070
2070
  """
2071
- The OCID of the dedicated virtual machine host to place the instance on.
2071
+ (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
2072
2072
  """
2073
2073
  return pulumi.get(self, "dedicated_vm_host_id")
2074
2074
 
@@ -14,6 +14,7 @@ from .autonomous_database import *
14
14
  from .autonomous_database_backup import *
15
15
  from .autonomous_database_instance_wallet_management import *
16
16
  from .autonomous_database_regional_wallet_management import *
17
+ from .autonomous_database_saas_admin_user import *
17
18
  from .autonomous_database_wallet import *
18
19
  from .autonomous_exadata_infrastructure import *
19
20
  from .autonomous_vm_cluster import *
@@ -57,6 +57,7 @@ class AutonomousDatabaseArgs:
57
57
  kms_key_id: Optional[pulumi.Input[str]] = None,
58
58
  license_model: Optional[pulumi.Input[str]] = None,
59
59
  local_adg_auto_failover_max_data_loss_limit: Optional[pulumi.Input[int]] = None,
60
+ long_term_backup_schedules: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]]] = None,
60
61
  max_cpu_core_count: Optional[pulumi.Input[int]] = None,
61
62
  ncharacter_set: Optional[pulumi.Input[str]] = None,
62
63
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -157,6 +158,7 @@ class AutonomousDatabaseArgs:
157
158
  :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.
158
159
  :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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
159
160
  :param pulumi.Input[int] local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
161
+ :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
160
162
  :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
161
163
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
162
164
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
@@ -300,6 +302,8 @@ class AutonomousDatabaseArgs:
300
302
  pulumi.set(__self__, "license_model", license_model)
301
303
  if local_adg_auto_failover_max_data_loss_limit is not None:
302
304
  pulumi.set(__self__, "local_adg_auto_failover_max_data_loss_limit", local_adg_auto_failover_max_data_loss_limit)
305
+ if long_term_backup_schedules is not None:
306
+ pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
303
307
  if max_cpu_core_count is not None:
304
308
  pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
305
309
  if ncharacter_set is not None:
@@ -878,6 +882,18 @@ class AutonomousDatabaseArgs:
878
882
  def local_adg_auto_failover_max_data_loss_limit(self, value: Optional[pulumi.Input[int]]):
879
883
  pulumi.set(self, "local_adg_auto_failover_max_data_loss_limit", value)
880
884
 
885
+ @property
886
+ @pulumi.getter(name="longTermBackupSchedules")
887
+ def long_term_backup_schedules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]]]:
888
+ """
889
+ Details for the long-term backup schedule.
890
+ """
891
+ return pulumi.get(self, "long_term_backup_schedules")
892
+
893
+ @long_term_backup_schedules.setter
894
+ def long_term_backup_schedules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]]]):
895
+ pulumi.set(self, "long_term_backup_schedules", value)
896
+
881
897
  @property
882
898
  @pulumi.getter(name="maxCpuCoreCount")
883
899
  def max_cpu_core_count(self) -> Optional[pulumi.Input[int]]:
@@ -3385,6 +3401,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3385
3401
  kms_key_id: Optional[pulumi.Input[str]] = None,
3386
3402
  license_model: Optional[pulumi.Input[str]] = None,
3387
3403
  local_adg_auto_failover_max_data_loss_limit: Optional[pulumi.Input[int]] = None,
3404
+ long_term_backup_schedules: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLongTermBackupScheduleArgs']]]]] = None,
3388
3405
  max_cpu_core_count: Optional[pulumi.Input[int]] = None,
3389
3406
  ncharacter_set: Optional[pulumi.Input[str]] = None,
3390
3407
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -3499,6 +3516,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3499
3516
  :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.
3500
3517
  :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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
3501
3518
  :param pulumi.Input[int] local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
3519
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLongTermBackupScheduleArgs']]]] long_term_backup_schedules: Details for the long-term backup schedule.
3502
3520
  :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
3503
3521
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
3504
3522
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
@@ -3637,6 +3655,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3637
3655
  kms_key_id: Optional[pulumi.Input[str]] = None,
3638
3656
  license_model: Optional[pulumi.Input[str]] = None,
3639
3657
  local_adg_auto_failover_max_data_loss_limit: Optional[pulumi.Input[int]] = None,
3658
+ long_term_backup_schedules: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLongTermBackupScheduleArgs']]]]] = None,
3640
3659
  max_cpu_core_count: Optional[pulumi.Input[int]] = None,
3641
3660
  ncharacter_set: Optional[pulumi.Input[str]] = None,
3642
3661
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -3719,6 +3738,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3719
3738
  __props__.__dict__["kms_key_id"] = kms_key_id
3720
3739
  __props__.__dict__["license_model"] = license_model
3721
3740
  __props__.__dict__["local_adg_auto_failover_max_data_loss_limit"] = local_adg_auto_failover_max_data_loss_limit
3741
+ __props__.__dict__["long_term_backup_schedules"] = long_term_backup_schedules
3722
3742
  __props__.__dict__["max_cpu_core_count"] = max_cpu_core_count
3723
3743
  __props__.__dict__["ncharacter_set"] = ncharacter_set
3724
3744
  __props__.__dict__["nsg_ids"] = nsg_ids
@@ -3770,7 +3790,6 @@ class AutonomousDatabase(pulumi.CustomResource):
3770
3790
  __props__.__dict__["lifecycle_details"] = None
3771
3791
  __props__.__dict__["local_disaster_recovery_type"] = None
3772
3792
  __props__.__dict__["local_standby_dbs"] = None
3773
- __props__.__dict__["long_term_backup_schedules"] = None
3774
3793
  __props__.__dict__["memory_per_oracle_compute_unit_in_gbs"] = None
3775
3794
  __props__.__dict__["next_long_term_backup_time_stamp"] = None
3776
3795
  __props__.__dict__["peer_db_ids"] = None