pulumi-oci 2.23.0a1738304451__py3-none-any.whl → 2.24.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 (163) hide show
  1. pulumi_oci/__init__.py +96 -0
  2. pulumi_oci/apmsynthetics/config.py +2 -2
  3. pulumi_oci/apmsynthetics/dedicated_vantage_point.py +2 -2
  4. pulumi_oci/apmsynthetics/get_dedicated_vantage_point.py +2 -2
  5. pulumi_oci/apmsynthetics/get_dedicated_vantage_points.py +2 -2
  6. pulumi_oci/apmsynthetics/get_monitor.py +2 -2
  7. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  8. pulumi_oci/apmsynthetics/get_on_premise_vantage_point.py +2 -2
  9. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_worker.py +2 -2
  10. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_workers.py +2 -2
  11. pulumi_oci/apmsynthetics/get_on_premise_vantage_points.py +2 -2
  12. pulumi_oci/apmsynthetics/get_result.py +2 -2
  13. pulumi_oci/apmsynthetics/get_script.py +2 -2
  14. pulumi_oci/apmsynthetics/get_scripts.py +2 -2
  15. pulumi_oci/apmsynthetics/get_vantage_point.py +2 -2
  16. pulumi_oci/apmsynthetics/get_vantage_points.py +2 -2
  17. pulumi_oci/apmsynthetics/on_premise_vantage_point.py +2 -2
  18. pulumi_oci/apmsynthetics/on_premise_vantage_point_worker.py +2 -2
  19. pulumi_oci/apmsynthetics/script.py +2 -2
  20. pulumi_oci/database/__init__.py +20 -0
  21. pulumi_oci/database/_inputs.py +2242 -1118
  22. pulumi_oci/database/backup.py +30 -0
  23. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  24. pulumi_oci/database/exadata_infrastructure.py +28 -0
  25. pulumi_oci/database/execution_action.py +812 -0
  26. pulumi_oci/database/execution_window.py +856 -0
  27. pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
  28. pulumi_oci/database/get_database_maintenance_run_history.py +29 -1
  29. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  30. pulumi_oci/database/get_execution_action.py +352 -0
  31. pulumi_oci/database/get_execution_actions.py +213 -0
  32. pulumi_oci/database/get_execution_window.py +379 -0
  33. pulumi_oci/database/get_execution_windows.py +213 -0
  34. pulumi_oci/database/get_maintenance_run.py +32 -4
  35. pulumi_oci/database/get_scheduled_action.py +324 -0
  36. pulumi_oci/database/get_scheduled_action_params.py +144 -0
  37. pulumi_oci/database/get_scheduled_actions.py +240 -0
  38. pulumi_oci/database/get_scheduling_plan.py +323 -0
  39. pulumi_oci/database/get_scheduling_plans.py +243 -0
  40. pulumi_oci/database/get_scheduling_policies.py +191 -0
  41. pulumi_oci/database/get_scheduling_policy.py +268 -0
  42. pulumi_oci/database/get_scheduling_policy_recommended_scheduled_actions.py +182 -0
  43. pulumi_oci/database/get_scheduling_policy_scheduling_window.py +276 -0
  44. pulumi_oci/database/get_scheduling_policy_scheduling_windows.py +213 -0
  45. pulumi_oci/database/maintenance_run.py +58 -2
  46. pulumi_oci/database/outputs.py +11946 -7866
  47. pulumi_oci/database/scheduled_action.py +775 -0
  48. pulumi_oci/database/scheduling_plan.py +744 -0
  49. pulumi_oci/database/scheduling_policy.py +616 -0
  50. pulumi_oci/database/scheduling_policy_scheduling_window.py +584 -0
  51. pulumi_oci/databasemanagement/__init__.py +7 -0
  52. pulumi_oci/databasemanagement/_inputs.py +282 -0
  53. pulumi_oci/databasemanagement/external_my_sql_database.py +297 -0
  54. pulumi_oci/databasemanagement/external_my_sql_database_connector.py +890 -0
  55. pulumi_oci/databasemanagement/external_my_sql_database_external_mysql_databases_management.py +302 -0
  56. pulumi_oci/databasemanagement/get_external_my_sql_database.py +152 -0
  57. pulumi_oci/databasemanagement/get_external_my_sql_database_connector.py +413 -0
  58. pulumi_oci/databasemanagement/get_external_my_sql_database_connectors.py +169 -0
  59. pulumi_oci/databasemanagement/get_external_my_sql_databases.py +166 -0
  60. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +60 -4
  61. pulumi_oci/databasemanagement/get_managed_my_sql_databases.py +22 -3
  62. pulumi_oci/databasemanagement/outputs.py +767 -1
  63. pulumi_oci/datasafe/__init__.py +8 -0
  64. pulumi_oci/datasafe/_inputs.py +466 -12
  65. pulumi_oci/datasafe/alert.py +7 -7
  66. pulumi_oci/datasafe/alert_policy.py +7 -7
  67. pulumi_oci/datasafe/audit_archive_retrieval.py +7 -7
  68. pulumi_oci/datasafe/audit_policy.py +7 -7
  69. pulumi_oci/datasafe/audit_policy_management.py +21 -21
  70. pulumi_oci/datasafe/audit_profile.py +18 -18
  71. pulumi_oci/datasafe/audit_profile_management.py +21 -21
  72. pulumi_oci/datasafe/audit_trail.py +14 -14
  73. pulumi_oci/datasafe/audit_trail_management.py +14 -14
  74. pulumi_oci/datasafe/data_safe_configuration.py +4 -4
  75. pulumi_oci/datasafe/data_safe_private_endpoint.py +7 -7
  76. pulumi_oci/datasafe/database_security_config.py +7 -7
  77. pulumi_oci/datasafe/database_security_config_management.py +7 -7
  78. pulumi_oci/datasafe/discovery_mod.py +7 -7
  79. pulumi_oci/datasafe/get_alert.py +1 -1
  80. pulumi_oci/datasafe/get_alert_policy.py +1 -1
  81. pulumi_oci/datasafe/get_audit_archive_retrieval.py +1 -1
  82. pulumi_oci/datasafe/get_audit_events.py +2 -2
  83. pulumi_oci/datasafe/get_audit_policy.py +1 -1
  84. pulumi_oci/datasafe/get_audit_profile.py +2 -2
  85. pulumi_oci/datasafe/get_audit_trail.py +1 -1
  86. pulumi_oci/datasafe/get_data_safe_configuration.py +1 -1
  87. pulumi_oci/datasafe/get_data_safe_private_endpoint.py +1 -1
  88. pulumi_oci/datasafe/get_database_security_config.py +1 -1
  89. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  90. pulumi_oci/datasafe/get_library_masking_format.py +1 -1
  91. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  92. pulumi_oci/datasafe/get_masking_policy_health_report.py +33 -5
  93. pulumi_oci/datasafe/get_masking_policy_referential_relations.py +232 -0
  94. pulumi_oci/datasafe/get_onprem_connector.py +1 -1
  95. pulumi_oci/datasafe/get_report.py +1 -1
  96. pulumi_oci/datasafe/get_report_definition.py +1 -1
  97. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +1 -1
  98. pulumi_oci/datasafe/get_security_assessment.py +1 -1
  99. pulumi_oci/datasafe/get_security_policy.py +1 -1
  100. pulumi_oci/datasafe/get_security_policy_deployment.py +1 -1
  101. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  102. pulumi_oci/datasafe/get_sensitive_data_model_referential_relation.py +186 -0
  103. pulumi_oci/datasafe/get_sensitive_data_model_referential_relations.py +254 -0
  104. pulumi_oci/datasafe/get_sensitive_type.py +1 -1
  105. pulumi_oci/datasafe/get_sensitive_types_export.py +267 -0
  106. pulumi_oci/datasafe/get_sensitive_types_exports.py +296 -0
  107. pulumi_oci/datasafe/get_sql_collection.py +1 -1
  108. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +1 -1
  109. pulumi_oci/datasafe/get_sql_firewall_policy.py +1 -1
  110. pulumi_oci/datasafe/get_target_alert_policy_association.py +1 -1
  111. pulumi_oci/datasafe/get_target_database.py +1 -1
  112. pulumi_oci/datasafe/get_user_assessment.py +1 -1
  113. pulumi_oci/datasafe/get_user_assessment_password_expiry_date_analytics.py +240 -0
  114. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +41 -3
  115. pulumi_oci/datasafe/get_user_assessment_users.py +39 -1
  116. pulumi_oci/datasafe/library_masing_format.py +7 -7
  117. pulumi_oci/datasafe/masking_policy.py +7 -7
  118. pulumi_oci/datasafe/on_prem_connector.py +7 -7
  119. pulumi_oci/datasafe/outputs.py +1266 -151
  120. pulumi_oci/datasafe/report.py +7 -7
  121. pulumi_oci/datasafe/report_definition.py +7 -7
  122. pulumi_oci/datasafe/sdm_masking_policy_difference.py +7 -7
  123. pulumi_oci/datasafe/security_assessment.py +36 -37
  124. pulumi_oci/datasafe/security_policy.py +7 -7
  125. pulumi_oci/datasafe/security_policy_deployment.py +7 -7
  126. pulumi_oci/datasafe/security_policy_deployment_management.py +7 -7
  127. pulumi_oci/datasafe/security_policy_management.py +7 -7
  128. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  129. pulumi_oci/datasafe/sensitive_data_model_referential_relation.py +504 -0
  130. pulumi_oci/datasafe/sensitive_type.py +7 -7
  131. pulumi_oci/datasafe/sensitive_types_export.py +637 -0
  132. pulumi_oci/datasafe/sql_collection.py +7 -7
  133. pulumi_oci/datasafe/sql_firewall_policy.py +7 -7
  134. pulumi_oci/datasafe/sql_firewall_policy_management.py +56 -56
  135. pulumi_oci/datasafe/target_alert_policy_association.py +7 -7
  136. pulumi_oci/datasafe/target_database.py +7 -7
  137. pulumi_oci/datasafe/user_assessment.py +7 -7
  138. pulumi_oci/datascience/__init__.py +4 -0
  139. pulumi_oci/datascience/_inputs.py +1811 -0
  140. pulumi_oci/datascience/get_containers.py +270 -0
  141. pulumi_oci/datascience/get_schedule.py +366 -0
  142. pulumi_oci/datascience/get_schedules.py +221 -0
  143. pulumi_oci/datascience/outputs.py +8697 -4890
  144. pulumi_oci/datascience/schedule.py +1045 -0
  145. pulumi_oci/disasterrecovery/_inputs.py +720 -0
  146. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -188
  147. pulumi_oci/disasterrecovery/get_dr_protection_group.py +1 -1
  148. pulumi_oci/disasterrecovery/outputs.py +1328 -48
  149. pulumi_oci/mysql/_inputs.py +229 -9
  150. pulumi_oci/mysql/get_mysql_db_system.py +47 -1
  151. pulumi_oci/mysql/mysql_db_system.py +185 -0
  152. pulumi_oci/mysql/outputs.py +477 -26
  153. pulumi_oci/opsi/_inputs.py +20 -0
  154. pulumi_oci/opsi/database_insight.py +47 -0
  155. pulumi_oci/opsi/get_database_insight.py +15 -1
  156. pulumi_oci/opsi/get_news_report.py +29 -1
  157. pulumi_oci/opsi/news_report.py +117 -17
  158. pulumi_oci/opsi/outputs.py +70 -1
  159. pulumi_oci/pulumi-plugin.json +1 -1
  160. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/METADATA +1 -1
  161. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/RECORD +163 -124
  162. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/WHEEL +0 -0
  163. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -2244,6 +2244,14 @@ _utilities.register(
2244
2244
  "oci:DataSafe/sensitiveDataModel:SensitiveDataModel": "SensitiveDataModel"
2245
2245
  }
