oci 2.14.0 → 2.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (894) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -2
  3. data/lib/oci.rb +5 -0
  4. data/lib/oci/ai_anomaly_detection/ai_anomaly_detection.rb +76 -0
  5. data/lib/oci/ai_anomaly_detection/anomaly_detection_client.rb +2054 -0
  6. data/lib/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.rb +658 -0
  7. data/lib/oci/ai_anomaly_detection/models/action_type.rb +14 -0
  8. data/lib/oci/ai_anomaly_detection/models/ai_private_endpoint.rb +350 -0
  9. data/lib/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.rb +150 -0
  10. data/lib/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.rb +312 -0
  11. data/lib/oci/ai_anomaly_detection/models/anomaly.rb +210 -0
  12. data/lib/oci/ai_anomaly_detection/models/anomaly_detect_result.rb +154 -0
  13. data/lib/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.rb +154 -0
  14. data/lib/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.rb +154 -0
  15. data/lib/oci/ai_anomaly_detection/models/change_model_compartment_details.rb +156 -0
  16. data/lib/oci/ai_anomaly_detection/models/change_project_compartment_details.rb +156 -0
  17. data/lib/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.rb +231 -0
  18. data/lib/oci/ai_anomaly_detection/models/create_data_asset_details.rb +253 -0
  19. data/lib/oci/ai_anomaly_detection/models/create_model_details.rb +238 -0
  20. data/lib/oci/ai_anomaly_detection/models/create_project_details.rb +211 -0
  21. data/lib/oci/ai_anomaly_detection/models/data_asset.rb +340 -0
  22. data/lib/oci/ai_anomaly_detection/models/data_asset_collection.rb +150 -0
  23. data/lib/oci/ai_anomaly_detection/models/data_asset_summary.rb +341 -0
  24. data/lib/oci/ai_anomaly_detection/models/data_item.rb +160 -0
  25. data/lib/oci/ai_anomaly_detection/models/data_source_details.rb +193 -0
  26. data/lib/oci/ai_anomaly_detection/models/data_source_details_atp.rb +302 -0
  27. data/lib/oci/ai_anomaly_detection/models/data_source_details_influx.rb +214 -0
  28. data/lib/oci/ai_anomaly_detection/models/data_source_details_object_storage.rb +186 -0
  29. data/lib/oci/ai_anomaly_detection/models/data_source_type.rb +12 -0
  30. data/lib/oci/ai_anomaly_detection/models/detect_anomalies_details.rb +202 -0
  31. data/lib/oci/ai_anomaly_detection/models/detection_result_item.rb +184 -0
  32. data/lib/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.rb +192 -0
  33. data/lib/oci/ai_anomaly_detection/models/influx_details.rb +191 -0
  34. data/lib/oci/ai_anomaly_detection/models/influx_details_v1v8.rb +176 -0
  35. data/lib/oci/ai_anomaly_detection/models/influx_details_v2v0.rb +176 -0
  36. data/lib/oci/ai_anomaly_detection/models/influx_version.rb +11 -0
  37. data/lib/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.rb +179 -0
  38. data/lib/oci/ai_anomaly_detection/models/model.rb +358 -0
  39. data/lib/oci/ai_anomaly_detection/models/model_collection.rb +150 -0
  40. data/lib/oci/ai_anomaly_detection/models/model_summary.rb +305 -0
  41. data/lib/oci/ai_anomaly_detection/models/model_training_details.rb +186 -0
  42. data/lib/oci/ai_anomaly_detection/models/model_training_results.rb +215 -0
  43. data/lib/oci/ai_anomaly_detection/models/operation_status.rb +16 -0
  44. data/lib/oci/ai_anomaly_detection/models/operation_type.rb +16 -0
  45. data/lib/oci/ai_anomaly_detection/models/per_signal_details.rb +267 -0
  46. data/lib/oci/ai_anomaly_detection/models/project.rb +302 -0
  47. data/lib/oci/ai_anomaly_detection/models/project_collection.rb +150 -0
  48. data/lib/oci/ai_anomaly_detection/models/project_summary.rb +279 -0
  49. data/lib/oci/ai_anomaly_detection/models/row_reduction_details.rb +205 -0
  50. data/lib/oci/ai_anomaly_detection/models/sort_order.rb +11 -0
  51. data/lib/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.rb +202 -0
  52. data/lib/oci/ai_anomaly_detection/models/update_data_asset_details.rb +196 -0
  53. data/lib/oci/ai_anomaly_detection/models/update_model_details.rb +196 -0
  54. data/lib/oci/ai_anomaly_detection/models/update_project_details.rb +196 -0
  55. data/lib/oci/ai_anomaly_detection/models/work_request.rb +312 -0
  56. data/lib/oci/ai_anomaly_detection/models/work_request_error.rb +173 -0
  57. data/lib/oci/ai_anomaly_detection/models/work_request_error_collection.rb +150 -0
  58. data/lib/oci/ai_anomaly_detection/models/work_request_log_entry.rb +160 -0
  59. data/lib/oci/ai_anomaly_detection/models/work_request_log_entry_collection.rb +150 -0
  60. data/lib/oci/ai_anomaly_detection/models/work_request_resource.rb +219 -0
  61. data/lib/oci/ai_anomaly_detection/models/work_request_summary.rb +312 -0
  62. data/lib/oci/ai_anomaly_detection/models/work_request_summary_collection.rb +150 -0
  63. data/lib/oci/ai_anomaly_detection/util.rb +3 -0
  64. data/lib/oci/api_client.rb +4 -4
  65. data/lib/oci/application_migration/application_migration.rb +2 -0
  66. data/lib/oci/application_migration/models/authorization_details.rb +2 -1
  67. data/lib/oci/application_migration/models/import_manifest.rb +208 -0
  68. data/lib/oci/application_migration/models/import_source_details.rb +192 -0
  69. data/lib/oci/application_migration/models/source_details.rb +2 -0
  70. data/lib/oci/application_migration/models/source_summary.rb +1 -0
  71. data/lib/oci/application_migration/models/source_types.rb +2 -1
  72. data/lib/oci/artifacts/artifacts.rb +15 -0
  73. data/lib/oci/artifacts/artifacts_client.rb +1104 -147
  74. data/lib/oci/artifacts/artifacts_client_composite_operations.rb +211 -0
  75. data/lib/oci/artifacts/models/change_repository_compartment_details.rb +155 -0
  76. data/lib/oci/artifacts/models/container_repository.rb +18 -4
  77. data/lib/oci/artifacts/models/container_repository_summary.rb +18 -4
  78. data/lib/oci/artifacts/models/create_generic_repository_details.rb +169 -0
  79. data/lib/oci/artifacts/models/create_repository_details.rb +259 -0
  80. data/lib/oci/artifacts/models/generic_artifact.rb +337 -0
  81. data/lib/oci/artifacts/models/generic_artifact_collection.rb +150 -0
  82. data/lib/oci/artifacts/models/generic_artifact_summary.rb +316 -0
  83. data/lib/oci/artifacts/models/generic_repository.rb +181 -0
  84. data/lib/oci/artifacts/models/generic_repository_summary.rb +181 -0
  85. data/lib/oci/artifacts/models/repository.rb +338 -0
  86. data/lib/oci/{usage_api/models/schedule_report_collection.rb → artifacts/models/repository_collection.rb} +6 -6
  87. data/lib/oci/artifacts/models/repository_summary.rb +299 -0
  88. data/lib/oci/artifacts/models/update_generic_artifact_by_path_details.rb +176 -0
  89. data/lib/oci/artifacts/models/update_generic_artifact_details.rb +176 -0
  90. data/lib/oci/artifacts/models/update_generic_repository_details.rb +161 -0
  91. data/lib/oci/artifacts/models/update_repository_details.rb +230 -0
  92. data/lib/oci/bastion/bastion.rb +48 -0
  93. data/lib/oci/bastion/bastion_client.rb +1041 -0
  94. data/lib/oci/bastion/bastion_client_composite_operations.rb +311 -0
  95. data/lib/oci/bastion/models/action_type.rb +14 -0
  96. data/lib/oci/bastion/models/bastion.rb +434 -0
  97. data/lib/oci/bastion/models/bastion_lifecycle_state.rb +15 -0
  98. data/lib/oci/bastion/models/bastion_summary.rb +348 -0
  99. data/lib/oci/bastion/models/change_bastion_compartment_details.rb +154 -0
  100. data/lib/oci/bastion/models/create_bastion_details.rb +283 -0
  101. data/lib/oci/bastion/models/create_managed_ssh_session_target_resource_details.rb +194 -0
  102. data/lib/oci/bastion/models/create_port_forwarding_session_target_resource_details.rb +180 -0
  103. data/lib/oci/bastion/models/create_session_details.rb +238 -0
  104. data/lib/oci/bastion/models/create_session_target_resource_details.rb +198 -0
  105. data/lib/oci/bastion/models/managed_ssh_session_target_resource_details.rb +208 -0
  106. data/lib/oci/bastion/models/operation_status.rb +15 -0
  107. data/lib/oci/bastion/models/operation_type.rb +14 -0
  108. data/lib/oci/bastion/models/port_forwarding_session_target_resource_details.rb +194 -0
  109. data/lib/oci/bastion/models/public_key_details.rb +154 -0
  110. data/lib/oci/bastion/models/session.rb +393 -0
  111. data/lib/oci/bastion/models/session_lifecycle_state.rb +14 -0
  112. data/lib/oci/bastion/models/session_summary.rb +303 -0
  113. data/lib/oci/bastion/models/session_type.rb +11 -0
  114. data/lib/oci/bastion/models/sort_order.rb +11 -0
  115. data/lib/oci/bastion/models/target_resource_details.rb +205 -0
  116. data/lib/oci/bastion/models/update_bastion_details.rb +215 -0
  117. data/lib/oci/bastion/models/update_session_details.rb +154 -0
  118. data/lib/oci/bastion/models/work_request.rb +309 -0
  119. data/lib/oci/bastion/models/work_request_error.rb +173 -0
  120. data/lib/oci/bastion/models/work_request_log_entry.rb +160 -0
  121. data/lib/oci/bastion/models/work_request_resource.rb +219 -0
  122. data/lib/oci/bastion/models/work_request_summary.rb +309 -0
  123. data/lib/oci/bastion/util.rb +3 -0
  124. data/lib/oci/bds/bds_client.rb +70 -77
  125. data/lib/oci/bds/bds_client_composite_operations.rb +21 -21
  126. data/lib/oci/bds/models/add_auto_scaling_configuration_details.rb +5 -5
  127. data/lib/oci/bds/models/add_block_storage_details.rb +4 -4
  128. data/lib/oci/bds/models/add_cloud_sql_details.rb +4 -5
  129. data/lib/oci/bds/models/add_worker_nodes_details.rb +3 -3
  130. data/lib/oci/bds/models/auto_scale_policy.rb +3 -3
  131. data/lib/oci/bds/models/auto_scale_policy_metric_rule.rb +2 -2
  132. data/lib/oci/bds/models/auto_scale_policy_rule.rb +2 -2
  133. data/lib/oci/bds/models/auto_scaling_configuration.rb +7 -8
  134. data/lib/oci/bds/models/auto_scaling_configuration_summary.rb +7 -8
  135. data/lib/oci/bds/models/bds_instance.rb +17 -16
  136. data/lib/oci/bds/models/bds_instance_summary.rb +14 -14
  137. data/lib/oci/bds/models/change_bds_instance_compartment_details.rb +2 -2
  138. data/lib/oci/bds/models/change_shape_details.rb +1 -1
  139. data/lib/oci/bds/models/change_shape_nodes.rb +2 -2
  140. data/lib/oci/bds/models/cloud_sql_details.rb +3 -3
  141. data/lib/oci/bds/models/cluster_details.rb +26 -13
  142. data/lib/oci/bds/models/create_bds_instance_details.rb +11 -11
  143. data/lib/oci/bds/models/create_node_details.rb +6 -6
  144. data/lib/oci/bds/models/kerberos_details.rb +2 -2
  145. data/lib/oci/bds/models/metric_threshold_rule.rb +4 -4
  146. data/lib/oci/bds/models/network_config.rb +1 -1
  147. data/lib/oci/bds/models/node.rb +15 -15
  148. data/lib/oci/bds/models/remove_auto_scaling_configuration_details.rb +2 -2
  149. data/lib/oci/bds/models/remove_cloud_sql_details.rb +2 -2
  150. data/lib/oci/bds/models/restart_node_details.rb +2 -2
  151. data/lib/oci/bds/models/update_auto_scaling_configuration_details.rb +4 -4
  152. data/lib/oci/bds/models/update_bds_instance_details.rb +5 -5
  153. data/lib/oci/bds/models/work_request.rb +9 -14
  154. data/lib/oci/bds/models/work_request_error.rb +2 -3
  155. data/lib/oci/bds/models/work_request_log_entry.rb +1 -1
  156. data/lib/oci/bds/models/work_request_resource.rb +2 -5
  157. data/lib/oci/container_engine/container_engine.rb +2 -0
  158. data/lib/oci/container_engine/container_engine_client.rb +118 -0
  159. data/lib/oci/container_engine/container_engine_client_composite_operations.rb +50 -0
  160. data/lib/oci/container_engine/models/cluster_migrate_to_native_vcn_details.rb +169 -0
  161. data/lib/oci/container_engine/models/cluster_migrate_to_native_vcn_status.rb +187 -0
  162. data/lib/oci/container_engine/models/create_node_pool_node_config_details.rb +16 -1
  163. data/lib/oci/container_engine/models/node_pool_node_config_details.rb +16 -1
  164. data/lib/oci/container_engine/models/update_node_pool_node_config_details.rb +16 -1
  165. data/lib/oci/container_engine/models/work_request.rb +1 -0
  166. data/lib/oci/container_engine/models/work_request_operation_type.rb +1 -0
  167. data/lib/oci/container_engine/models/work_request_summary.rb +1 -0
  168. data/lib/oci/core/blockstorage_client.rb +70 -1
  169. data/lib/oci/core/blockstorage_client_composite_operations.rb +41 -0
  170. data/lib/oci/core/compute_client.rb +63 -0
  171. data/lib/oci/core/compute_client_composite_operations.rb +40 -0
  172. data/lib/oci/core/core.rb +4 -0
  173. data/lib/oci/core/models/attach_boot_volume_details.rb +35 -4
  174. data/lib/oci/core/models/attach_i_scsi_volume_details.rb +35 -4
  175. data/lib/oci/core/models/block_volume_replica.rb +1 -1
  176. data/lib/oci/core/models/boot_volume_attachment.rb +41 -4
  177. data/lib/oci/core/models/boot_volume_replica.rb +1 -1
  178. data/lib/oci/core/models/copy_volume_group_backup_details.rb +196 -0
  179. data/lib/oci/core/models/create_boot_volume_details.rb +1 -1
  180. data/lib/oci/core/models/create_dhcp_details.rb +32 -4
  181. data/lib/oci/core/models/create_vlan_details.rb +11 -3
  182. data/lib/oci/core/models/create_volume_details.rb +1 -1
  183. data/lib/oci/core/models/dhcp_options.rb +38 -4
  184. data/lib/oci/core/models/emulated_volume_attachment.rb +12 -4
  185. data/lib/oci/core/models/encryption_in_transit_type.rb +11 -0
  186. data/lib/oci/core/models/i_scsi_volume_attachment.rb +64 -4
  187. data/lib/oci/core/models/image.rb +18 -1
  188. data/lib/oci/core/models/instance_agent_features.rb +2 -2
  189. data/lib/oci/core/models/instance_configuration_instance_source_via_image_details.rb +1 -1
  190. data/lib/oci/core/models/instance_source_via_image_details.rb +1 -1
  191. data/lib/oci/core/models/launch_instance_availability_config_details.rb +2 -2
  192. data/lib/oci/core/models/multipath_device.rb +180 -0
  193. data/lib/oci/core/models/paravirtualized_volume_attachment.rb +12 -4
  194. data/lib/oci/core/models/update_dhcp_details.rb +32 -4
  195. data/lib/oci/core/models/update_instance_availability_config_details.rb +1 -1
  196. data/lib/oci/core/models/update_volume_attachment_details.rb +174 -0
  197. data/lib/oci/core/models/vlan.rb +2 -1
  198. data/lib/oci/core/models/volume_attachment.rb +58 -4
  199. data/lib/oci/core/virtual_network_client.rb +7 -5
  200. data/lib/oci/data_catalog/data_catalog.rb +11 -0
  201. data/lib/oci/data_catalog/data_catalog_client.rb +599 -7
  202. data/lib/oci/data_catalog/data_catalog_client_composite_operations.rb +188 -0
  203. data/lib/oci/data_catalog/models/attribute.rb +43 -1
  204. data/lib/oci/data_catalog/models/attribute_summary.rb +33 -4
  205. data/lib/oci/data_catalog/models/change_metastore_compartment_details.rb +154 -0
  206. data/lib/oci/data_catalog/models/create_custom_property_details.rb +17 -1
  207. data/lib/oci/data_catalog/models/create_job_definition_details.rb +2 -1
  208. data/lib/oci/data_catalog/models/create_job_execution_details.rb +2 -1
  209. data/lib/oci/data_catalog/models/create_metastore_details.rb +232 -0
  210. data/lib/oci/data_catalog/models/custom_property.rb +17 -1
  211. data/lib/oci/data_catalog/models/custom_property_get_usage.rb +17 -1
  212. data/lib/oci/data_catalog/models/custom_property_summary.rb +63 -4
  213. data/lib/oci/data_catalog/models/custom_property_type_usage.rb +20 -4
  214. data/lib/oci/data_catalog/models/data_asset.rb +16 -1
  215. data/lib/oci/data_catalog/models/data_asset_export_scope.rb +172 -0
  216. data/lib/oci/data_catalog/models/data_asset_import_export_type_filter.rb +11 -0
  217. data/lib/oci/data_catalog/models/entity.rb +30 -1
  218. data/lib/oci/data_catalog/models/export_data_asset_details.rb +154 -0
  219. data/lib/oci/data_catalog/models/folder.rb +44 -1
  220. data/lib/oci/data_catalog/models/folder_summary.rb +15 -1
  221. data/lib/oci/data_catalog/models/import_data_asset_details.rb +154 -0
  222. data/lib/oci/data_catalog/models/import_data_asset_job_result.rb +235 -0
  223. data/lib/oci/data_catalog/models/job.rb +1 -0
  224. data/lib/oci/data_catalog/models/job_definition.rb +1 -0
  225. data/lib/oci/data_catalog/models/job_definition_summary.rb +1 -0
  226. data/lib/oci/data_catalog/models/job_execution.rb +1 -0
  227. data/lib/oci/data_catalog/models/job_execution_summary.rb +1 -0
  228. data/lib/oci/data_catalog/models/job_summary.rb +1 -0
  229. data/lib/oci/data_catalog/models/job_type.rb +2 -1
  230. data/lib/oci/data_catalog/models/metastore.rb +325 -0
  231. data/lib/oci/data_catalog/models/metastore_summary.rb +292 -0
  232. data/lib/oci/data_catalog/models/object_relationship.rb +233 -0
  233. data/lib/oci/data_catalog/models/search_result.rb +15 -1
  234. data/lib/oci/data_catalog/models/type_custom_property_details.rb +20 -4
  235. data/lib/oci/data_catalog/models/update_custom_property_details.rb +17 -1
  236. data/lib/oci/data_catalog/models/update_metastore_details.rb +186 -0
  237. data/lib/oci/data_flow/data_flow_client.rb +3 -0
  238. data/lib/oci/data_flow/models/application.rb +16 -1
  239. data/lib/oci/data_flow/models/application_summary.rb +16 -1
  240. data/lib/oci/data_flow/models/create_application_details.rb +16 -1
  241. data/lib/oci/data_flow/models/create_run_details.rb +17 -1
  242. data/lib/oci/data_flow/models/run.rb +16 -1
  243. data/lib/oci/data_flow/models/update_application_details.rb +16 -1
  244. data/lib/oci/data_integration/data_integration.rb +52 -0
  245. data/lib/oci/data_integration/data_integration_client.rb +766 -24
  246. data/lib/oci/data_integration/models/abstract_format_attribute.rb +19 -4
  247. data/lib/oci/data_integration/models/abstract_read_attribute.rb +3 -0
  248. data/lib/oci/data_integration/models/abstract_write_attribute.rb +7 -0
  249. data/lib/oci/data_integration/models/auth_details.rb +213 -0
  250. data/lib/oci/data_integration/models/avro_format_attribute.rb +5 -1
  251. data/lib/oci/data_integration/models/bicc_read_attributes.rb +237 -0
  252. data/lib/oci/data_integration/models/config_parameter_value.rb +18 -4
  253. data/lib/oci/data_integration/models/connection.rb +4 -0
  254. data/lib/oci/data_integration/models/connection_details.rb +5 -1
  255. data/lib/oci/data_integration/models/connection_from_amazon_s3.rb +226 -0
  256. data/lib/oci/data_integration/models/connection_from_amazon_s3_details.rb +222 -0
  257. data/lib/oci/data_integration/models/connection_from_bicc.rb +236 -0
  258. data/lib/oci/data_integration/models/connection_from_bicc_details.rb +232 -0
  259. data/lib/oci/data_integration/models/connection_summary.rb +4 -0
  260. data/lib/oci/data_integration/models/connection_summary_from_amazon_s3.rb +227 -0
  261. data/lib/oci/data_integration/models/connection_summary_from_bicc.rb +223 -0
  262. data/lib/oci/data_integration/models/connector_attribute.rb +182 -0
  263. data/lib/oci/data_integration/models/create_connection_details.rb +5 -1
  264. data/lib/oci/data_integration/models/create_connection_from_amazon_s3.rb +210 -0
  265. data/lib/oci/data_integration/models/create_connection_from_bicc.rb +220 -0
  266. data/lib/oci/data_integration/models/create_data_asset_details.rb +5 -1
  267. data/lib/oci/data_integration/models/create_data_asset_from_adwc.rb +57 -1
  268. data/lib/oci/data_integration/models/create_data_asset_from_amazon_s3.rb +207 -0
  269. data/lib/oci/data_integration/models/create_data_asset_from_atp.rb +57 -1
  270. data/lib/oci/data_integration/models/create_data_asset_from_fusion_app.rb +211 -0
  271. data/lib/oci/data_integration/models/create_schedule_details.rb +272 -0
  272. data/lib/oci/data_integration/models/create_task_details.rb +7 -1
  273. data/lib/oci/data_integration/models/create_task_from_oci_dataflow_task.rb +213 -0
  274. data/lib/oci/data_integration/models/create_task_from_rest_task.rb +348 -0
  275. data/lib/oci/data_integration/models/create_task_from_sql_task.rb +246 -0
  276. data/lib/oci/data_integration/models/create_task_run_details.rb +15 -1
  277. data/lib/oci/data_integration/models/create_task_schedule_details.rb +476 -0
  278. data/lib/oci/data_integration/models/csv_format_attribute.rb +5 -15
  279. data/lib/oci/data_integration/models/data_asset.rb +4 -0
  280. data/lib/oci/data_integration/models/data_asset_from_amazon_s3.rb +223 -0
  281. data/lib/oci/data_integration/models/data_asset_from_fusion_app.rb +227 -0
  282. data/lib/oci/data_integration/models/data_asset_summary.rb +4 -0
  283. data/lib/oci/data_integration/models/data_asset_summary_from_amazon_s3.rb +219 -0
  284. data/lib/oci/data_integration/models/data_asset_summary_from_fusion_app.rb +223 -0
  285. data/lib/oci/data_integration/models/data_entity.rb +2 -0
  286. data/lib/oci/data_integration/models/data_entity_details.rb +3 -1
  287. data/lib/oci/data_integration/models/data_entity_from_data_store.rb +454 -0
  288. data/lib/oci/data_integration/models/data_entity_from_data_store_entity_details.rb +443 -0
  289. data/lib/oci/data_integration/models/data_entity_summary.rb +2 -0
  290. data/lib/oci/data_integration/models/data_entity_summary_from_data_store.rb +454 -0
  291. data/lib/oci/{usage_api/models/create_schedule_report_details.rb → data_integration/models/dataflow_application.rb} +20 -33
  292. data/lib/oci/data_integration/models/dependent_object_summary.rb +17 -4
  293. data/lib/oci/data_integration/models/enriched_entity.rb +31 -4
  294. data/lib/oci/data_integration/models/expression_operator.rb +250 -0
  295. data/lib/oci/data_integration/models/external_storage.rb +221 -0
  296. data/lib/oci/data_integration/models/json_format_attribute.rb +5 -1
  297. data/lib/oci/data_integration/models/lookup.rb +274 -0
  298. data/lib/oci/data_integration/models/native_shape_field.rb +3 -3
  299. data/lib/oci/data_integration/models/object_metadata.rb +17 -4
  300. data/lib/oci/data_integration/models/object_storage_write_attribute.rb +162 -0
  301. data/lib/oci/data_integration/models/object_storage_write_attributes.rb +164 -0
  302. data/lib/oci/data_integration/models/operator.rb +4 -1
  303. data/lib/oci/data_integration/models/oracle_adwc_write_attributes.rb +22 -12
  304. data/lib/oci/data_integration/models/oracle_atp_write_attributes.rb +22 -12
  305. data/lib/oci/data_integration/models/oracle_read_attributes.rb +13 -2
  306. data/lib/oci/data_integration/models/oracle_write_attributes.rb +13 -2
  307. data/lib/oci/data_integration/models/parameter.rb +4 -3
  308. data/lib/oci/data_integration/models/parent_reference.rb +18 -4
  309. data/lib/oci/data_integration/models/parquet_format_attribute.rb +162 -0
  310. data/lib/oci/data_integration/models/patch_change_summary.rb +3 -0
  311. data/lib/oci/data_integration/models/patch_object_metadata.rb +3 -0
  312. data/lib/oci/data_integration/models/published_object.rb +3 -0
  313. data/lib/oci/data_integration/models/published_object_summary.rb +3 -0
  314. data/lib/oci/data_integration/models/schedule_summary.rb +295 -0
  315. data/lib/oci/data_integration/models/schedule_summary_collection.rb +150 -0
  316. data/lib/oci/data_integration/models/script.rb +202 -0
  317. data/lib/oci/data_integration/models/shape_field.rb +3 -3
  318. data/lib/oci/data_integration/models/task.rb +23 -4
  319. data/lib/oci/data_integration/models/task_from_data_loader_task_details.rb +5 -1
  320. data/lib/oci/data_integration/models/task_from_integration_task_details.rb +5 -1
  321. data/lib/oci/data_integration/models/task_from_oci_dataflow_task_details.rb +225 -0
  322. data/lib/oci/data_integration/models/task_from_pipeline_task_details.rb +5 -1
  323. data/lib/oci/data_integration/models/task_from_rest_task_details.rb +379 -0
  324. data/lib/oci/data_integration/models/task_from_sql_task_details.rb +265 -0
  325. data/lib/oci/data_integration/models/task_operator.rb +3 -0
  326. data/lib/oci/data_integration/models/task_run.rb +62 -1
  327. data/lib/oci/data_integration/models/task_run_details.rb +3 -0
  328. data/lib/oci/data_integration/models/task_run_summary.rb +3 -0
  329. data/lib/oci/data_integration/models/task_schedule_summary.rb +532 -0
  330. data/lib/oci/data_integration/models/task_schedule_summary_collection.rb +150 -0
  331. data/lib/oci/data_integration/models/task_summary.rb +6 -0
  332. data/lib/oci/data_integration/models/task_summary_from_oci_dataflow_task.rb +221 -0
  333. data/lib/oci/data_integration/models/task_summary_from_rest_task.rb +356 -0
  334. data/lib/oci/data_integration/models/task_summary_from_sql_task.rb +254 -0
  335. data/lib/oci/data_integration/models/update_connection_details.rb +5 -1
  336. data/lib/oci/data_integration/models/update_connection_from_amazon_s3.rb +214 -0
  337. data/lib/oci/data_integration/models/update_connection_from_bicc.rb +224 -0
  338. data/lib/oci/data_integration/models/update_data_asset_details.rb +5 -1
  339. data/lib/oci/data_integration/models/update_data_asset_from_adwc.rb +57 -1
  340. data/lib/oci/data_integration/models/update_data_asset_from_amazon_s3.rb +198 -0
  341. data/lib/oci/data_integration/models/update_data_asset_from_atp.rb +57 -1
  342. data/lib/oci/data_integration/models/update_data_asset_from_fusion_app.rb +202 -0
  343. data/lib/oci/data_integration/models/update_schedule_details.rb +299 -0
  344. data/lib/oci/data_integration/models/update_task_details.rb +7 -1
  345. data/lib/oci/data_integration/models/update_task_from_oci_dataflow_task.rb +217 -0
  346. data/lib/oci/data_integration/models/update_task_from_rest_task.rb +366 -0
  347. data/lib/oci/data_integration/models/update_task_from_sql_task.rb +250 -0
  348. data/lib/oci/data_integration/models/update_task_run_details.rb +15 -1
  349. data/lib/oci/data_integration/models/update_task_schedule_details.rb +490 -0
  350. data/lib/oci/data_safe/data_safe.rb +18 -0
  351. data/lib/oci/data_safe/data_safe_client.rb +731 -17
  352. data/lib/oci/data_safe/data_safe_client_composite_operations.rb +247 -0
  353. data/lib/oci/{usage_api/models/update_schedule_report_details.rb → data_safe/models/activate_target_database_details.rb} +10 -14
  354. data/lib/oci/data_safe/models/autonomous_database_details.rb +166 -0
  355. data/lib/oci/data_safe/models/change_target_database_compartment_details.rb +154 -0
  356. data/lib/oci/data_safe/models/connection_option.rb +194 -0
  357. data/lib/oci/data_safe/models/create_target_database_details.rb +261 -0
  358. data/lib/oci/data_safe/models/credentials.rb +164 -0
  359. data/lib/oci/data_safe/models/data_safe_private_endpoint.rb +20 -4
  360. data/lib/oci/data_safe/models/data_safe_private_endpoint_summary.rb +54 -4
  361. data/lib/oci/data_safe/models/database_cloud_service_details.rb +194 -0
  362. data/lib/oci/data_safe/models/database_details.rb +231 -0
  363. data/lib/oci/data_safe/models/database_type.rb +12 -0
  364. data/lib/oci/data_safe/models/infrastructure_type.rb +13 -0
  365. data/lib/oci/data_safe/models/installed_database_details.rb +209 -0
  366. data/lib/oci/data_safe/models/on_prem_connector.rb +17 -1
  367. data/lib/oci/data_safe/models/on_prem_connector_summary.rb +17 -1
  368. data/lib/oci/data_safe/models/on_premise_connector.rb +162 -0
  369. data/lib/oci/data_safe/models/private_endpoint.rb +163 -0
  370. data/lib/oci/data_safe/models/service_list.rb +4 -0
  371. data/lib/oci/data_safe/models/target_database.rb +369 -0
  372. data/lib/oci/data_safe/models/target_database_lifecycle_state.rb +17 -0
  373. data/lib/oci/data_safe/models/target_database_summary.rb +359 -0
  374. data/lib/oci/data_safe/models/tls_config.rb +244 -0
  375. data/lib/oci/data_safe/models/update_target_database_details.rb +246 -0
  376. data/lib/oci/data_safe/models/work_request.rb +6 -0
  377. data/lib/oci/data_safe/models/work_request_summary.rb +6 -0
  378. data/lib/oci/data_science/data_science.rb +3 -0
  379. data/lib/oci/data_science/data_science_client.rb +16 -9
  380. data/lib/oci/data_science/data_science_client_composite_operations.rb +4 -4
  381. data/lib/oci/data_science/models/create_model_details.rb +60 -4
  382. data/lib/oci/data_science/models/create_model_provenance_details.rb +18 -4
  383. data/lib/oci/data_science/models/metadata.rb +197 -0
  384. data/lib/oci/data_science/models/model.rb +60 -4
  385. data/lib/oci/data_science/models/model_deployment.rb +1 -1
  386. data/lib/oci/data_science/models/model_provenance.rb +18 -4
  387. data/lib/oci/data_science/models/notebook_session_configuration_details.rb +17 -4
  388. data/lib/oci/data_science/models/notebook_session_shape_config_details.rb +169 -0
  389. data/lib/oci/data_science/models/notebook_session_shape_series.rb +13 -0
  390. data/lib/oci/data_science/models/notebook_session_shape_summary.rb +41 -4
  391. data/lib/oci/data_science/models/update_model_details.rb +32 -4
  392. data/lib/oci/data_science/models/update_model_provenance_details.rb +18 -4
  393. data/lib/oci/database/database.rb +17 -0
  394. data/lib/oci/database/database_client.rb +1228 -46
  395. data/lib/oci/database/database_client_composite_operations.rb +416 -0
  396. data/lib/oci/database/models/autonomous_container_database_dataguard_association.rb +2 -2
  397. data/lib/oci/database/models/autonomous_database.rb +213 -6
  398. data/lib/oci/database/models/autonomous_database_backup.rb +32 -4
  399. data/lib/oci/database/models/autonomous_database_backup_summary.rb +32 -4
  400. data/lib/oci/database/models/autonomous_database_dataguard_association.rb +2 -2
  401. data/lib/oci/{usage_api/models/schedule_report.rb → database/models/autonomous_database_key_history_entry.rb} +24 -36
  402. data/lib/oci/database/models/autonomous_database_standby_summary.rb +19 -4
  403. data/lib/oci/database/models/autonomous_database_summary.rb +213 -6
  404. data/lib/oci/database/models/cloud_exadata_infrastructure.rb +21 -4
  405. data/lib/oci/database/models/cloud_exadata_infrastructure_summary.rb +21 -4
  406. data/lib/oci/database/models/configure_autonomous_database_vault_key_details.rb +182 -0
  407. data/lib/oci/database/models/create_autonomous_database_base.rb +118 -7
  408. data/lib/oci/database/models/create_autonomous_database_clone_details.rb +21 -1
  409. data/lib/oci/database/models/create_autonomous_database_details.rb +24 -4
  410. data/lib/oci/database/models/create_autonomous_database_from_backup_details.rb +21 -1
  411. data/lib/oci/database/models/create_autonomous_database_from_backup_timestamp_details.rb +21 -1
  412. data/lib/oci/database/models/create_cloud_exadata_infrastructure_details.rb +18 -4
  413. data/lib/oci/database/models/create_cross_region_autonomous_database_data_guard_details.rb +283 -0
  414. data/lib/oci/database/models/create_database_software_image_details.rb +18 -4
  415. data/lib/oci/database/models/create_db_home_base.rb +18 -4
  416. data/lib/oci/database/models/create_db_home_with_db_system_id_details.rb +5 -1
  417. data/lib/oci/database/models/create_db_home_with_db_system_id_from_backup_details.rb +5 -1
  418. data/lib/oci/database/models/create_db_home_with_db_system_id_from_database_details.rb +5 -1
  419. data/lib/oci/database/models/create_db_home_with_vm_cluster_id_details.rb +5 -1
  420. data/lib/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.rb +5 -1
  421. data/lib/oci/database/models/create_exadata_infrastructure_details.rb +29 -1
  422. data/lib/oci/database/models/create_pluggable_database_details.rb +233 -0
  423. data/lib/oci/database/models/create_refreshable_autonomous_database_clone_details.rb +21 -1
  424. data/lib/oci/database/models/customer_contact.rb +2 -2
  425. data/lib/oci/database/models/db_home_from_agent_resource_id.rb +380 -0
  426. data/lib/oci/database/models/db_node.rb +69 -1
  427. data/lib/oci/database/models/db_node_summary.rb +69 -1
  428. data/lib/oci/database/models/db_system_shape_summary.rb +72 -2
  429. data/lib/oci/database/models/exadata_infrastructure.rb +57 -1
  430. data/lib/oci/database/models/exadata_infrastructure_summary.rb +57 -1
  431. data/lib/oci/database/models/local_clone_pluggable_database_details.rb +185 -0
  432. data/lib/oci/database/models/maintenance_run.rb +4 -1
  433. data/lib/oci/database/models/maintenance_run_summary.rb +4 -1
  434. data/lib/oci/database/models/pluggable_database.rb +358 -0
  435. data/lib/oci/database/models/pluggable_database_connection_strings.rb +183 -0
  436. data/lib/oci/database/models/pluggable_database_summary.rb +361 -0
  437. data/lib/oci/database/models/remote_clone_pluggable_database_details.rb +213 -0
  438. data/lib/oci/database/models/scan_details.rb +1 -1
  439. data/lib/oci/database/models/update_autonomous_database_details.rb +64 -5
  440. data/lib/oci/database/models/update_cloud_exadata_infrastructure_details.rb +18 -4
  441. data/lib/oci/database/models/update_data_guard_association_details.rb +237 -0
  442. data/lib/oci/database/models/update_exadata_infrastructure_details.rb +15 -1
  443. data/lib/oci/database/models/update_external_macs_connector_details.rb +2 -1
  444. data/lib/oci/database/models/update_maintenance_run_details.rb +4 -1
  445. data/lib/oci/database/models/update_pluggable_database_details.rb +177 -0
  446. data/lib/oci/database/models/update_vm_cluster_details.rb +14 -1
  447. data/lib/oci/database/models/vm_cluster.rb +15 -2
  448. data/lib/oci/database/models/vm_cluster_summary.rb +15 -2
  449. data/lib/oci/database/models/vm_cluster_update.rb +346 -0
  450. data/lib/oci/database/models/vm_cluster_update_details.rb +183 -0
  451. data/lib/oci/database/models/vm_cluster_update_history_entry.rb +308 -0
  452. data/lib/oci/database/models/vm_cluster_update_history_entry_summary.rb +311 -0
  453. data/lib/oci/database/models/vm_cluster_update_summary.rb +349 -0
  454. data/lib/oci/database_management/database_management.rb +25 -0
  455. data/lib/oci/database_management/db_management_client.rb +1467 -97
  456. data/lib/oci/database_management/models/awr_db_collection.rb +175 -0
  457. data/lib/oci/database_management/models/awr_db_cpu_usage_collection.rb +217 -0
  458. data/lib/oci/database_management/models/awr_db_cpu_usage_summary.rb +164 -0
  459. data/lib/oci/database_management/models/awr_db_metric_collection.rb +175 -0
  460. data/lib/oci/database_management/models/awr_db_metric_summary.rb +202 -0
  461. data/lib/oci/database_management/models/awr_db_parameter_change_collection.rb +175 -0
  462. data/lib/oci/database_management/models/awr_db_parameter_change_summary.rb +255 -0
  463. data/lib/oci/database_management/models/awr_db_parameter_collection.rb +175 -0
  464. data/lib/oci/database_management/models/awr_db_parameter_summary.rb +238 -0
  465. data/lib/oci/database_management/models/awr_db_report.rb +205 -0
  466. data/lib/oci/database_management/models/awr_db_snapshot_collection.rb +175 -0
  467. data/lib/oci/database_management/models/awr_db_snapshot_range_collection.rb +175 -0
  468. data/lib/oci/database_management/models/awr_db_snapshot_range_summary.rb +331 -0
  469. data/lib/oci/database_management/models/awr_db_snapshot_summary.rb +244 -0
  470. data/lib/oci/database_management/models/awr_db_sql_report.rb +204 -0
  471. data/lib/oci/database_management/models/awr_db_summary.rb +334 -0
  472. data/lib/oci/database_management/models/awr_db_sysstat_collection.rb +175 -0
  473. data/lib/oci/database_management/models/awr_db_sysstat_summary.rb +216 -0
  474. data/lib/oci/database_management/models/awr_db_top_wait_event_collection.rb +175 -0
  475. data/lib/oci/database_management/models/awr_db_top_wait_event_summary.rb +178 -0
  476. data/lib/oci/database_management/models/awr_db_wait_event_bucket_collection.rb +189 -0
  477. data/lib/oci/database_management/models/awr_db_wait_event_bucket_summary.rb +160 -0
  478. data/lib/oci/database_management/models/awr_db_wait_event_collection.rb +175 -0
  479. data/lib/oci/database_management/models/awr_db_wait_event_summary.rb +223 -0
  480. data/lib/oci/database_management/models/awr_query_result.rb +254 -0
  481. data/lib/oci/devops/devops.rb +177 -0
  482. data/lib/oci/devops/devops_client.rb +2344 -0
  483. data/lib/oci/devops/devops_client_composite_operations.rb +974 -0
  484. data/lib/oci/devops/models/absolute_wait_criteria.rb +162 -0
  485. data/lib/oci/devops/models/absolute_wait_criteria_summary.rb +162 -0
  486. data/lib/oci/devops/models/action_type.rb +15 -0
  487. data/lib/oci/devops/models/approval_action.rb +184 -0
  488. data/lib/oci/devops/models/approval_policy.rb +189 -0
  489. data/lib/oci/devops/models/approve_deployment_details.rb +187 -0
  490. data/lib/oci/devops/models/automated_deploy_stage_rollback_policy.rb +145 -0
  491. data/lib/oci/devops/models/backend_set_ip_collection.rb +150 -0
  492. data/lib/oci/devops/models/cancel_deployment_details.rb +150 -0
  493. data/lib/oci/devops/models/change_project_compartment_details.rb +154 -0
  494. data/lib/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.rb +173 -0
  495. data/lib/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.rb +173 -0
  496. data/lib/oci/devops/models/compute_instance_group_by_ids_selector.rb +162 -0
  497. data/lib/oci/devops/models/compute_instance_group_by_query_selector.rb +168 -0
  498. data/lib/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.rb +189 -0
  499. data/lib/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.rb +173 -0
  500. data/lib/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.rb +173 -0
  501. data/lib/oci/devops/models/compute_instance_group_deploy_environment.rb +210 -0
  502. data/lib/oci/devops/models/compute_instance_group_deploy_environment_summary.rb +210 -0
  503. data/lib/oci/devops/models/compute_instance_group_deploy_stage.rb +299 -0
  504. data/lib/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.rb +173 -0
  505. data/lib/oci/devops/models/compute_instance_group_deploy_stage_summary.rb +299 -0
  506. data/lib/oci/devops/models/compute_instance_group_failure_policy.rb +191 -0
  507. data/lib/oci/devops/models/compute_instance_group_failure_policy_by_count.rb +162 -0
  508. data/lib/oci/devops/models/compute_instance_group_failure_policy_by_percentage.rb +162 -0
  509. data/lib/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.rb +166 -0
  510. data/lib/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.rb +166 -0
  511. data/lib/oci/devops/models/compute_instance_group_rollout_policy.rb +207 -0
  512. data/lib/oci/devops/models/compute_instance_group_selector.rb +191 -0
  513. data/lib/oci/devops/models/compute_instance_group_selector_collection.rb +150 -0
  514. data/lib/oci/devops/models/count_based_approval_policy.rb +164 -0
  515. data/lib/oci/devops/models/create_compute_instance_group_deploy_environment_details.rb +182 -0
  516. data/lib/oci/devops/models/create_compute_instance_group_deploy_stage_details.rb +267 -0
  517. data/lib/oci/devops/models/create_deploy_artifact_details.rb +248 -0
  518. data/lib/oci/devops/models/create_deploy_environment_details.rb +238 -0
  519. data/lib/oci/devops/models/create_deploy_pipeline_deployment_details.rb +190 -0
  520. data/lib/oci/devops/models/create_deploy_pipeline_details.rb +219 -0
  521. data/lib/oci/devops/models/create_deploy_pipeline_redeployment_details.rb +178 -0
  522. data/lib/oci/devops/models/create_deploy_stage_details.rb +256 -0
  523. data/lib/oci/devops/models/create_deployment_details.rb +228 -0
  524. data/lib/oci/devops/models/create_function_deploy_environment_details.rb +182 -0
  525. data/lib/oci/devops/models/create_function_deploy_stage_details.rb +238 -0
  526. data/lib/oci/devops/models/create_invoke_function_deploy_stage_details.rb +228 -0
  527. data/lib/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.rb +255 -0
  528. data/lib/oci/devops/models/create_manual_approval_deploy_stage_details.rb +186 -0
  529. data/lib/oci/devops/models/create_oke_cluster_deploy_environment_details.rb +182 -0
  530. data/lib/oci/devops/models/create_oke_deploy_stage_details.rb +224 -0
  531. data/lib/oci/devops/models/create_project_details.rb +216 -0
  532. data/lib/oci/devops/models/create_single_deploy_stage_deployment_details.rb +204 -0
  533. data/lib/oci/devops/models/create_wait_deploy_stage_details.rb +186 -0
  534. data/lib/oci/devops/models/deploy_artifact.rb +407 -0
  535. data/lib/oci/devops/models/deploy_artifact_collection.rb +150 -0
  536. data/lib/oci/devops/models/deploy_artifact_override_argument.rb +174 -0
  537. data/lib/oci/devops/models/deploy_artifact_override_argument_collection.rb +150 -0
  538. data/lib/oci/devops/models/deploy_artifact_source.rb +193 -0
  539. data/lib/oci/devops/models/deploy_artifact_summary.rb +342 -0
  540. data/lib/oci/devops/models/deploy_environment.rb +376 -0
  541. data/lib/oci/devops/models/deploy_environment_collection.rb +150 -0
  542. data/lib/oci/devops/models/deploy_environment_summary.rb +332 -0
  543. data/lib/oci/devops/models/deploy_pipeline.rb +365 -0
  544. data/lib/oci/{usage_api/models/saved_schedule_report.rb → devops/models/deploy_pipeline_artifact.rb} +27 -39
  545. data/lib/oci/devops/models/deploy_pipeline_artifact_collection.rb +150 -0
  546. data/lib/oci/devops/models/deploy_pipeline_collection.rb +150 -0
  547. data/lib/oci/devops/models/deploy_pipeline_deployment.rb +213 -0
  548. data/lib/oci/devops/models/deploy_pipeline_deployment_summary.rb +201 -0
  549. data/lib/oci/devops/models/deploy_pipeline_environment.rb +182 -0
  550. data/lib/oci/devops/models/deploy_pipeline_environment_collection.rb +150 -0
  551. data/lib/oci/devops/models/deploy_pipeline_parameter.rb +174 -0
  552. data/lib/oci/devops/models/deploy_pipeline_parameter_collection.rb +150 -0
  553. data/lib/oci/devops/models/deploy_pipeline_redeployment.rb +230 -0
  554. data/lib/oci/devops/models/deploy_pipeline_redeployment_summary.rb +218 -0
  555. data/lib/oci/devops/models/deploy_pipeline_stage.rb +168 -0
  556. data/lib/oci/devops/models/deploy_pipeline_stage_collection.rb +150 -0
  557. data/lib/oci/devops/models/deploy_pipeline_summary.rb +299 -0
  558. data/lib/oci/devops/models/deploy_stage.rb +411 -0
  559. data/lib/oci/devops/models/deploy_stage_collection.rb +150 -0
  560. data/lib/oci/devops/models/deploy_stage_execution_progress.rb +303 -0
  561. data/lib/oci/devops/models/deploy_stage_execution_progress_details.rb +192 -0
  562. data/lib/oci/devops/models/deploy_stage_execution_step.rb +211 -0
  563. data/lib/oci/{usage_api/models/schedule_report_summary.rb → devops/models/deploy_stage_predecessor.rb} +7 -20
  564. data/lib/oci/devops/models/deploy_stage_predecessor_collection.rb +150 -0
  565. data/lib/oci/devops/models/deploy_stage_rollback_policy.rb +191 -0
  566. data/lib/oci/devops/models/deploy_stage_summary.rb +363 -0
  567. data/lib/oci/devops/models/deployment.rb +445 -0
  568. data/lib/oci/devops/models/deployment_argument.rb +160 -0
  569. data/lib/oci/devops/models/deployment_argument_collection.rb +150 -0
  570. data/lib/oci/devops/models/deployment_collection.rb +150 -0
  571. data/lib/oci/devops/models/deployment_execution_progress.rb +182 -0
  572. data/lib/oci/devops/models/deployment_summary.rb +363 -0
  573. data/lib/oci/devops/models/function_deploy_environment.rb +210 -0
  574. data/lib/oci/devops/models/function_deploy_environment_summary.rb +210 -0
  575. data/lib/oci/devops/models/function_deploy_stage.rb +270 -0
  576. data/lib/oci/devops/models/function_deploy_stage_execution_progress.rb +173 -0
  577. data/lib/oci/devops/models/function_deploy_stage_summary.rb +270 -0
  578. data/lib/oci/devops/models/generic_deploy_artifact_source.rb +190 -0
  579. data/lib/oci/devops/models/inline_deploy_artifact_source.rb +162 -0
  580. data/lib/oci/devops/models/invoke_function_deploy_stage.rb +260 -0
  581. data/lib/oci/devops/models/invoke_function_deploy_stage_execution_progress.rb +173 -0
  582. data/lib/oci/devops/models/invoke_function_deploy_stage_summary.rb +260 -0
  583. data/lib/oci/devops/models/load_balancer_config.rb +184 -0
  584. data/lib/oci/devops/models/load_balancer_traffic_shift_deploy_stage.rb +308 -0
  585. data/lib/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.rb +173 -0
  586. data/lib/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.rb +287 -0
  587. data/lib/oci/devops/models/load_balancer_traffic_shift_rollout_policy.rb +184 -0
  588. data/lib/oci/devops/models/manual_approval_deploy_stage.rb +218 -0
  589. data/lib/oci/devops/models/manual_approval_deploy_stage_execution_progress.rb +189 -0
  590. data/lib/oci/devops/models/manual_approval_deploy_stage_summary.rb +218 -0
  591. data/lib/oci/devops/models/no_deploy_stage_rollback_policy.rb +145 -0
  592. data/lib/oci/devops/models/notification_config.rb +154 -0
  593. data/lib/oci/devops/models/ocir_deploy_artifact_source.rb +176 -0
  594. data/lib/oci/devops/models/oke_cluster_deploy_environment.rb +210 -0
  595. data/lib/oci/devops/models/oke_cluster_deploy_environment_summary.rb +210 -0
  596. data/lib/oci/devops/models/oke_deploy_stage.rb +256 -0
  597. data/lib/oci/devops/models/oke_deploy_stage_execution_progress.rb +173 -0
  598. data/lib/oci/devops/models/oke_deploy_stage_summary.rb +256 -0
  599. data/lib/oci/devops/models/operation_status.rb +15 -0
  600. data/lib/oci/devops/models/operation_type.rb +28 -0
  601. data/lib/oci/devops/models/project.rb +330 -0
  602. data/lib/oci/devops/models/project_collection.rb +150 -0
  603. data/lib/oci/devops/models/project_summary.rb +292 -0
  604. data/lib/oci/devops/models/run_pipeline_deploy_stage_execution_progress.rb +173 -0
  605. data/lib/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.rb +173 -0
  606. data/lib/oci/devops/models/single_deploy_stage_deployment.rb +230 -0
  607. data/lib/oci/devops/models/single_deploy_stage_deployment_summary.rb +218 -0
  608. data/lib/oci/devops/models/sort_order.rb +11 -0
  609. data/lib/oci/devops/models/update_compute_instance_group_deploy_environment_details.rb +177 -0
  610. data/lib/oci/devops/models/update_compute_instance_group_deploy_stage_details.rb +262 -0
  611. data/lib/oci/devops/models/update_deploy_artifact_details.rb +233 -0
  612. data/lib/oci/devops/models/update_deploy_environment_details.rb +224 -0
  613. data/lib/oci/devops/models/update_deploy_pipeline_deployment_details.rb +157 -0
  614. data/lib/oci/devops/models/update_deploy_pipeline_details.rb +205 -0
  615. data/lib/oci/devops/models/update_deploy_pipeline_redeployment_details.rb +157 -0
  616. data/lib/oci/devops/models/update_deploy_stage_details.rb +241 -0
  617. data/lib/oci/devops/models/update_deployment_details.rb +214 -0
  618. data/lib/oci/devops/models/update_function_deploy_environment_details.rb +178 -0
  619. data/lib/oci/devops/models/update_function_deploy_stage_details.rb +234 -0
  620. data/lib/oci/devops/models/update_invoke_function_deploy_stage_details.rb +224 -0
  621. data/lib/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.rb +247 -0
  622. data/lib/oci/devops/models/update_manual_approval_deploy_stage_details.rb +181 -0
  623. data/lib/oci/devops/models/update_oke_cluster_deploy_environment_details.rb +178 -0
  624. data/lib/oci/devops/models/update_oke_deploy_stage_details.rb +220 -0
  625. data/lib/oci/devops/models/update_project_details.rb +191 -0
  626. data/lib/oci/devops/models/update_single_deploy_stage_deployment_details.rb +157 -0
  627. data/lib/oci/devops/models/update_wait_deploy_stage_details.rb +181 -0
  628. data/lib/oci/devops/models/wait_criteria.rb +189 -0
  629. data/lib/oci/devops/models/wait_criteria_summary.rb +189 -0
  630. data/lib/oci/devops/models/wait_deploy_stage.rb +218 -0
  631. data/lib/oci/devops/models/wait_deploy_stage_execution_progress.rb +173 -0
  632. data/lib/oci/devops/models/wait_deploy_stage_summary.rb +218 -0
  633. data/lib/oci/devops/models/work_request.rb +314 -0
  634. data/lib/oci/devops/models/work_request_collection.rb +150 -0
  635. data/lib/oci/devops/models/work_request_error.rb +171 -0
  636. data/lib/oci/devops/models/work_request_error_collection.rb +150 -0
  637. data/lib/oci/devops/models/work_request_log_entry.rb +160 -0
  638. data/lib/oci/devops/models/work_request_log_entry_collection.rb +150 -0
  639. data/lib/oci/devops/models/work_request_resource.rb +216 -0
  640. data/lib/oci/devops/models/work_request_summary.rb +314 -0
  641. data/lib/oci/devops/util.rb +3 -0
  642. data/lib/oci/dns/dns.rb +1 -1
  643. data/lib/oci/dns/dns_client.rb +306 -75
  644. data/lib/oci/dns/models/create_resolver_endpoint_details.rb +2 -2
  645. data/lib/oci/dns/models/create_resolver_vnic_endpoint_details.rb +5 -5
  646. data/lib/oci/dns/models/external_master.rb +1 -12
  647. data/lib/oci/dns/models/resolver.rb +4 -4
  648. data/lib/oci/dns/models/resolver_endpoint.rb +2 -2
  649. data/lib/oci/dns/models/resolver_endpoint_summary.rb +2 -2
  650. data/lib/oci/dns/models/resolver_forward_rule.rb +2 -2
  651. data/lib/oci/dns/models/resolver_forward_rule_details.rb +2 -2
  652. data/lib/oci/dns/models/resolver_rule.rb +2 -2
  653. data/lib/oci/dns/models/resolver_rule_details.rb +2 -2
  654. data/lib/oci/dns/models/resolver_summary.rb +4 -4
  655. data/lib/oci/dns/models/resolver_vnic_endpoint.rb +2 -1
  656. data/lib/oci/dns/models/tsig_key.rb +4 -0
  657. data/lib/oci/dns/models/tsig_key_summary.rb +4 -0
  658. data/lib/oci/dns/models/update_resolver_vnic_endpoint_details.rb +2 -1
  659. data/lib/oci/dns/models/zone.rb +20 -4
  660. data/lib/oci/dns/models/zone_summary.rb +1 -0
  661. data/lib/oci/dns/models/zone_transfer_server.rb +192 -0
  662. data/lib/oci/email/email.rb +23 -0
  663. data/lib/oci/email/email_client.rb +1139 -139
  664. data/lib/oci/email/email_client_composite_operations.rb +346 -0
  665. data/lib/oci/email/models/action_type.rb +14 -0
  666. data/lib/oci/email/models/change_email_domain_compartment_details.rb +156 -0
  667. data/lib/oci/email/models/create_dkim_details.rb +225 -0
  668. data/lib/oci/email/models/create_email_domain_details.rb +220 -0
  669. data/lib/oci/email/models/create_sender_details.rb +2 -0
  670. data/lib/oci/email/models/dkim.rb +399 -0
  671. data/lib/oci/email/models/dkim_collection.rb +150 -0
  672. data/lib/oci/email/models/dkim_summary.rb +307 -0
  673. data/lib/oci/email/models/email_domain.rb +333 -0
  674. data/lib/oci/email/models/email_domain_collection.rb +150 -0
  675. data/lib/oci/email/models/email_domain_summary.rb +291 -0
  676. data/lib/oci/email/models/operation_status.rb +15 -0
  677. data/lib/oci/email/models/operation_type.rb +17 -0
  678. data/lib/oci/email/models/sender.rb +21 -4
  679. data/lib/oci/email/models/sender_summary.rb +5 -3
  680. data/lib/oci/email/models/sort_order.rb +11 -0
  681. data/lib/oci/email/models/suppression.rb +77 -7
  682. data/lib/oci/email/models/suppression_summary.rb +3 -3
  683. data/lib/oci/email/models/update_dkim_details.rb +189 -0
  684. data/lib/oci/email/models/update_email_domain_details.rb +189 -0
  685. data/lib/oci/email/models/update_sender_details.rb +2 -0
  686. data/lib/oci/email/models/work_request.rb +312 -0
  687. data/lib/oci/email/models/work_request_error.rb +172 -0
  688. data/lib/oci/email/models/work_request_error_collection.rb +150 -0
  689. data/lib/oci/email/models/work_request_log_entry.rb +160 -0
  690. data/lib/oci/email/models/work_request_log_entry_collection.rb +150 -0
  691. data/lib/oci/email/models/work_request_resource.rb +219 -0
  692. data/lib/oci/email/models/work_request_summary.rb +312 -0
  693. data/lib/oci/email/models/work_request_summary_collection.rb +150 -0
  694. data/lib/oci/generic_artifacts_content/generic_artifacts_content.rb +20 -0
  695. data/lib/oci/generic_artifacts_content/generic_artifacts_content_client.rb +410 -0
  696. data/lib/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.rb +25 -0
  697. data/lib/oci/generic_artifacts_content/models/generic_artifact.rb +337 -0
  698. data/lib/oci/generic_artifacts_content/util.rb +3 -0
  699. data/lib/oci/jms/java_management_service_client.rb +1520 -0
  700. data/lib/oci/jms/java_management_service_client_composite_operations.rb +273 -0
  701. data/lib/oci/jms/jms.rb +63 -0
  702. data/lib/oci/jms/models/action_type.rb +14 -0
  703. data/lib/oci/jms/models/application_sort_by.rb +15 -0
  704. data/lib/oci/jms/models/application_usage.rb +292 -0
  705. data/lib/oci/jms/models/application_usage_collection.rb +150 -0
  706. data/lib/oci/jms/models/change_fleet_compartment_details.rb +154 -0
  707. data/lib/oci/jms/models/create_fleet_details.rb +210 -0
  708. data/lib/oci/jms/models/fleet.rb +358 -0
  709. data/lib/oci/jms/models/fleet_agent_configuration.rb +214 -0
  710. data/lib/oci/jms/models/fleet_agent_os_configuration.rb +171 -0
  711. data/lib/oci/jms/models/fleet_collection.rb +150 -0
  712. data/lib/oci/jms/models/fleet_summary.rb +359 -0
  713. data/lib/oci/jms/models/installation_sort_by.rb +17 -0
  714. data/lib/oci/jms/models/installation_usage.rb +306 -0
  715. data/lib/oci/jms/models/installation_usage_collection.rb +150 -0
  716. data/lib/oci/jms/models/jre_sort_by.rb +17 -0
  717. data/lib/oci/jms/models/jre_usage.rb +276 -0
  718. data/lib/oci/jms/models/jre_usage_collection.rb +150 -0
  719. data/lib/oci/jms/models/lifecycle_state.rb +15 -0
  720. data/lib/oci/jms/models/managed_instance_sort_by.rb +14 -0
  721. data/lib/oci/jms/models/managed_instance_type.rb +10 -0
  722. data/lib/oci/jms/models/managed_instance_usage.rb +308 -0
  723. data/lib/oci/jms/models/managed_instance_usage_collection.rb +150 -0
  724. data/lib/oci/jms/models/operation_status.rb +15 -0
  725. data/lib/oci/jms/models/operation_type.rb +13 -0
  726. data/lib/oci/jms/models/request_summarized_application_usage_details.rb +362 -0
  727. data/lib/oci/jms/models/request_summarized_installation_usage_details.rb +335 -0
  728. data/lib/oci/jms/models/request_summarized_jre_usage_details.rb +321 -0
  729. data/lib/oci/jms/models/request_summarized_managed_instance_usage_details.rb +358 -0
  730. data/lib/oci/jms/models/sort_by.rb +11 -0
  731. data/lib/oci/jms/models/sort_order.rb +11 -0
  732. data/lib/oci/jms/models/summarize_application_usage_fields.rb +12 -0
  733. data/lib/oci/jms/models/summarize_installation_usage_fields.rb +11 -0
  734. data/lib/oci/jms/models/summarize_jre_usage_fields.rb +12 -0
  735. data/lib/oci/jms/models/summarize_managed_instance_usage_fields.rb +12 -0
  736. data/lib/oci/jms/models/update_fleet_agent_configuration_details.rb +196 -0
  737. data/lib/oci/jms/models/update_fleet_details.rb +196 -0
  738. data/lib/oci/jms/models/work_request.rb +306 -0
  739. data/lib/oci/jms/models/work_request_collection.rb +150 -0
  740. data/lib/oci/jms/models/work_request_error.rb +173 -0
  741. data/lib/oci/jms/models/work_request_error_collection.rb +150 -0
  742. data/lib/oci/jms/models/work_request_log_entry.rb +160 -0
  743. data/lib/oci/jms/models/work_request_log_entry_collection.rb +150 -0
  744. data/lib/oci/jms/models/work_request_resource.rb +219 -0
  745. data/lib/oci/jms/util.rb +3 -0
  746. data/lib/oci/limits/limits_client.rb +12 -12
  747. data/lib/oci/limits/models/limit_definition_summary.rb +22 -7
  748. data/lib/oci/limits/models/quota.rb +6 -6
  749. data/lib/oci/limits/models/quota_summary.rb +3 -3
  750. data/lib/oci/limits/models/resource_availability.rb +7 -7
  751. data/lib/oci/limits/models/service_summary.rb +1 -1
  752. data/lib/oci/limits/quotas_client.rb +9 -9
  753. data/lib/oci/log_analytics/log_analytics.rb +1 -0
  754. data/lib/oci/log_analytics/log_analytics_client.rb +60 -0
  755. data/lib/oci/log_analytics/models/abstract_command_descriptor.rb +2 -0
  756. data/lib/oci/log_analytics/models/compare_command_descriptor.rb +166 -0
  757. data/lib/oci/log_analytics/models/cron_schedule.rb +5 -1
  758. data/lib/oci/log_analytics/models/fixed_frequency_schedule.rb +5 -1
  759. data/lib/oci/log_analytics/models/namespace.rb +20 -4
  760. data/lib/oci/log_analytics/models/namespace_summary.rb +20 -4
  761. data/lib/oci/log_analytics/models/schedule.rb +20 -4
  762. data/lib/oci/log_analytics/models/scheduled_task.rb +54 -1
  763. data/lib/oci/log_analytics/models/scheduled_task_summary.rb +15 -1
  764. data/lib/oci/log_analytics/models/standard_task.rb +9 -1
  765. data/lib/oci/log_analytics/models/stream_action.rb +40 -4
  766. data/lib/oci/loggingingestion/logging_client.rb +1 -1
  767. data/lib/oci/loggingingestion/models/log_entry.rb +1 -1
  768. data/lib/oci/loggingingestion/models/log_entry_batch.rb +2 -2
  769. data/lib/oci/management_dashboard/dashx_apis_client.rb +16 -6
  770. data/lib/oci/management_dashboard/dashx_apis_client_composite_operations.rb +238 -0
  771. data/lib/oci/management_dashboard/management_dashboard.rb +1 -0
  772. data/lib/oci/management_dashboard/models/create_management_dashboard_details.rb +15 -1
  773. data/lib/oci/management_dashboard/models/create_management_saved_search_details.rb +15 -1
  774. data/lib/oci/management_dashboard/models/management_dashboard.rb +59 -2
  775. data/lib/oci/management_dashboard/models/management_dashboard_export_details.rb +4 -36
  776. data/lib/oci/management_dashboard/models/management_dashboard_for_import_export_details.rb +15 -1
  777. data/lib/oci/management_dashboard/models/management_dashboard_summary.rb +12 -2
  778. data/lib/oci/management_dashboard/models/management_dashboard_tile_details.rb +18 -4
  779. data/lib/oci/management_dashboard/models/management_saved_search.rb +47 -1
  780. data/lib/oci/management_dashboard/models/management_saved_search_for_import_details.rb +18 -4
  781. data/lib/oci/management_dashboard/models/management_saved_search_summary.rb +15 -1
  782. data/lib/oci/management_dashboard/models/update_management_dashboard_details.rb +15 -1
  783. data/lib/oci/management_dashboard/models/update_management_saved_search_details.rb +15 -1
  784. data/lib/oci/marketplace/account_client.rb +220 -0
  785. data/lib/oci/marketplace/account_client_composite_operations.rb +25 -0
  786. data/lib/oci/marketplace/marketplace.rb +8 -0
  787. data/lib/oci/marketplace/marketplace_client.rb +86 -24
  788. data/lib/oci/marketplace/marketplace_client_composite_operations.rb +4 -4
  789. data/lib/oci/marketplace/models/change_publication_compartment_details.rb +2 -2
  790. data/lib/oci/marketplace/models/create_image_publication_package.rb +2 -2
  791. data/lib/oci/marketplace/models/create_publication_details.rb +10 -8
  792. data/lib/oci/marketplace/models/create_publication_package.rb +4 -4
  793. data/lib/oci/marketplace/models/eula.rb +2 -2
  794. data/lib/oci/marketplace/models/free_text_search_details.rb +162 -0
  795. data/lib/oci/marketplace/models/image_publication_package.rb +3 -3
  796. data/lib/oci/marketplace/models/launch_eligibility.rb +178 -0
  797. data/lib/oci/marketplace/models/listing.rb +2 -2
  798. data/lib/oci/marketplace/models/listing_package_summary.rb +10 -1
  799. data/lib/oci/marketplace/models/listing_summary.rb +2 -2
  800. data/lib/oci/marketplace/models/matching_context_type_enum.rb +11 -0
  801. data/lib/oci/marketplace/models/operating_system.rb +2 -2
  802. data/lib/oci/marketplace/models/orchestration_publication_package.rb +3 -3
  803. data/lib/oci/marketplace/models/publication.rb +11 -11
  804. data/lib/oci/marketplace/models/publication_package.rb +3 -3
  805. data/lib/oci/marketplace/models/publication_package_summary.rb +1 -1
  806. data/lib/oci/marketplace/models/publication_summary.rb +9 -9
  807. data/lib/oci/marketplace/models/publisher_summary.rb +1 -1
  808. data/lib/oci/marketplace/models/search_details_type_enum.rb +11 -0
  809. data/lib/oci/marketplace/models/search_listings_details.rb +207 -0
  810. data/lib/oci/marketplace/models/structured_search_details.rb +162 -0
  811. data/lib/oci/marketplace/models/text_based_eula.rb +2 -2
  812. data/lib/oci/marketplace/models/third_party_paid_listing_eligibility.rb +210 -0
  813. data/lib/oci/marketplace/models/update_publication_details.rb +5 -5
  814. data/lib/oci/mysql/db_backups_client.rb +76 -0
  815. data/lib/oci/mysql/db_backups_client_composite_operations.rb +50 -0
  816. data/lib/oci/mysql/models/change_backup_compartment_details.rb +154 -0
  817. data/lib/oci/mysql/mysql.rb +1 -0
  818. data/lib/oci/oce/models/create_oce_instance_details.rb +3 -1
  819. data/lib/oci/oce/models/license_type.rb +3 -1
  820. data/lib/oci/oce/models/oce_instance.rb +19 -1
  821. data/lib/oci/oce/models/oce_instance_summary.rb +22 -4
  822. data/lib/oci/oce/models/update_oce_instance_details.rb +3 -1
  823. data/lib/oci/oce/oce_instance_client.rb +2 -0
  824. data/lib/oci/ocvp/models/create_esxi_host_details.rb +3 -1
  825. data/lib/oci/ocvp/models/create_sddc_details.rb +21 -2
  826. data/lib/oci/ocvp/models/downgrade_hcx_details.rb +154 -0
  827. data/lib/oci/ocvp/models/esxi_host.rb +2 -0
  828. data/lib/oci/ocvp/models/esxi_host_summary.rb +2 -0
  829. data/lib/oci/ocvp/models/hcx_license_status.rb +13 -0
  830. data/lib/oci/ocvp/models/hcx_license_summary.rb +201 -0
  831. data/lib/oci/ocvp/models/operation_types.rb +5 -1
  832. data/lib/oci/ocvp/models/sddc.rb +86 -2
  833. data/lib/oci/ocvp/models/supported_sku_summary.rb +2 -1
  834. data/lib/oci/ocvp/models/supported_sku_summary_collection.rb +3 -1
  835. data/lib/oci/ocvp/models/update_esxi_host_details.rb +3 -1
  836. data/lib/oci/ocvp/models/work_request.rb +4 -0
  837. data/lib/oci/ocvp/ocvp.rb +3 -0
  838. data/lib/oci/ocvp/sddc_client.rb +291 -2
  839. data/lib/oci/ocvp/sddc_client_composite_operations.rb +201 -0
  840. data/lib/oci/opsi/models/autonomous_database_configuration_summary.rb +198 -0
  841. data/lib/oci/opsi/models/create_enterprise_manager_bridge_details.rb +2 -2
  842. data/lib/oci/opsi/models/create_host_insight_details.rb +1 -1
  843. data/lib/oci/opsi/models/create_macs_managed_external_host_insight_details.rb +1 -1
  844. data/lib/oci/opsi/models/database_configuration_collection.rb +150 -0
  845. data/lib/oci/opsi/models/database_configuration_summary.rb +323 -0
  846. data/lib/oci/opsi/models/database_details.rb +1 -0
  847. data/lib/oci/opsi/models/database_insight.rb +1 -0
  848. data/lib/oci/opsi/models/database_insight_summary.rb +1 -0
  849. data/lib/oci/opsi/models/em_managed_external_database_configuration_summary.rb +222 -0
  850. data/lib/oci/opsi/models/enable_host_insight_details.rb +1 -1
  851. data/lib/oci/opsi/models/enable_macs_managed_external_host_insight_details.rb +1 -1
  852. data/lib/oci/opsi/models/enterprise_manager_bridge.rb +16 -1
  853. data/lib/oci/opsi/models/enterprise_manager_bridge_summary.rb +16 -1
  854. data/lib/oci/opsi/models/host_insight.rb +1 -0
  855. data/lib/oci/opsi/models/host_insight_summary.rb +1 -0
  856. data/lib/oci/opsi/models/lifecycle_state.rb +2 -1
  857. data/lib/oci/opsi/models/macs_managed_external_database_configuration_summary.rb +236 -0
  858. data/lib/oci/opsi/models/macs_managed_external_host_insight.rb +1 -1
  859. data/lib/oci/opsi/models/macs_managed_external_host_insight_summary.rb +1 -1
  860. data/lib/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.rb +15 -1
  861. data/lib/oci/opsi/models/tablespace_usage_trend_aggregation.rb +1 -1
  862. data/lib/oci/opsi/operations_insights_client.rb +631 -25
  863. data/lib/oci/opsi/opsi.rb +5 -0
  864. data/lib/oci/regions.rb +3 -0
  865. data/lib/oci/secrets/secrets_client.rb +71 -1
  866. data/lib/oci/tenant_manager_control_plane/models/activate_order_details.rb +154 -0
  867. data/lib/oci/tenant_manager_control_plane/models/operation_type.rb +5 -1
  868. data/lib/oci/tenant_manager_control_plane/models/order.rb +206 -0
  869. data/lib/oci/{dns/models/tsig.rb → tenant_manager_control_plane/models/sku.rb} +22 -25
  870. data/lib/oci/tenant_manager_control_plane/models/subscription_info.rb +202 -0
  871. data/lib/oci/tenant_manager_control_plane/models/work_request.rb +4 -0
  872. data/lib/oci/tenant_manager_control_plane/models/work_request_summary.rb +4 -0
  873. data/lib/oci/tenant_manager_control_plane/orders_client.rb +225 -0
  874. data/lib/oci/tenant_manager_control_plane/orders_client_composite_operations.rb +76 -0
  875. data/lib/oci/tenant_manager_control_plane/tenant_manager_control_plane.rb +6 -0
  876. data/lib/oci/usage_api/models/cost_analysis_ui.rb +2 -2
  877. data/lib/oci/usage_api/models/create_custom_table_details.rb +10 -10
  878. data/lib/oci/usage_api/models/create_query_details.rb +1 -1
  879. data/lib/oci/usage_api/models/custom_table.rb +13 -13
  880. data/lib/oci/usage_api/models/custom_table_summary.rb +1 -1
  881. data/lib/oci/usage_api/models/dimension.rb +1 -1
  882. data/lib/oci/usage_api/models/forecast.rb +3 -3
  883. data/lib/oci/usage_api/models/query_definition.rb +1 -1
  884. data/lib/oci/usage_api/models/query_summary.rb +1 -1
  885. data/lib/oci/usage_api/models/report_query.rb +11 -5
  886. data/lib/oci/usage_api/models/request_summarized_usages_details.rb +11 -5
  887. data/lib/oci/usage_api/models/saved_custom_table.rb +6 -6
  888. data/lib/oci/usage_api/models/update_custom_table_details.rb +1 -1
  889. data/lib/oci/usage_api/models/update_query_details.rb +1 -1
  890. data/lib/oci/usage_api/models/usage_summary.rb +1 -1
  891. data/lib/oci/usage_api/usage_api.rb +0 -6
  892. data/lib/oci/usage_api/usageapi_client.rb +332 -1
  893. data/lib/oci/version.rb +1 -1
  894. metadata +512 -16
