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
@@ -41,9 +41,9 @@ class ScheduleArgs:
41
41
  :param pulumi.Input[str] description: (Updatable) The description of the schedule.
42
42
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
43
43
  :param pulumi.Input[str] name: The unique name of the user-created schedule.
44
- :param pulumi.Input[str] output_file_format: (Updatable) Specifies supported output file format.
44
+ :param pulumi.Input[str] output_file_format: (Updatable) Specifies the supported output file format.
45
45
  :param pulumi.Input['ScheduleQueryPropertiesArgs'] query_properties: The query properties.
46
- :param pulumi.Input[str] saved_report_id: The saved report id which can also be used to generate query.
46
+ :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
47
47
  """
48
48
  pulumi.set(__self__, "compartment_id", compartment_id)
49
49
  pulumi.set(__self__, "result_location", result_location)
@@ -168,7 +168,7 @@ class ScheduleArgs:
168
168
  @pulumi.getter(name="outputFileFormat")
169
169
  def output_file_format(self) -> Optional[pulumi.Input[str]]:
170
170
  """
171
- (Updatable) Specifies supported output file format.
171
+ (Updatable) Specifies the supported output file format.
172
172
  """
173
173
  return pulumi.get(self, "output_file_format")
174
174
 
@@ -192,7 +192,7 @@ class ScheduleArgs:
192
192
  @pulumi.getter(name="savedReportId")
193
193
  def saved_report_id(self) -> Optional[pulumi.Input[str]]:
194
194
  """
195
- The saved report id which can also be used to generate query.
195
+ The saved report ID which can also be used to generate a query.
196
196
  """
197
197
  return pulumi.get(self, "saved_report_id")
198
198
 
@@ -226,10 +226,10 @@ class _ScheduleState:
226
226
  :param pulumi.Input[str] description: (Updatable) The description of the schedule.
227
227
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
228
228
  :param pulumi.Input[str] name: The unique name of the user-created schedule.
229
- :param pulumi.Input[str] output_file_format: (Updatable) Specifies supported output file format.
229
+ :param pulumi.Input[str] output_file_format: (Updatable) Specifies the supported output file format.
230
230
  :param pulumi.Input['ScheduleQueryPropertiesArgs'] query_properties: The query properties.
231
231
  :param pulumi.Input['ScheduleResultLocationArgs'] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
232
- :param pulumi.Input[str] saved_report_id: The saved report id which can also be used to generate query.
232
+ :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
233
233
  :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
234
234
  :param pulumi.Input[str] state: The schedule lifecycle state.
235
235
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -336,7 +336,7 @@ class _ScheduleState:
336
336
  @pulumi.getter(name="outputFileFormat")
337
337
  def output_file_format(self) -> Optional[pulumi.Input[str]]:
338
338
  """
339
- (Updatable) Specifies supported output file format.
339
+ (Updatable) Specifies the supported output file format.
340
340
  """
341
341
  return pulumi.get(self, "output_file_format")
342
342
 
@@ -372,7 +372,7 @@ class _ScheduleState:
372
372
  @pulumi.getter(name="savedReportId")
373
373
  def saved_report_id(self) -> Optional[pulumi.Input[str]]:
374
374
  """
375
- The saved report id which can also be used to generate query.
375
+ The saved report ID which can also be used to generate a query.
376
376
  """
377
377
  return pulumi.get(self, "saved_report_id")
378
378
 
@@ -540,10 +540,10 @@ class Schedule(pulumi.CustomResource):
540
540
  :param pulumi.Input[str] description: (Updatable) The description of the schedule.
541
541
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
542
542
  :param pulumi.Input[str] name: The unique name of the user-created schedule.
543
- :param pulumi.Input[str] output_file_format: (Updatable) Specifies supported output file format.
543
+ :param pulumi.Input[str] output_file_format: (Updatable) Specifies the supported output file format.
544
544
  :param pulumi.Input[pulumi.InputType['ScheduleQueryPropertiesArgs']] query_properties: The query properties.
545
545
  :param pulumi.Input[pulumi.InputType['ScheduleResultLocationArgs']] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
546
- :param pulumi.Input[str] saved_report_id: The saved report id which can also be used to generate query.
546
+ :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
547
547
  :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
548
548
  :param pulumi.Input[str] time_scheduled: The date and time of the first time job execution.
549
549
 
@@ -711,10 +711,10 @@ class Schedule(pulumi.CustomResource):
711
711
  :param pulumi.Input[str] description: (Updatable) The description of the schedule.
712
712
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
713
713
  :param pulumi.Input[str] name: The unique name of the user-created schedule.
714
- :param pulumi.Input[str] output_file_format: (Updatable) Specifies supported output file format.
714
+ :param pulumi.Input[str] output_file_format: (Updatable) Specifies the supported output file format.
715
715
  :param pulumi.Input[pulumi.InputType['ScheduleQueryPropertiesArgs']] query_properties: The query properties.
716
716
  :param pulumi.Input[pulumi.InputType['ScheduleResultLocationArgs']] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
717
- :param pulumi.Input[str] saved_report_id: The saved report id which can also be used to generate query.
717
+ :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
718
718
  :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
719
719
  :param pulumi.Input[str] state: The schedule lifecycle state.
720
720
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -791,7 +791,7 @@ class Schedule(pulumi.CustomResource):
791
791
  @pulumi.getter(name="outputFileFormat")
792
792
  def output_file_format(self) -> pulumi.Output[str]:
793
793
  """
794
- (Updatable) Specifies supported output file format.
794
+ (Updatable) Specifies the supported output file format.
795
795
  """
796
796
  return pulumi.get(self, "output_file_format")
797
797
 
@@ -815,7 +815,7 @@ class Schedule(pulumi.CustomResource):
815
815
  @pulumi.getter(name="savedReportId")
816
816
  def saved_report_id(self) -> pulumi.Output[str]:
817
817
  """
818
- The saved report id which can also be used to generate query.
818
+ The saved report ID which can also be used to generate a query.
819
819
  """
820
820
  return pulumi.get(self, "saved_report_id")
821
821