2246
2246
  },
2247
+ {
2248
+ "pkg": "oci",
2249
+ "mod": "DataSafe/sensitiveDataModelReferentialRelation",
2250
+ "fqn": "pulumi_oci.datasafe",
2251
+ "classes": {
2252
+ "oci:DataSafe/sensitiveDataModelReferentialRelation:SensitiveDataModelReferentialRelation": "SensitiveDataModelReferentialRelation"
2253
+ }
2254
+ },
2247
2255
  {
2248
2256
  "pkg": "oci",
2249
2257
  "mod": "DataSafe/sensitiveDataModelsApplyDiscoveryJobResults",
@@ -2268,6 +2276,14 @@ _utilities.register(
2268
2276
  "oci:DataSafe/sensitiveType:SensitiveType": "SensitiveType"
2269
2277
  }
2270
2278
  },
2279
+ {
2280
+ "pkg": "oci",
2281
+ "mod": "DataSafe/sensitiveTypesExport",
2282
+ "fqn": "pulumi_oci.datasafe",
2283
+ "classes": {
2284
+ "oci:DataSafe/sensitiveTypesExport:SensitiveTypesExport": "SensitiveTypesExport"
2285
+ }
2286
+ },
2271
2287
  {
2272
2288
  "pkg": "oci",
2273
2289
  "mod": "DataSafe/setSecurityAssessmentBaseline",
@@ -2492,6 +2508,14 @@ _utilities.register(
2492
2508
  "oci:DataScience/project:Project": "Project"
2493
2509
  }
2494
2510
  },