@@ -1076,6 +1076,72 @@ module OCI
1076
1076
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
1077
1077
 
1078
1078
 
1079
+ # Endpoint to create a new schedule
1080
+ # @param [String] workspace_id The workspace ID.
1081
+ # @param [String] application_key The application key.
1082
+ # @param [OCI::DataIntegration::Models::CreateScheduleDetails] create_schedule_details Request body parameter for Schedule details
1083
+ # @param [Hash] opts the optional parameters
1084
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
1085
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
1086
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
1087
+ # you need to contact Oracle about a particular request,
1088
+ # please provide the request ID.
1089
+ #
1090
+ # @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again.
1091
+ #
1092
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Schedule Schedule}
1093
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/create_schedule.rb.html) to see an example of how to use create_schedule API.
1094
+ def create_schedule(workspace_id, application_key, create_schedule_details, opts = {})
1095
+ logger.debug 'Calling operation DataIntegrationClient#create_schedule.' if logger
1096
+
1097
+ raise "Missing the required parameter 'workspace_id' when calling create_schedule." if workspace_id.nil?
1098
+ raise "Missing the required parameter 'application_key' when calling create_schedule." if application_key.nil?
1099
+ raise "Missing the required parameter 'create_schedule_details' when calling create_schedule." if create_schedule_details.nil?
1100
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
1101
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
1102
+
1103
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/schedules'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s)
1104
+ operation_signing_strategy = :standard
1105
+
1106
+ # rubocop:disable Style/NegatedIf
1107
+ # Query Params
1108
+ query_params = {}
1109
+
1110
+ # Header Params
1111
+ header_params = {}
1112
+ header_params[:accept] = 'application/json'
1113
+ header_params[:'content-type'] = 'application/json'
1114
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
1115
+ header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
1116
+ # rubocop:enable Style/NegatedIf
1117
+ header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
1118
+
1119
+ post_body = @api_client.object_to_http_body(create_schedule_details)
1120
+
1121
+ # rubocop:disable Metrics/BlockLength
1122
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#create_schedule') do
1123
+ @api_client.call_api(
1124
+ :POST,
1125
+ path,
1126
+ endpoint,
1127
+ header_params: header_params,
1128
+ query_params: query_params,
1129
+ operation_signing_strategy: operation_signing_strategy,
1130
+ body: post_body,
1131
+ return_type: 'OCI::DataIntegration::Models::Schedule'
1132
+ )
1133
+ end
1134
+ # rubocop:enable Metrics/BlockLength
1135
+ end
1136
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
1137
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
1138
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
1139
+
1140
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
1141
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
1142
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
1143
+
1144
+
1079
1145
  # Creates a new task ready for performing data integrations. There are specialized types of tasks that include data loader and integration tasks.