2511
+ {
2512
+ "pkg": "oci",
2513
+ "mod": "DataScience/schedule",
2514
+ "fqn": "pulumi_oci.datascience",
2515
+ "classes": {
2516
+ "oci:DataScience/schedule:Schedule": "Schedule"
2517
+ }
2518
+ },
2495
2519
  {
2496
2520
  "pkg": "oci",
2497
2521
  "mod": "Database/applicationVip",
@@ -2812,6 +2836,22 @@ _utilities.register(
2812
2836
  "oci:Database/exascaleDbStorageVault:ExascaleDbStorageVault": "ExascaleDbStorageVault"
2813
2837
  }
2814
2838
  },
2839
+ {
2840
+ "pkg": "oci",
2841
+ "mod": "Database/executionAction",
2842
+ "fqn": "pulumi_oci.database",
2843
+ "classes": {
2844
+ "oci:Database/executionAction:ExecutionAction": "ExecutionAction"
2845
+ }
2846
+ },
2847
+ {
2848
+ "pkg": "oci",
2849
+ "mod": "Database/executionWindow",
2850
+ "fqn": "pulumi_oci.database",
2851
+ "classes": {
2852
+ "oci:Database/executionWindow:ExecutionWindow": "ExecutionWindow"
2853
+ }
2854
+ },
2815
2855
  {
2816
2856
  "pkg": "oci",
2817
2857
  "mod": "Database/externalContainerDatabase",
@@ -2964,6 +3004,38 @@ _utilities.register(
2964
3004
  "oci:Database/pluggableDatabasesRemoteClone:PluggableDatabasesRemoteClone": "PluggableDatabasesRemoteClone"
2965
3005
  }
2966
3006
  },
3007
+ {
3008
+ "pkg": "oci",
3009
+ "mod": "Database/scheduledAction",
3010
+ "fqn": "pulumi_oci.database",
3011
+ "classes": {
3012
+ "oci:Database/scheduledAction:ScheduledAction": "ScheduledAction"
3013
+ }
3014
+ },
3015
+ {
3016
+ "pkg": "oci",
3017
+ "mod": "Database/schedulingPlan",
3018
+ "fqn": "pulumi_oci.database",
3019
+ "classes": {
3020
+ "oci:Database/schedulingPlan:SchedulingPlan": "SchedulingPlan"
3021
+ }
3022
+ },
3023
+ {
3024
+ "pkg": "oci",
3025
+ "mod": "Database/schedulingPolicy",
3026
+ "fqn": "pulumi_oci.database",
3027
+ "classes": {
3028
+ "oci:Database/schedulingPolicy:SchedulingPolicy": "SchedulingPolicy"
3029
+ }
3030
+ },
3031
+ {
3032
+ "pkg": "oci",
3033
+ "mod": "Database/schedulingPolicySchedulingWindow",
3034
+ "fqn": "pulumi_oci.database",
3035
+ "classes": {
3036
+ "oci:Database/schedulingPolicySchedulingWindow:SchedulingPolicySchedulingWindow": "SchedulingPolicySchedulingWindow"
3037
+ }
3038
+ },
2967
3039
  {
2968
3040
  "pkg": "oci",
2969
3041
  "mod": "Database/vmCluster",
@@ -3156,6 +3228,30 @@ _utilities.register(
3156
3228
  "oci:DatabaseManagement/externalListener:ExternalListener": "ExternalListener"
3157
3229
  }
3158
3230
  },
3231
+ {
3232
+ "pkg": "oci",
3233
+ "mod": "DatabaseManagement/externalMySqlDatabase",
3234
+ "fqn": "pulumi_oci.databasemanagement",
3235
+ "classes": {
3236
+ "oci:DatabaseManagement/externalMySqlDatabase:ExternalMySqlDatabase": "ExternalMySqlDatabase"
3237
+ }
3238
+ },
3239
+ {
3240
+ "pkg": "oci",
3241
+ "mod": "DatabaseManagement/externalMySqlDatabaseConnector",
3242
+ "fqn": "pulumi_oci.databasemanagement",
3243
+ "classes": {
3244
+ "oci:DatabaseManagement/externalMySqlDatabaseConnector:ExternalMySqlDatabaseConnector": "ExternalMySqlDatabaseConnector"
3245
+ }
3246
+ },
3247
+ {
3248
+ "pkg": "oci",
3249
+ "mod": "DatabaseManagement/externalMySqlDatabaseExternalMysqlDatabasesManagement",
3250
+ "fqn": "pulumi_oci.databasemanagement",
3251
+ "classes": {
3252
+ "oci:DatabaseManagement/externalMySqlDatabaseExternalMysqlDatabasesManagement:ExternalMySqlDatabaseExternalMysqlDatabasesManagement": "ExternalMySqlDatabaseExternalMysqlDatabasesManagement"
3253
+ }
3254
+ },
3159
3255
  {
3160
3256
  "pkg": "oci",
3161
3257
  "mod": "DatabaseManagement/externalcontainerdatabaseExternalContainerDbmFeaturesManagement",
@@ -825,7 +825,7 @@ class Config(pulumi.CustomResource):
825
825
  vantage_points: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigVantagePointArgs', 'ConfigVantagePointArgsDict']]]]] = None,
826
826
  __props__=None):