1080
1146
  #
1081
1147
  # @param [String] workspace_id The workspace ID.
@@ -1206,6 +1272,72 @@ module OCI
1206
1272
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
1207
1273
 
1208
1274
 
1275
+ # Endpoint to be used create TaskSchedule.
1276
+ # @param [String] workspace_id The workspace ID.
1277
+ # @param [String] application_key The application key.
1278
+ # @param [OCI::DataIntegration::Models::CreateTaskScheduleDetails] create_task_schedule_details Request body parameter for TaskSchedule details
1279
+ # @param [Hash] opts the optional parameters
1280
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
1281
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
1282
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
1283
+ # you need to contact Oracle about a particular request,
1284
+ # please provide the request ID.
1285
+ #
1286
+ # @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again.
1287
+ #
1288
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::TaskSchedule TaskSchedule}
1289
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/create_task_schedule.rb.html) to see an example of how to use create_task_schedule API.
1290
+ def create_task_schedule(workspace_id, application_key, create_task_schedule_details, opts = {})
1291
+ logger.debug 'Calling operation DataIntegrationClient#create_task_schedule.' if logger
1292
+
1293
+ raise "Missing the required parameter 'workspace_id' when calling create_task_schedule." if workspace_id.nil?
1294
+ raise "Missing the required parameter 'application_key' when calling create_task_schedule." if application_key.nil?
1295
+ raise "Missing the required parameter 'create_task_schedule_details' when calling create_task_schedule." if create_task_schedule_details.nil?
1296
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
1297
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
1298
+
1299
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/taskSchedules'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s)
1300
+ operation_signing_strategy = :standard
1301
+
1302
+ # rubocop:disable Style/NegatedIf
1303
+ # Query Params
1304
+ query_params = {}
1305
+
1306
+ # Header Params
1307
+ header_params = {}
1308
+ header_params[:accept] = 'application/json'
1309
+ header_params[:'content-type'] = 'application/json'
1310
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
1311
+ header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
1312
+ # rubocop:enable Style/NegatedIf
1313
+ header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
1314
+
1315
+ post_body = @api_client.object_to_http_body(create_task_schedule_details)
1316
+
1317
+ # rubocop:disable Metrics/BlockLength
1318
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#create_task_schedule') do
1319
+ @api_client.call_api(
1320
+ :POST,
1321
+ path,
1322
+ endpoint,
1323
+ header_params: header_params,
1324
+ query_params: query_params,
1325
+ operation_signing_strategy: operation_signing_strategy,
1326
+ body: post_body,
1327
+ return_type: 'OCI::DataIntegration::Models::TaskSchedule'
1328
+ )
1329
+ end
1330
+ # rubocop:enable Metrics/BlockLength
1331
+ end
1332
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
1333
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
1334
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
1335
+
1336
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
1337
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
1338
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
1339
+
1340
+
1209
1341
  # Validates a specific task.
1210
1342
  # @param [String] workspace_id The workspace ID.
1211
1343
  # @param [OCI::DataIntegration::Models::CreateTaskValidationDetails] create_task_validation_details The information needed to create a task validation.
@@ -2171,6 +2303,73 @@ module OCI
2171
2303
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
2172
2304
 
2173
2305
 
2306
+ # Endpoint to delete schedule.
2307
+ # @param [String] workspace_id The workspace ID.
2308
+ # @param [String] application_key The application key.
2309
+ # @param [String] schedule_key Schedule Key
2310
+ # @param [Hash] opts the optional parameters
2311
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
2312
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
2313
+ # @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the `etag` from a previous GET or POST response for that resource.
2314
+ # The resource will be updated or deleted only if the `etag` you provide matches the resource's current `etag` value.
2315
+ # When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code.
2316
+ #
2317
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
2318
+ # you need to contact Oracle about a particular request,
2319
+ # please provide the request ID.
2320
+ #
2321
+ # @return [Response] A Response object with data of type nil
2322
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/delete_schedule.rb.html) to see an example of how to use delete_schedule API.
2323
+ def delete_schedule(workspace_id, application_key, schedule_key, opts = {})
2324
+ logger.debug 'Calling operation DataIntegrationClient#delete_schedule.' if logger
2325
+
2326
+ raise "Missing the required parameter 'workspace_id' when calling delete_schedule." if workspace_id.nil?
2327
+ raise "Missing the required parameter 'application_key' when calling delete_schedule." if application_key.nil?
2328
+ raise "Missing the required parameter 'schedule_key' when calling delete_schedule." if schedule_key.nil?
2329
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
2330
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
2331
+ raise "Parameter value for 'schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(schedule_key)
2332
+
2333
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{scheduleKey}', schedule_key.to_s)
2334
+ operation_signing_strategy = :standard
2335
+
2336
+ # rubocop:disable Style/NegatedIf
2337
+ # Query Params
2338
+ query_params = {}
2339
+
2340
+ # Header Params
2341
+ header_params = {}
2342
+ header_params[:accept] = 'application/json'
2343
+ header_params[:'content-type'] = 'application/json'
2344
+ header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
2345
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
2346
+ # rubocop:enable Style/NegatedIf
2347
+
2348
+ post_body = nil
2349
+
2350
+ # rubocop:disable Metrics/BlockLength
2351
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#delete_schedule') do
2352
+ @api_client.call_api(
2353
+ :DELETE,
2354
+ path,
2355
+ endpoint,
2356
+ header_params: header_params,
2357
+ query_params: query_params,
2358
+ operation_signing_strategy: operation_signing_strategy,
2359
+ body: post_body
2360
+ )
2361
+ end
2362
+ # rubocop:enable Metrics/BlockLength
2363
+ end
2364
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
2365
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
2366
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
2367
+
2368
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
2369
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
2370
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
2371
+
2372
+
2174
2373
  # Removes a task using the specified identifier.