827
827
  """
828
- This resource provides the Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.
828
+ This resource provides the Monitor resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
829
829
 
830
830
  Creates a new monitor.
831
831
 
@@ -1007,7 +1007,7 @@ class Config(pulumi.CustomResource):
1007
1007
  args: ConfigArgs,
1008
1008
  opts: Optional[pulumi.ResourceOptions] = None):
1009
1009
  """
1010
- This resource provides the Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.
1010
+ This resource provides the Monitor resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
1011
1011
 
1012
1012
  Creates a new monitor.
1013
1013
 
@@ -348,7 +348,7 @@ class DedicatedVantagePoint(pulumi.CustomResource):
348
348
  status: Optional[pulumi.Input[str]] = None,
349
349
  __props__=None):
350
350
  """
351
- This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
351
+ This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
352
352
 
353
353
  Registers a new dedicated vantage point.
354
354
 
@@ -406,7 +406,7 @@ class DedicatedVantagePoint(pulumi.CustomResource):
406
406
  args: DedicatedVantagePointArgs,
407
407
  opts: Optional[pulumi.ResourceOptions] = None):
408
408
  """
409
- This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
409
+ This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
410
410
 
411
411
  Registers a new dedicated vantage point.
412
412
 
@@ -192,7 +192,7 @@ def get_dedicated_vantage_point(apm_domain_id: Optional[str] = None,
192
192
  dedicated_vantage_point_id: Optional[str] = None,
193
193
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedVantagePointResult:
194
194
  """
195
- This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
195
+ This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
196
196
 
197
197
  Gets the details of the dedicated vantage point identified by the OCID.
198
198
 
@@ -234,7 +234,7 @@ def get_dedicated_vantage_point_output(apm_domain_id: Optional[pulumi.Input[str]
234
234
  dedicated_vantage_point_id: Optional[pulumi.Input[str]] = None,
235
235
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDedicatedVantagePointResult]:
236
236
  """
237
- This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
237
+ This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
238
238
 
239
239
  Gets the details of the dedicated vantage point identified by the OCID.
240
240
 
@@ -124,7 +124,7 @@ def get_dedicated_vantage_points(apm_domain_id: Optional[str] = None,
124
124
  status: Optional[str] = None,
125
125
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedVantagePointsResult:
126
126
  """
127
- This data source provides the list of Dedicated Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
127
+ This data source provides the list of Dedicated Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
128
128
 
129
129
  Returns a list of dedicated vantage points.
130
130
 
@@ -170,7 +170,7 @@ def get_dedicated_vantage_points_output(apm_domain_id: Optional[pulumi.Input[str
170
170
  status: Optional[pulumi.Input[Optional[str]]] = None,
171
171
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDedicatedVantagePointsResult]:
172
172
  """
173
- This data source provides the list of Dedicated Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
173
+ This data source provides the list of Dedicated Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
174
174
 
175
175
  Returns a list of dedicated vantage points.
176
176
 
@@ -372,7 +372,7 @@ def get_monitor(apm_domain_id: Optional[str] = None,
372
372
  monitor_id: Optional[str] = None,
373
373
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMonitorResult:
374
374
  """
375
- This data source provides details about a specific Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.
375
+ This data source provides details about a specific Monitor resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
376
376
 
377
377
  Gets the configuration of the monitor identified by the OCID.
378
378
 
@@ -429,7 +429,7 @@ def get_monitor_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
429
429
  monitor_id: Optional[pulumi.Input[str]] = None,
430
430
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMonitorResult]:
431
431
  """
432
- This data source provides details about a specific Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.
432
+ This data source provides details about a specific Monitor resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
433
433
 
434
434
  Gets the configuration of the monitor identified by the OCID.
435
435
 
@@ -167,7 +167,7 @@ def get_monitors(apm_domain_id: Optional[str] = None,
167
167
  vantage_point: Optional[str] = None,
168
168
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMonitorsResult:
169
169
  """
170
- This data source provides the list of Monitors in Oracle Cloud Infrastructure Apm Synthetics service.
170
+ This data source provides the list of Monitors in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
171
171
 
172
172
  Returns a list of monitors.
173
173
 
@@ -233,7 +233,7 @@ def get_monitors_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
233
233
  vantage_point: Optional[pulumi.Input[Optional[str]]] = None,
234
234
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMonitorsResult]:
235
235
  """
236
- This data source provides the list of Monitors in Oracle Cloud Infrastructure Apm Synthetics service.
236
+ This data source provides the list of Monitors in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
237
237
 
238
238
  Returns a list of monitors.
239
239
 
@@ -180,7 +180,7 @@ def get_on_premise_vantage_point(apm_domain_id: Optional[str] = None,
180
180
  on_premise_vantage_point_id: Optional[str] = None,
181
181
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnPremiseVantagePointResult:
182
182
  """
183
- This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
183
+ This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
184
184
 
185
185
  Gets the details of the On-premise vantage point identified by the OCID.
186
186
 
@@ -221,7 +221,7 @@ def get_on_premise_vantage_point_output(apm_domain_id: Optional[pulumi.Input[str
221
221
  on_premise_vantage_point_id: Optional[pulumi.Input[str]] = None,
222
222
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnPremiseVantagePointResult]:
223
223
  """
224
- This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
224
+ This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
225
225
 
226
226
  Gets the details of the On-premise vantage point identified by the OCID.
227
227
 
@@ -319,7 +319,7 @@ def get_on_premise_vantage_point_worker(apm_domain_id: Optional[str] = None,
319
319
  worker_id: Optional[str] = None,
320
320
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnPremiseVantagePointWorkerResult:
321
321
  """
322
- This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure Apm Synthetics service.
322
+ This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
323
323
 
324
324
  Gets the details of the worker identified by the OCID.
325
325
 
@@ -376,7 +376,7 @@ def get_on_premise_vantage_point_worker_output(apm_domain_id: Optional[pulumi.In
376
376
  worker_id: Optional[pulumi.Input[str]] = None,
377
377
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnPremiseVantagePointWorkerResult]:
378
378
  """
379
- This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure Apm Synthetics service.
379
+ This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
380
380
 
381
381
  Gets the details of the worker identified by the OCID.
382
382
 
@@ -144,7 +144,7 @@ def get_on_premise_vantage_point_workers(apm_domain_id: Optional[str] = None,
144
144
  status: Optional[str] = None,
145
145
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnPremiseVantagePointWorkersResult:
146
146
  """
147
- This data source provides the list of On Premise Vantage Point Workers in Oracle Cloud Infrastructure Apm Synthetics service.
147
+ This data source provides the list of On Premise Vantage Point Workers in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
148
148
 
149
149
  Returns a list of workers.
150
150
 
@@ -200,7 +200,7 @@ def get_on_premise_vantage_point_workers_output(apm_domain_id: Optional[pulumi.I
200
200
  status: Optional[pulumi.Input[Optional[str]]] = None,
201
201
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnPremiseVantagePointWorkersResult]:
202
202
  """
203
- This data source provides the list of On Premise Vantage Point Workers in Oracle Cloud Infrastructure Apm Synthetics service.
203
+ This data source provides the list of On Premise Vantage Point Workers in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
204
204
 
205
205
  Returns a list of workers.
206
206
 
@@ -111,7 +111,7 @@ def get_on_premise_vantage_points(apm_domain_id: Optional[str] = None,
111
111
  name: Optional[str] = None,
112
112
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnPremiseVantagePointsResult:
113
113
  """
114
- This data source provides the list of On Premise Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
114
+ This data source provides the list of On Premise Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
115
115
 
116
116
  Returns a list of On-premise vantage points.
117
117
 
@@ -152,7 +152,7 @@ def get_on_premise_vantage_points_output(apm_domain_id: Optional[pulumi.Input[st
152
152
  name: Optional[pulumi.Input[Optional[str]]] = None,
153
153
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnPremiseVantagePointsResult]:
154
154
  """
155
- This data source provides the list of On Premise Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
155
+ This data source provides the list of On Premise Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
156
156
 
157
157
  Returns a list of On-premise vantage points.
158
158
 
@@ -139,7 +139,7 @@ def get_result(apm_domain_id: Optional[str] = None,
139
139
  vantage_point: Optional[str] = None,
140
140
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResultResult:
141
141
  """
142
- This data source provides details about a specific Result resource in Oracle Cloud Infrastructure Apm Synthetics service.
142
+ This data source provides details about a specific Result resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
143
143
 
144
144
  Gets the results for a specific execution of a monitor identified by OCID. The results are in a HAR file, Screenshot, Console Log or Network details.
145
145
 
@@ -192,7 +192,7 @@ def get_result_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
192
192
  vantage_point: Optional[pulumi.Input[str]] = None,
193
193
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetResultResult]:
194
194
  """
195
- This data source provides details about a specific Result resource in Oracle Cloud Infrastructure Apm Synthetics service.
195
+ This data source provides details about a specific Result resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
196
196
 
197
197
  Gets the results for a specific execution of a monitor identified by OCID. The results are in a HAR file, Screenshot, Console Log or Network details.
198
198
 
@@ -216,7 +216,7 @@ def get_script(apm_domain_id: Optional[str] = None,
216
216
  script_id: Optional[str] = None,
217
217
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetScriptResult:
218
218
  """
219
- This data source provides details about a specific Script resource in Oracle Cloud Infrastructure Apm Synthetics service.
219
+ This data source provides details about a specific Script resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
220
220
 
221
221
  Gets the configuration of the script identified by the OCID.
222
222
 
@@ -260,7 +260,7 @@ def get_script_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
260
260
  script_id: Optional[pulumi.Input[str]] = None,
261
261
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetScriptResult]:
262
262
  """
263
- This data source provides details about a specific Script resource in Oracle Cloud Infrastructure Apm Synthetics service.
263
+ This data source provides details about a specific Script resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
264
264
 
265
265
  Gets the configuration of the script identified by the OCID.
266
266
 
@@ -111,7 +111,7 @@ def get_scripts(apm_domain_id: Optional[str] = None,
111
111
  filters: Optional[Sequence[Union['GetScriptsFilterArgs', 'GetScriptsFilterArgsDict']]] = None,
112
112
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetScriptsResult:
113
113
  """
114
- This data source provides the list of Scripts in Oracle Cloud Infrastructure Apm Synthetics service.
114
+ This data source provides the list of Scripts in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
115
115
 
116
116
  Returns a list of scripts.
117
117
 
@@ -152,7 +152,7 @@ def get_scripts_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
152
152
  filters: Optional[pulumi.Input[Optional[Sequence[Union['GetScriptsFilterArgs', 'GetScriptsFilterArgsDict']]]]] = None,
153
153
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetScriptsResult]:
154
154
  """
155
- This data source provides the list of Scripts in Oracle Cloud Infrastructure Apm Synthetics service.
155
+ This data source provides the list of Scripts in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
156
156
 
157
157
  Returns a list of scripts.
158
158
 
@@ -100,7 +100,7 @@ def get_vantage_point(apm_domain_id: Optional[str] = None,
100
100
  name: Optional[str] = None,
101
101
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVantagePointResult:
102
102
  """
103
- This data source provides details about a specific Public Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
103
+ This data source provides details about a specific Public Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
104
104
 
105
105
  Returns a list of public vantage points.
106
106
 
@@ -138,7 +138,7 @@ def get_vantage_point_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
138
138
  name: Optional[pulumi.Input[Optional[str]]] = None,
139
139
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVantagePointResult]:
140
140
  """
141
- This data source provides details about a specific Public Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
141
+ This data source provides details about a specific Public Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
142
142
 
143
143
  Returns a list of public vantage points.
144
144
 
@@ -111,7 +111,7 @@ def get_vantage_points(apm_domain_id: Optional[str] = None,
111
111
  name: Optional[str] = None,
112
112
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVantagePointsResult:
113
113
  """
114
- This data source provides the list of Public Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
114
+ This data source provides the list of Public Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
115
115
 
116
116
  Returns a list of public vantage points.
117
117
 
@@ -152,7 +152,7 @@ def get_vantage_points_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
152
152
  name: Optional[pulumi.Input[Optional[str]]] = None,
153
153
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVantagePointsResult]:
154
154
  """
155
- This data source provides the list of Public Vantage Points in Oracle Cloud Infrastructure Apm Synthetics service.
155
+ This data source provides the list of Public Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
156
156
 
157
157
  Returns a list of public vantage points.
158
158
 
@@ -318,7 +318,7 @@ class OnPremiseVantagePoint(pulumi.CustomResource):
318
318
  type: Optional[pulumi.Input[str]] = None,
319
319
  __props__=None):
320
320
  """
321
- This resource provides the On Premise Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
321
+ This resource provides the On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
322
322
 
323
323
  Registers a new On-premise vantage point.
324
324
 
@@ -369,7 +369,7 @@ class OnPremiseVantagePoint(pulumi.CustomResource):
369
369
  args: OnPremiseVantagePointArgs,
370
370
  opts: Optional[pulumi.ResourceOptions] = None):
371
371
  """
372
- This resource provides the On Premise Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service.
372
+ This resource provides the On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
373
373
 
374
374
  Registers a new On-premise vantage point.
375
375
 
@@ -592,7 +592,7 @@ class OnPremiseVantagePointWorker(pulumi.CustomResource):
592
592
  worker_type: Optional[pulumi.Input[str]] = None,
593
593
  __props__=None):
594
594
  """
595
- This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure Apm Synthetics service.
595
+ This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
596
596
 
597
597
  Registers a new worker.
598
598
 
@@ -653,7 +653,7 @@ class OnPremiseVantagePointWorker(pulumi.CustomResource):
653
653
  args: OnPremiseVantagePointWorkerArgs,
654
654
  opts: Optional[pulumi.ResourceOptions] = None):
655
655
  """
656
- This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure Apm Synthetics service.
656
+ This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
657
657
 
658
658
  Registers a new worker.
659
659
 
@@ -381,7 +381,7 @@ class Script(pulumi.CustomResource):
381
381
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptParameterArgs', 'ScriptParameterArgsDict']]]]] = None,
382
382
  __props__=None):
383
383
  """
384
- This resource provides the Script resource in Oracle Cloud Infrastructure Apm Synthetics service.
384
+ This resource provides the Script resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
385
385
 
386
386
  Creates a new script.
387
387
 
@@ -436,7 +436,7 @@ class Script(pulumi.CustomResource):
436
436
  args: ScriptArgs,
437
437
  opts: Optional[pulumi.ResourceOptions] = None):
438
438
  """
439
- This resource provides the Script resource in Oracle Cloud Infrastructure Apm Synthetics service.
439
+ This resource provides the Script resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).
440
440
 
441
441
  Creates a new script.
442
442
 
@@ -45,6 +45,8 @@ from .exadata_infrastructure_storage import *
45
45
  from .exadata_iorm_config import *
46
46
  from .exadb_vm_cluster import *
47
47
  from .exascale_db_storage_vault import *
48
+ from .execution_action import *
49
+ from .execution_window import *
48
50
  from .external_container_database import *
49
51
  from .external_container_database_management import *
50
52
  from .external_container_databases_stack_monitoring import *
@@ -154,6 +156,10 @@ from .get_exadb_vm_cluster_updates import *
154
156
  from .get_exadb_vm_clusters import *
155
157
  from .get_exascale_db_storage_vault import *
156
158
  from .get_exascale_db_storage_vaults import *
159
+ from .get_execution_action import *
160
+ from .get_execution_actions import *
161
+ from .get_execution_window import *
162
+ from .get_execution_windows import *
157
163
  from .get_external_container_database import *
158
164
  from .get_external_container_databases import *
159
165
  from .get_external_database_connector import *
@@ -176,6 +182,16 @@ from .get_oneoff_patch import *
176
182
  from .get_oneoff_patches import *
177
183
  from .get_pluggable_database import *
178
184
  from .get_pluggable_databases import *
185
+ from .get_scheduled_action import *
186
+ from .get_scheduled_action_params import *
187
+ from .get_scheduled_actions import *
188
+ from .get_scheduling_plan import *
189
+ from .get_scheduling_plans import *
190
+ from .get_scheduling_policies import *
191
+ from .get_scheduling_policy import *
192
+ from .get_scheduling_policy_recommended_scheduled_actions import *
193
+ from .get_scheduling_policy_scheduling_window import *
194
+ from .get_scheduling_policy_scheduling_windows import *
179
195
  from .get_system_versions import *
180
196
  from .get_vm_cluster import *
181
197
  from .get_vm_cluster_network import *
@@ -198,6 +214,10 @@ from .pluggable_database import *
198
214
  from .pluggable_database_managements_management import *
199
215
  from .pluggable_databases_local_clone import *
200
216
  from .pluggable_databases_remote_clone import *
217
+ from .scheduled_action import *
218
+ from .scheduling_plan import *
219
+ from .scheduling_policy import *
220
+ from .scheduling_policy_scheduling_window import *
201
221
  from .vm_cluster import *
202
222
  from .vm_cluster_add_virtual_network import *
203
223
  from .vm_cluster_network import *