2175
2374
  # @param [String] workspace_id The workspace ID.
2176
2375
  # @param [String] task_key The task key.
@@ -2302,6 +2501,73 @@ module OCI
2302
2501
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
2303
2502
 
2304
2503
 
2504
+ # Endpoint to delete TaskSchedule.
2505
+ # @param [String] workspace_id The workspace ID.
2506
+ # @param [String] application_key The application key.
2507
+ # @param [String] task_schedule_key TaskSchedule Key
2508
+ # @param [Hash] opts the optional parameters
2509
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
2510
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
2511
+ # @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the `etag` from a previous GET or POST response for that resource.
2512
+ # The resource will be updated or deleted only if the `etag` you provide matches the resource's current `etag` value.
2513
+ # When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code.
2514
+ #
2515
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
2516
+ # you need to contact Oracle about a particular request,
2517
+ # please provide the request ID.
2518
+ #
2519
+ # @return [Response] A Response object with data of type nil
2520
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/delete_task_schedule.rb.html) to see an example of how to use delete_task_schedule API.
2521
+ def delete_task_schedule(workspace_id, application_key, task_schedule_key, opts = {})
2522
+ logger.debug 'Calling operation DataIntegrationClient#delete_task_schedule.' if logger
2523
+
2524
+ raise "Missing the required parameter 'workspace_id' when calling delete_task_schedule." if workspace_id.nil?
2525
+ raise "Missing the required parameter 'application_key' when calling delete_task_schedule." if application_key.nil?
2526
+ raise "Missing the required parameter 'task_schedule_key' when calling delete_task_schedule." if task_schedule_key.nil?
2527
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
2528
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
2529
+ raise "Parameter value for 'task_schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(task_schedule_key)
2530
+
2531
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/taskSchedules/{taskScheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{taskScheduleKey}', task_schedule_key.to_s)
2532
+ operation_signing_strategy = :standard
2533
+
2534
+ # rubocop:disable Style/NegatedIf
2535
+ # Query Params
2536
+ query_params = {}
2537
+
2538
+ # Header Params
2539
+ header_params = {}
2540
+ header_params[:accept] = 'application/json'
2541
+ header_params[:'content-type'] = 'application/json'
2542
+ header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
2543
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
2544
+ # rubocop:enable Style/NegatedIf
2545
+
2546
+ post_body = nil
2547
+
2548
+ # rubocop:disable Metrics/BlockLength
2549
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#delete_task_schedule') do
2550
+ @api_client.call_api(
2551
+ :DELETE,
2552
+ path,
2553
+ endpoint,
2554
+ header_params: header_params,
2555
+ query_params: query_params,
2556
+ operation_signing_strategy: operation_signing_strategy,
2557
+ body: post_body
2558
+ )
2559
+ end
2560
+ # rubocop:enable Metrics/BlockLength
2561
+ end
2562
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
2563
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
2564
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
2565
+
2566
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
2567
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
2568
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
2569
+
2570
+
2305
2571
  # Removes a task validation using the specified identifier.
2306
2572
  #
2307
2573
  # @param [String] workspace_id The workspace ID.
@@ -2810,6 +3076,7 @@ module OCI
2810
3076
  # you need to contact Oracle about a particular request,
2811
3077
  # please provide the request ID.
2812
3078
  #
3079
+ # @option opts [String] :expand_references Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul> (default to false)
2813
3080
  # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::DataFlow DataFlow}
2814
3081
  # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_data_flow.rb.html) to see an example of how to use get_data_flow API.
2815
3082
  def get_data_flow(workspace_id, data_flow_key, opts = {})
@@ -2826,6 +3093,7 @@ module OCI
2826
3093
  # rubocop:disable Style/NegatedIf
2827
3094
  # Query Params
2828
3095
  query_params = {}
3096
+ query_params[:expandReferences] = opts[:expand_references] if opts[:expand_references]
2829
3097
 
2830
3098
  # Header Params
2831
3099
  header_params = {}
@@ -3119,6 +3387,8 @@ module OCI
3119
3387
  # you need to contact Oracle about a particular request,
3120
3388
  # please provide the request ID.
3121
3389
  #
3390
+ # @option opts [Array<String>] :projection This parameter allows users to specify which view of the object to return. CHILD_COUNT_STATISTICS - This option is used to get statistics on immediate children of the object by their type. (default to [])
3391
+ # Allowed values are: CHILD_COUNT_STATISTICS
3122
3392
  # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Folder Folder}
3123
3393
  # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_folder.rb.html) to see an example of how to use get_folder API.
3124
3394
  def get_folder(workspace_id, folder_key, opts = {})
@@ -3126,6 +3396,16 @@ module OCI
3126
3396
 
3127
3397
  raise "Missing the required parameter 'workspace_id' when calling get_folder." if workspace_id.nil?
3128
3398
  raise "Missing the required parameter 'folder_key' when calling get_folder." if folder_key.nil?
3399
+
3400
+
3401
+ projection_allowable_values = %w[CHILD_COUNT_STATISTICS]
3402
+ if opts[:projection] && !opts[:projection].empty?
3403
+ opts[:projection].each do |val_to_check|
3404
+ unless projection_allowable_values.include?(val_to_check)
3405
+ raise 'Invalid value for "projection", must be one of CHILD_COUNT_STATISTICS.'
3406
+ end
3407
+ end
3408
+ end
3129
3409
  raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
3130
3410
  raise "Parameter value for 'folder_key' must not be blank" if OCI::Internal::Util.blank_string?(folder_key)
3131
3411
 
@@ -3135,6 +3415,7 @@ module OCI
3135
3415
  # rubocop:disable Style/NegatedIf
3136
3416
  # Query Params
3137
3417
  query_params = {}
3418
+ query_params[:projection] = OCI::ApiClient.build_collection_params(opts[:projection], :multi) if opts[:projection] && !opts[:projection].empty?
3138
3419
 
3139
3420
  # Header Params
3140
3421
  header_params = {}
@@ -3242,6 +3523,7 @@ module OCI
3242
3523
  # you need to contact Oracle about a particular request,
3243
3524
  # please provide the request ID.
3244
3525
  #
3526
+ # @option opts [String] :expand_references Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul> (default to false)
3245
3527
  # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Pipeline Pipeline}
3246
3528
  # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_pipeline.rb.html) to see an example of how to use get_pipeline API.
3247
3529
  def get_pipeline(workspace_id, pipeline_key, opts = {})
@@ -3258,6 +3540,7 @@ module OCI
3258
3540
  # rubocop:disable Style/NegatedIf
3259
3541
  # Query Params
3260
3542
  query_params = {}
3543
+ query_params[:expandReferences] = opts[:expand_references] if opts[:expand_references]
3261
3544
 
3262
3545
  # Header Params
3263
3546
  header_params = {}
@@ -3362,6 +3645,8 @@ module OCI
3362
3645
  # you need to contact Oracle about a particular request,
3363
3646
  # please provide the request ID.
3364
3647
  #
3648
+ # @option opts [Array<String>] :projection This parameter allows users to specify which view of the object to return. CHILD_COUNT_STATISTICS - This option is used to get statistics on immediate children of the object by their type. (default to [])
3649
+ # Allowed values are: CHILD_COUNT_STATISTICS
3365
3650
  # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Project Project}
3366
3651
  # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_project.rb.html) to see an example of how to use get_project API.
3367
3652
  def get_project(workspace_id, project_key, opts = {})
@@ -3369,6 +3654,16 @@ module OCI
3369
3654
 
3370
3655
  raise "Missing the required parameter 'workspace_id' when calling get_project." if workspace_id.nil?
3371
3656
  raise "Missing the required parameter 'project_key' when calling get_project." if project_key.nil?
3657
+
3658
+
3659
+ projection_allowable_values = %w[CHILD_COUNT_STATISTICS]
3660
+ if opts[:projection] && !opts[:projection].empty?
3661
+ opts[:projection].each do |val_to_check|
3662
+ unless projection_allowable_values.include?(val_to_check)
3663
+ raise 'Invalid value for "projection", must be one of CHILD_COUNT_STATISTICS.'
3664
+ end
3665
+ end
3666
+ end
3372
3667
  raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
3373
3668
  raise "Parameter value for 'project_key' must not be blank" if OCI::Internal::Util.blank_string?(project_key)
3374
3669
 
@@ -3378,6 +3673,7 @@ module OCI
3378
3673
  # rubocop:disable Style/NegatedIf
3379
3674
  # Query Params
3380
3675
  query_params = {}
3676
+ query_params[:projection] = OCI::ApiClient.build_collection_params(opts[:projection], :multi) if opts[:projection] && !opts[:projection].empty?
3381
3677
 
3382
3678
  # Header Params
3383
3679
  header_params = {}
@@ -3540,10 +3836,10 @@ module OCI
3540
3836
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
3541
3837
 
3542
3838
 
3543
- # Retrieves a schema that can be accessed using the specified connection.
3839
+ # Retrieves schedule by schedule key
3544
3840
  # @param [String] workspace_id The workspace ID.
3545
- # @param [String] connection_key The connection key.
3546
- # @param [String] schema_resource_name The schema resource name used for retrieving schemas.
3841
+ # @param [String] application_key The application key.
3842
+ # @param [String] schedule_key Schedule Key
3547
3843
  # @param [Hash] opts the optional parameters
3548
3844
  # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
3549
3845
  # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
@@ -3551,19 +3847,19 @@ module OCI
3551
3847
  # you need to contact Oracle about a particular request,
3552
3848
  # please provide the request ID.
3553
3849
  #
3554
- # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Schema Schema}
3555
- # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_schema.rb.html) to see an example of how to use get_schema API.
3556
- def get_schema(workspace_id, connection_key, schema_resource_name, opts = {})
3557
- logger.debug 'Calling operation DataIntegrationClient#get_schema.' if logger
3850
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Schedule Schedule}
3851
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_schedule.rb.html) to see an example of how to use get_schedule API.
3852
+ def get_schedule(workspace_id, application_key, schedule_key, opts = {})
3853
+ logger.debug 'Calling operation DataIntegrationClient#get_schedule.' if logger
3558
3854
 
3559
- raise "Missing the required parameter 'workspace_id' when calling get_schema." if workspace_id.nil?
3560
- raise "Missing the required parameter 'connection_key' when calling get_schema." if connection_key.nil?
3561
- raise "Missing the required parameter 'schema_resource_name' when calling get_schema." if schema_resource_name.nil?
3855
+ raise "Missing the required parameter 'workspace_id' when calling get_schedule." if workspace_id.nil?
3856
+ raise "Missing the required parameter 'application_key' when calling get_schedule." if application_key.nil?
3857
+ raise "Missing the required parameter 'schedule_key' when calling get_schedule." if schedule_key.nil?
3562
3858
  raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
3563
- raise "Parameter value for 'connection_key' must not be blank" if OCI::Internal::Util.blank_string?(connection_key)
3564
- raise "Parameter value for 'schema_resource_name' must not be blank" if OCI::Internal::Util.blank_string?(schema_resource_name)
3859
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
3860
+ raise "Parameter value for 'schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(schedule_key)
3565
3861
 
3566
- path = '/workspaces/{workspaceId}/connections/{connectionKey}/schemas/{schemaResourceName}'.sub('{workspaceId}', workspace_id.to_s).sub('{connectionKey}', connection_key.to_s).sub('{schemaResourceName}', schema_resource_name.to_s)
3862
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{scheduleKey}', schedule_key.to_s)
3567
3863
  operation_signing_strategy = :standard
3568
3864
 
3569
3865
  # rubocop:disable Style/NegatedIf
@@ -3580,7 +3876,7 @@ module OCI
3580
3876
  post_body = nil
3581
3877
 
3582
3878
  # rubocop:disable Metrics/BlockLength
3583
- OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#get_schema') do
3879
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#get_schedule') do
3584
3880
  @api_client.call_api(
3585
3881
  :GET,
3586
3882
  path,
@@ -3589,7 +3885,7 @@ module OCI
3589
3885
  query_params: query_params,
3590
3886
  operation_signing_strategy: operation_signing_strategy,
3591
3887
  body: post_body,
3592
- return_type: 'OCI::DataIntegration::Models::Schema'
3888
+ return_type: 'OCI::DataIntegration::Models::Schedule'
3593
3889
  )
3594
3890
  end
3595
3891
  # rubocop:enable Metrics/BlockLength
@@ -3603,9 +3899,10 @@ module OCI
3603
3899
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
3604
3900
 
3605
3901
 
3606
- # Retrieves a task using the specified identifier.
3902
+ # Retrieves a schema that can be accessed using the specified connection.
3607
3903
  # @param [String] workspace_id The workspace ID.
3608
- # @param [String] task_key The task key.
3904
+ # @param [String] connection_key The connection key.
3905
+ # @param [String] schema_resource_name The schema resource name used for retrieving schemas.
3609
3906
  # @param [Hash] opts the optional parameters
3610
3907
  # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
3611
3908
  # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
@@ -3613,12 +3910,74 @@ module OCI
3613
3910
  # you need to contact Oracle about a particular request,
3614
3911
  # please provide the request ID.
3615
3912
  #
3616
- # @option opts [String] :expand_references Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul> (default to false)
3617
- # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Task Task}
3618
- # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_task.rb.html) to see an example of how to use get_task API.
3619
- def get_task(workspace_id, task_key, opts = {})
3620
- logger.debug 'Calling operation DataIntegrationClient#get_task.' if logger
3621
-
3913
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Schema Schema}
3914
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_schema.rb.html) to see an example of how to use get_schema API.
3915
+ def get_schema(workspace_id, connection_key, schema_resource_name, opts = {})
3916
+ logger.debug 'Calling operation DataIntegrationClient#get_schema.' if logger
3917
+
3918
+ raise "Missing the required parameter 'workspace_id' when calling get_schema." if workspace_id.nil?
3919
+ raise "Missing the required parameter 'connection_key' when calling get_schema." if connection_key.nil?
3920
+ raise "Missing the required parameter 'schema_resource_name' when calling get_schema." if schema_resource_name.nil?
3921
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
3922
+ raise "Parameter value for 'connection_key' must not be blank" if OCI::Internal::Util.blank_string?(connection_key)
3923
+ raise "Parameter value for 'schema_resource_name' must not be blank" if OCI::Internal::Util.blank_string?(schema_resource_name)
3924
+
3925
+ path = '/workspaces/{workspaceId}/connections/{connectionKey}/schemas/{schemaResourceName}'.sub('{workspaceId}', workspace_id.to_s).sub('{connectionKey}', connection_key.to_s).sub('{schemaResourceName}', schema_resource_name.to_s)
3926
+ operation_signing_strategy = :standard
3927
+
3928
+ # rubocop:disable Style/NegatedIf
3929
+ # Query Params
3930
+ query_params = {}
3931
+
3932
+ # Header Params
3933
+ header_params = {}
3934
+ header_params[:accept] = 'application/json'
3935
+ header_params[:'content-type'] = 'application/json'
3936
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
3937
+ # rubocop:enable Style/NegatedIf
3938
+
3939
+ post_body = nil
3940
+
3941
+ # rubocop:disable Metrics/BlockLength
3942
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#get_schema') do
3943
+ @api_client.call_api(
3944
+ :GET,
3945
+ path,
3946
+ endpoint,
3947
+ header_params: header_params,
3948
+ query_params: query_params,
3949
+ operation_signing_strategy: operation_signing_strategy,
3950
+ body: post_body,
3951
+ return_type: 'OCI::DataIntegration::Models::Schema'
3952
+ )
3953
+ end
3954
+ # rubocop:enable Metrics/BlockLength
3955
+ end
3956
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
3957
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
3958
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
3959
+
3960
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
3961
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
3962
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
3963
+
3964
+
3965
+ # Retrieves a task using the specified identifier.
3966
+ # @param [String] workspace_id The workspace ID.
3967
+ # @param [String] task_key The task key.
3968
+ # @param [Hash] opts the optional parameters
3969
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
3970
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
3971
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
3972
+ # you need to contact Oracle about a particular request,
3973
+ # please provide the request ID.
3974
+ #
3975
+ # @option opts [String] :expand_references Used to expand references of the object. If value is true, then all referenced objects are expanded. If value is false, then shallow objects are returned in place of references. Default is false. <br><br><B>Example:</B><br> <ul> <li><B>?expandReferences=true</B> returns all objects of type data loader task</li> </ul> (default to false)
3976
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Task Task}
3977
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_task.rb.html) to see an example of how to use get_task API.
3978
+ def get_task(workspace_id, task_key, opts = {})
3979
+ logger.debug 'Calling operation DataIntegrationClient#get_task.' if logger
3980
+
3622
3981
  raise "Missing the required parameter 'workspace_id' when calling get_task." if workspace_id.nil?
3623
3982
  raise "Missing the required parameter 'task_key' when calling get_task." if task_key.nil?
3624
3983
  raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
@@ -3728,6 +4087,69 @@ module OCI
3728
4087
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
3729
4088
 
3730
4089
 
4090
+ # Endpoint used to get taskSchedule by its key
4091
+ # @param [String] workspace_id The workspace ID.
4092
+ # @param [String] application_key The application key.
4093
+ # @param [String] task_schedule_key TaskSchedule Key
4094
+ # @param [Hash] opts the optional parameters
4095
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
4096
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
4097
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
4098
+ # you need to contact Oracle about a particular request,
4099
+ # please provide the request ID.
4100
+ #
4101
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::TaskSchedule TaskSchedule}
4102
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/get_task_schedule.rb.html) to see an example of how to use get_task_schedule API.
4103
+ def get_task_schedule(workspace_id, application_key, task_schedule_key, opts = {})
4104
+ logger.debug 'Calling operation DataIntegrationClient#get_task_schedule.' if logger
4105
+
4106
+ raise "Missing the required parameter 'workspace_id' when calling get_task_schedule." if workspace_id.nil?
4107
+ raise "Missing the required parameter 'application_key' when calling get_task_schedule." if application_key.nil?
4108
+ raise "Missing the required parameter 'task_schedule_key' when calling get_task_schedule." if task_schedule_key.nil?
4109
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
4110
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
4111
+ raise "Parameter value for 'task_schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(task_schedule_key)
4112
+
4113
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/taskSchedules/{taskScheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{taskScheduleKey}', task_schedule_key.to_s)
4114
+ operation_signing_strategy = :standard
4115
+
4116
+ # rubocop:disable Style/NegatedIf
4117
+ # Query Params
4118
+ query_params = {}
4119
+
4120
+ # Header Params
4121
+ header_params = {}
4122
+ header_params[:accept] = 'application/json'
4123
+ header_params[:'content-type'] = 'application/json'
4124
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
4125
+ # rubocop:enable Style/NegatedIf
4126
+
4127
+ post_body = nil
4128
+
4129
+ # rubocop:disable Metrics/BlockLength
4130
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#get_task_schedule') do
4131
+ @api_client.call_api(
4132
+ :GET,
4133
+ path,
4134
+ endpoint,
4135
+ header_params: header_params,
4136
+ query_params: query_params,
4137
+ operation_signing_strategy: operation_signing_strategy,
4138
+ body: post_body,
4139
+ return_type: 'OCI::DataIntegration::Models::TaskSchedule'
4140
+ )
4141
+ end
4142
+ # rubocop:enable Metrics/BlockLength
4143
+ end
4144
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
4145
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
4146
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
4147
+
4148
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
4149
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
4150
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
4151
+
4152
+
3731
4153
  # Retrieves a task validation using the specified identifier.
3732
4154
  #
3733
4155
  # @param [String] workspace_id The workspace ID.
@@ -5434,6 +5856,93 @@ module OCI
5434
5856
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
5435
5857
 
5436
5858
 
5859
+ # Use this endpoint to list schedules.
5860
+ #
5861
+ # @param [String] workspace_id The workspace ID.
5862
+ # @param [String] application_key The application key.
5863
+ # @param [Hash] opts the optional parameters
5864
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
5865
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
5866
+ # @option opts [Array<String>] :key Used to filter by the key of the object. (default to [])
5867
+ # @option opts [String] :name Used to filter by the name of the object.
5868
+ # @option opts [Array<String>] :identifier Used to filter by the identifier of the object. (default to [])
5869
+ # @option opts [Array<String>] :type Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. <br><br><B>Examples:</B><br> <ul> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=false</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=true</B> returns all objects of type data loader task</li> </ul> (default to [])
5870
+ # @option opts [String] :page For list pagination. The value for this parameter is the `opc-next-page` or the `opc-prev-page` response header from the previous `List` call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
5871
+ # @option opts [Integer] :limit Sets the maximum number of results per page, or items to return in a paginated `List` call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). (default to 100)
5872
+ # @option opts [String] :sort_by Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter `query` is present (search operation and sorting order is by relevance score in descending order). (default to TIME_CREATED)
5873
+ # Allowed values are: TIME_CREATED, DISPLAY_NAME
5874
+ # @option opts [String] :sort_order Specifies sort order to use, either `ASC` (ascending) or `DESC` (descending). (default to DESC)
5875
+ # Allowed values are: ASC, DESC
5876
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
5877
+ # you need to contact Oracle about a particular request,
5878
+ # please provide the request ID.
5879
+ #
5880
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::ScheduleSummaryCollection ScheduleSummaryCollection}
5881
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/list_schedules.rb.html) to see an example of how to use list_schedules API.
5882
+ def list_schedules(workspace_id, application_key, opts = {})
5883
+ logger.debug 'Calling operation DataIntegrationClient#list_schedules.' if logger
5884
+
5885
+ raise "Missing the required parameter 'workspace_id' when calling list_schedules." if workspace_id.nil?
5886
+ raise "Missing the required parameter 'application_key' when calling list_schedules." if application_key.nil?
5887
+
5888
+ if opts[:sort_by] && !%w[TIME_CREATED DISPLAY_NAME].include?(opts[:sort_by])
5889
+ raise 'Invalid value for "sort_by", must be one of TIME_CREATED, DISPLAY_NAME.'
5890
+ end
5891
+
5892
+ if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order])
5893
+ raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
5894
+ end
5895
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
5896
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
5897
+
5898
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/schedules'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s)
5899
+ operation_signing_strategy = :standard
5900
+
5901
+ # rubocop:disable Style/NegatedIf
5902
+ # Query Params
5903
+ query_params = {}
5904
+ query_params[:key] = OCI::ApiClient.build_collection_params(opts[:key], :multi) if opts[:key] && !opts[:key].empty?
5905
+ query_params[:name] = opts[:name] if opts[:name]
5906
+ query_params[:identifier] = OCI::ApiClient.build_collection_params(opts[:identifier], :multi) if opts[:identifier] && !opts[:identifier].empty?
5907
+ query_params[:type] = OCI::ApiClient.build_collection_params(opts[:type], :multi) if opts[:type] && !opts[:type].empty?
5908
+ query_params[:page] = opts[:page] if opts[:page]
5909
+ query_params[:limit] = opts[:limit] if opts[:limit]
5910
+ query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
5911
+ query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
5912
+
5913
+ # Header Params
5914
+ header_params = {}
5915
+ header_params[:accept] = 'application/json'
5916
+ header_params[:'content-type'] = 'application/json'
5917
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
5918
+ # rubocop:enable Style/NegatedIf
5919
+
5920
+ post_body = nil
5921
+
5922
+ # rubocop:disable Metrics/BlockLength
5923
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#list_schedules') do
5924
+ @api_client.call_api(
5925
+ :GET,
5926
+ path,
5927
+ endpoint,
5928
+ header_params: header_params,
5929
+ query_params: query_params,
5930
+ operation_signing_strategy: operation_signing_strategy,
5931
+ body: post_body,
5932
+ return_type: 'OCI::DataIntegration::Models::ScheduleSummaryCollection'
5933
+ )
5934
+ end
5935
+ # rubocop:enable Metrics/BlockLength
5936
+ end
5937
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
5938
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
5939
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
5940
+
5941
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
5942
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
5943
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
5944
+
5945
+
5437
5946
  # Retrieves a list of all the schemas that can be accessed using the specified connection.
5438
5947
  # @param [String] workspace_id The workspace ID.
5439
5948
  # @param [String] connection_key The connection key.
@@ -5612,6 +6121,7 @@ module OCI
5612
6121
  # you need to contact Oracle about a particular request,
5613
6122
  # please provide the request ID.
5614
6123
  #
6124
+ # @option opts [Array<String>] :key Used to filter by the key of the object. (default to [])
5615
6125
  # @option opts [String] :aggregator_key Used to filter by the project or the folder object.
5616
6126
  #
5617
6127
  # @option opts [Array<String>] :fields Specifies the fields to get for an object. (default to [])
@@ -5623,6 +6133,7 @@ module OCI
5623
6133
  # Allowed values are: ASC, DESC
5624
6134
  # @option opts [String] :sort_by Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter `query` is present (search operation and sorting order is by relevance score in descending order). (default to TIME_CREATED)
5625
6135
  # Allowed values are: TIME_CREATED, DISPLAY_NAME
6136
+ # @option opts [Array<String>] :filter This filter parameter can be used to filter by model specific queryable fields of the object <br><br><B>Examples:-</B><br> <ul> <li><B>?filter=status eq Failed</B> returns all objects that have a status field with value Failed</li> </ul> (default to [])
5626
6137
  # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::TaskRunSummaryCollection TaskRunSummaryCollection}
5627
6138
  # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/list_task_runs.rb.html) to see an example of how to use list_task_runs API.
5628
6139
  def list_task_runs(workspace_id, application_key, opts = {})
@@ -5647,6 +6158,7 @@ module OCI
5647
6158
  # rubocop:disable Style/NegatedIf
5648
6159
  # Query Params
5649
6160
  query_params = {}
6161
+ query_params[:key] = OCI::ApiClient.build_collection_params(opts[:key], :multi) if opts[:key] && !opts[:key].empty?
5650
6162
  query_params[:aggregatorKey] = opts[:aggregator_key] if opts[:aggregator_key]
5651
6163
  query_params[:fields] = OCI::ApiClient.build_collection_params(opts[:fields], :multi) if opts[:fields] && !opts[:fields].empty?
5652
6164
  query_params[:name] = opts[:name] if opts[:name]
@@ -5655,6 +6167,7 @@ module OCI
5655
6167
  query_params[:limit] = opts[:limit] if opts[:limit]
5656
6168
  query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
5657
6169
  query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
6170
+ query_params[:filter] = OCI::ApiClient.build_collection_params(opts[:filter], :multi) if opts[:filter] && !opts[:filter].empty?
5658
6171
 
5659
6172
  # Header Params
5660
6173
  header_params = {}
@@ -5689,6 +6202,95 @@ module OCI
5689
6202
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
5690
6203
 
5691
6204
 
6205
+ # This endpoint can be used to get the list of all the TaskSchedule objects.
6206
+ #
6207
+ # @param [String] workspace_id The workspace ID.
6208
+ # @param [String] application_key The application key.
6209
+ # @param [Hash] opts the optional parameters
6210
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
6211
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
6212
+ # @option opts [Array<String>] :key Used to filter by the key of the object. (default to [])
6213
+ # @option opts [String] :name Used to filter by the name of the object.
6214
+ # @option opts [Array<String>] :identifier Used to filter by the identifier of the object. (default to [])
6215
+ # @option opts [Array<String>] :type Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. <br><br><B>Examples:</B><br> <ul> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=false</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK</B> returns all objects of type data loader task</li> <li><B>?type=DATA_LOADER_TASK&typeInSubtree=true</B> returns all objects of type data loader task</li> </ul> (default to [])
6216
+ # @option opts [String] :page For list pagination. The value for this parameter is the `opc-next-page` or the `opc-prev-page` response header from the previous `List` call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
6217
+ # @option opts [Integer] :limit Sets the maximum number of results per page, or items to return in a paginated `List` call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). (default to 100)
6218
+ # @option opts [String] :sort_by Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter `query` is present (search operation and sorting order is by relevance score in descending order). (default to TIME_CREATED)
6219
+ # Allowed values are: TIME_CREATED, DISPLAY_NAME
6220
+ # @option opts [String] :sort_order Specifies sort order to use, either `ASC` (ascending) or `DESC` (descending). (default to DESC)
6221
+ # Allowed values are: ASC, DESC
6222
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
6223
+ # you need to contact Oracle about a particular request,
6224
+ # please provide the request ID.
6225
+ #
6226
+ # @option opts [BOOLEAN] :is_enabled This filter parameter can be used to filter task schedule by its state.
6227
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::TaskScheduleSummaryCollection TaskScheduleSummaryCollection}
6228
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/list_task_schedules.rb.html) to see an example of how to use list_task_schedules API.
6229
+ def list_task_schedules(workspace_id, application_key, opts = {})
6230
+ logger.debug 'Calling operation DataIntegrationClient#list_task_schedules.' if logger
6231
+
6232
+ raise "Missing the required parameter 'workspace_id' when calling list_task_schedules." if workspace_id.nil?
6233
+ raise "Missing the required parameter 'application_key' when calling list_task_schedules." if application_key.nil?
6234
+
6235
+ if opts[:sort_by] && !%w[TIME_CREATED DISPLAY_NAME].include?(opts[:sort_by])
6236
+ raise 'Invalid value for "sort_by", must be one of TIME_CREATED, DISPLAY_NAME.'
6237
+ end
6238
+
6239
+ if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order])
6240
+ raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
6241
+ end
6242
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
6243
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
6244
+
6245
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/taskSchedules'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s)
6246
+ operation_signing_strategy = :standard
6247
+
6248
+ # rubocop:disable Style/NegatedIf
6249
+ # Query Params
6250
+ query_params = {}
6251
+ query_params[:key] = OCI::ApiClient.build_collection_params(opts[:key], :multi) if opts[:key] && !opts[:key].empty?
6252
+ query_params[:name] = opts[:name] if opts[:name]
6253
+ query_params[:identifier] = OCI::ApiClient.build_collection_params(opts[:identifier], :multi) if opts[:identifier] && !opts[:identifier].empty?
6254
+ query_params[:type] = OCI::ApiClient.build_collection_params(opts[:type], :multi) if opts[:type] && !opts[:type].empty?
6255
+ query_params[:page] = opts[:page] if opts[:page]
6256
+ query_params[:limit] = opts[:limit] if opts[:limit]
6257
+ query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
6258
+ query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
6259
+ query_params[:isEnabled] = opts[:is_enabled] if !opts[:is_enabled].nil?
6260
+
6261
+ # Header Params
6262
+ header_params = {}
6263
+ header_params[:accept] = 'application/json'
6264
+ header_params[:'content-type'] = 'application/json'
6265
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
6266
+ # rubocop:enable Style/NegatedIf
6267
+
6268
+ post_body = nil
6269
+
6270
+ # rubocop:disable Metrics/BlockLength
6271
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#list_task_schedules') do
6272
+ @api_client.call_api(
6273
+ :GET,
6274
+ path,
6275
+ endpoint,
6276
+ header_params: header_params,
6277
+ query_params: query_params,
6278
+ operation_signing_strategy: operation_signing_strategy,
6279
+ body: post_body,
6280
+ return_type: 'OCI::DataIntegration::Models::TaskScheduleSummaryCollection'
6281
+ )
6282
+ end
6283
+ # rubocop:enable Metrics/BlockLength
6284
+ end
6285
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
6286
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
6287
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
6288
+
6289
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
6290
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
6291
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
6292
+
6293
+
5692
6294
  # Retrieves a list of task validations within the specified workspace.
5693
6295
  #
5694
6296
  # @param [String] workspace_id The workspace ID.
@@ -6023,7 +6625,7 @@ module OCI
6023
6625
  # you need to contact Oracle about a particular request,
6024
6626
  # please provide the request ID.
6025
6627
  #
6026
- # @option opts [String] :workspace_id DIS workspace id
6628
+ # @option opts [String] :workspace_id DIS workspace id (default to )
6027
6629
  # @option opts [String] :work_request_status The work request status.
6028
6630
  # Allowed values are: ACCEPTED, IN_PROGRESS, FAILED, SUCCEEDED, CANCELING, CANCELED
6029
6631
  # @option opts [String] :page For list pagination. The value for this parameter is the `opc-next-page` or the `opc-prev-page` response header from the previous `List` call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
@@ -6931,6 +7533,76 @@ module OCI
6931
7533
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
6932
7534
 
6933
7535
 
7536
+ # Endpoint used to update the schedule
7537
+ # @param [String] workspace_id The workspace ID.
7538
+ # @param [String] application_key The application key.
7539
+ # @param [String] schedule_key Schedule Key
7540
+ # @param [OCI::DataIntegration::Models::UpdateScheduleDetails] update_schedule_details Request body parameter for Schedule details
7541
+ # @param [Hash] opts the optional parameters
7542
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
7543
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
7544
+ # @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the `etag` from a previous GET or POST response for that resource.
7545
+ # The resource will be updated or deleted only if the `etag` you provide matches the resource's current `etag` value.
7546
+ # When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code.
7547
+ #
7548
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
7549
+ # you need to contact Oracle about a particular request,
7550
+ # please provide the request ID.
7551
+ #
7552
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::Schedule Schedule}
7553
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/update_schedule.rb.html) to see an example of how to use update_schedule API.
7554
+ def update_schedule(workspace_id, application_key, schedule_key, update_schedule_details, opts = {})
7555
+ logger.debug 'Calling operation DataIntegrationClient#update_schedule.' if logger
7556
+
7557
+ raise "Missing the required parameter 'workspace_id' when calling update_schedule." if workspace_id.nil?
7558
+ raise "Missing the required parameter 'application_key' when calling update_schedule." if application_key.nil?
7559
+ raise "Missing the required parameter 'schedule_key' when calling update_schedule." if schedule_key.nil?
7560
+ raise "Missing the required parameter 'update_schedule_details' when calling update_schedule." if update_schedule_details.nil?
7561
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
7562
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
7563
+ raise "Parameter value for 'schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(schedule_key)
7564
+
7565
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{scheduleKey}', schedule_key.to_s)
7566
+ operation_signing_strategy = :standard
7567
+
7568
+ # rubocop:disable Style/NegatedIf
7569
+ # Query Params
7570
+ query_params = {}
7571
+
7572
+ # Header Params
7573
+ header_params = {}
7574
+ header_params[:accept] = 'application/json'
7575
+ header_params[:'content-type'] = 'application/json'
7576
+ header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
7577
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
7578
+ # rubocop:enable Style/NegatedIf
7579
+
7580
+ post_body = @api_client.object_to_http_body(update_schedule_details)
7581
+
7582
+ # rubocop:disable Metrics/BlockLength
7583
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#update_schedule') do
7584
+ @api_client.call_api(
7585
+ :PUT,
7586
+ path,
7587
+ endpoint,
7588
+ header_params: header_params,
7589
+ query_params: query_params,
7590
+ operation_signing_strategy: operation_signing_strategy,
7591
+ body: post_body,
7592
+ return_type: 'OCI::DataIntegration::Models::Schedule'
7593
+ )
7594
+ end
7595
+ # rubocop:enable Metrics/BlockLength
7596
+ end
7597
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
7598
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
7599
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
7600
+
7601
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
7602
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
7603
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
7604
+
7605
+
6934
7606
  # Updates a specific task. For example, you can update the task description or move the task to a different folder by changing the `aggregatorKey` to a different folder in the registry.
6935
7607
  # @param [String] workspace_id The workspace ID.
6936
7608
  # @param [String] task_key The task key.
@@ -7068,6 +7740,76 @@ module OCI
7068
7740
  # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
7069
7741
 
7070
7742
 
7743
+ # Endpoint used to update the TaskSchedule
7744
+ # @param [String] workspace_id The workspace ID.
7745
+ # @param [String] application_key The application key.
7746
+ # @param [String] task_schedule_key TaskSchedule Key
7747
+ # @param [OCI::DataIntegration::Models::UpdateTaskScheduleDetails] update_task_schedule_details Request body parameter for TaskSchedule details
7748
+ # @param [Hash] opts the optional parameters
7749
+ # @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
7750
+ # retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
7751
+ # @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the `etag` from a previous GET or POST response for that resource.
7752
+ # The resource will be updated or deleted only if the `etag` you provide matches the resource's current `etag` value.
7753
+ # When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code.
7754
+ #
7755
+ # @option opts [String] :opc_request_id Unique Oracle-assigned identifier for the request. If
7756
+ # you need to contact Oracle about a particular request,
7757
+ # please provide the request ID.
7758
+ #
7759
+ # @return [Response] A Response object with data of type {OCI::DataIntegration::Models::TaskSchedule TaskSchedule}
7760
+ # @note Click [here](https://docs.cloud.oracle.com/en-us/iaas/tools/ruby-sdk-examples/latest/dataintegration/update_task_schedule.rb.html) to see an example of how to use update_task_schedule API.
7761
+ def update_task_schedule(workspace_id, application_key, task_schedule_key, update_task_schedule_details, opts = {})
7762
+ logger.debug 'Calling operation DataIntegrationClient#update_task_schedule.' if logger
7763
+
7764
+ raise "Missing the required parameter 'workspace_id' when calling update_task_schedule." if workspace_id.nil?
7765
+ raise "Missing the required parameter 'application_key' when calling update_task_schedule." if application_key.nil?
7766
+ raise "Missing the required parameter 'task_schedule_key' when calling update_task_schedule." if task_schedule_key.nil?
7767
+ raise "Missing the required parameter 'update_task_schedule_details' when calling update_task_schedule." if update_task_schedule_details.nil?
7768
+ raise "Parameter value for 'workspace_id' must not be blank" if OCI::Internal::Util.blank_string?(workspace_id)
7769
+ raise "Parameter value for 'application_key' must not be blank" if OCI::Internal::Util.blank_string?(application_key)
7770
+ raise "Parameter value for 'task_schedule_key' must not be blank" if OCI::Internal::Util.blank_string?(task_schedule_key)
7771
+
7772
+ path = '/workspaces/{workspaceId}/applications/{applicationKey}/taskSchedules/{taskScheduleKey}'.sub('{workspaceId}', workspace_id.to_s).sub('{applicationKey}', application_key.to_s).sub('{taskScheduleKey}', task_schedule_key.to_s)
7773
+ operation_signing_strategy = :standard
7774
+
7775
+ # rubocop:disable Style/NegatedIf
7776
+ # Query Params
7777
+ query_params = {}
7778
+
7779
+ # Header Params
7780
+ header_params = {}
7781
+ header_params[:accept] = 'application/json'
7782
+ header_params[:'content-type'] = 'application/json'
7783
+ header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
7784
+ header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
7785
+ # rubocop:enable Style/NegatedIf
7786
+
7787
+ post_body = @api_client.object_to_http_body(update_task_schedule_details)
7788
+
7789
+ # rubocop:disable Metrics/BlockLength
7790
+ OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DataIntegrationClient#update_task_schedule') do
7791
+ @api_client.call_api(
7792
+ :PUT,
7793
+ path,
7794
+ endpoint,
7795
+ header_params: header_params,
7796
+ query_params: query_params,
7797
+ operation_signing_strategy: operation_signing_strategy,
7798
+ body: post_body,
7799
+ return_type: 'OCI::DataIntegration::Models::TaskSchedule'
7800
+ )
7801
+ end
7802
+ # rubocop:enable Metrics/BlockLength
7803
+ end
7804
+ # rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
7805
+ # rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
7806
+ # rubocop:enable Metrics/MethodLength, Layout/EmptyLines
7807
+
7808
+ # rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
7809
+ # rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
7810
+ # rubocop:disable Metrics/MethodLength, Layout/EmptyLines
7811
+
7812
+
7071
7813
  # Updates the specified Data Integration workspace.
7072
7814
  # @param [String] workspace_id The workspace ID.
7073
7815
  # @param [OCI::DataIntegration::Models::UpdateWorkspaceDetails] update_workspace_details The information needed to update the workspace.