oci 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/lib/oci.rb +4 -0
- data/lib/oci/analytics/analytics.rb +42 -0
- data/lib/oci/analytics/analytics_client.rb +1134 -0
- data/lib/oci/analytics/analytics_client_composite_operations.rb +371 -0
- data/lib/oci/analytics/models/analytics_instance.rb +406 -0
- data/lib/oci/analytics/models/analytics_instance_lifecycle_state.rb +15 -0
- data/lib/oci/analytics/models/analytics_instance_summary.rb +370 -0
- data/lib/oci/analytics/models/capacity.rb +191 -0
- data/lib/oci/analytics/models/capacity_type.rb +10 -0
- data/lib/oci/analytics/models/change_compartment_details.rb +155 -0
- data/lib/oci/analytics/models/create_analytics_instance_details.rb +309 -0
- data/lib/oci/analytics/models/feature_set.rb +10 -0
- data/lib/oci/analytics/models/license_type.rb +10 -0
- data/lib/oci/analytics/models/scale_analytics_instance_details.rb +150 -0
- data/lib/oci/analytics/models/sort_by.rb +13 -0
- data/lib/oci/analytics/models/sort_order.rb +10 -0
- data/lib/oci/analytics/models/update_analytics_instance_details.rb +231 -0
- data/lib/oci/analytics/models/work_request.rb +316 -0
- data/lib/oci/analytics/models/work_request_action_result.rb +15 -0
- data/lib/oci/analytics/models/work_request_error.rb +176 -0
- data/lib/oci/analytics/models/work_request_log.rb +164 -0
- data/lib/oci/analytics/models/work_request_operation_type.rb +14 -0
- data/lib/oci/analytics/models/work_request_resource.rb +248 -0
- data/lib/oci/analytics/models/work_request_resource_type.rb +9 -0
- data/lib/oci/analytics/models/work_request_sort_by.rb +14 -0
- data/lib/oci/analytics/models/work_request_status.rb +14 -0
- data/lib/oci/analytics/models/work_request_summary.rb +300 -0
- data/lib/oci/analytics/util.rb +2 -0
- data/lib/oci/audit/audit.rb +5 -0
- data/lib/oci/audit/audit_client.rb +30 -14
- data/lib/oci/audit/models/audit_event.rb +81 -261
- data/lib/oci/audit/models/configuration.rb +7 -2
- data/lib/oci/audit/models/data.rb +464 -0
- data/lib/oci/audit/models/identity.rb +313 -0
- data/lib/oci/audit/models/request.rb +285 -0
- data/lib/oci/audit/models/response.rb +273 -0
- data/lib/oci/audit/models/state_change.rb +175 -0
- data/lib/oci/audit/models/update_configuration_details.rb +7 -2
- data/lib/oci/container_engine/container_engine.rb +4 -0
- data/lib/oci/container_engine/models/cluster.rb +15 -1
- data/lib/oci/container_engine/models/create_cluster_details.rb +17 -1
- data/lib/oci/container_engine/models/create_cluster_kubeconfig_content_details.rb +4 -1
- data/lib/oci/container_engine/models/create_node_pool_details.rb +29 -6
- data/lib/oci/container_engine/models/create_node_pool_node_config_details.rb +170 -0
- data/lib/oci/container_engine/models/node_pool.rb +18 -4
- data/lib/oci/container_engine/models/node_pool_node_config_details.rb +170 -0
- data/lib/oci/container_engine/models/node_pool_options.rb +1 -1
- data/lib/oci/container_engine/models/node_pool_placement_config_details.rb +169 -0
- data/lib/oci/container_engine/models/node_pool_summary.rb +18 -4
- data/lib/oci/container_engine/models/update_node_pool_details.rb +45 -19
- data/lib/oci/container_engine/models/update_node_pool_node_config_details.rb +170 -0
- data/lib/oci/core/blockstorage_client.rb +197 -0
- data/lib/oci/core/compute_client.rb +132 -17
- data/lib/oci/core/compute_client_composite_operations.rb +1 -1
- data/lib/oci/core/compute_management_client.rb +493 -0
- data/lib/oci/core/compute_management_client_composite_operations.rb +119 -0
- data/lib/oci/core/core.rb +11 -0
- data/lib/oci/core/models/boot_volume.rb +17 -1
- data/lib/oci/core/models/boot_volume_backup.rb +17 -1
- data/lib/oci/core/models/change_cluster_network_compartment_details.rb +155 -0
- data/lib/oci/core/models/change_dedicated_vm_host_compartment_details.rb +2 -2
- data/lib/oci/core/models/change_drg_compartment_details.rb +155 -0
- data/lib/oci/core/models/cluster_network.rb +313 -0
- data/lib/oci/core/models/cluster_network_placement_configuration_details.rb +183 -0
- data/lib/oci/core/models/cluster_network_summary.rb +299 -0
- data/lib/oci/core/models/create_cluster_network_details.rb +231 -0
- data/lib/oci/core/models/create_cluster_network_instance_pool_details.rb +213 -0
- data/lib/oci/core/models/create_dedicated_vm_host_details.rb +10 -8
- data/lib/oci/core/models/create_ip_sec_connection_details.rb +4 -0
- data/lib/oci/core/models/create_ip_sec_connection_tunnel_details.rb +29 -1
- data/lib/oci/core/models/create_volume_backup_policy_details.rb +215 -0
- data/lib/oci/core/models/dedicated_vm_host.rb +10 -8
- data/lib/oci/core/models/image_shape_compatibility_entry.rb +163 -0
- data/lib/oci/core/models/instance.rb +17 -1
- data/lib/oci/core/models/ip_sec_connection.rb +4 -0
- data/lib/oci/core/models/ip_sec_connection_tunnel.rb +35 -1
- data/lib/oci/core/models/launch_instance_details.rb +14 -1
- data/lib/oci/core/models/launch_options.rb +4 -4
- data/lib/oci/core/models/service_gateway.rb +0 -1
- data/lib/oci/core/models/update_cluster_network_details.rb +189 -0
- data/lib/oci/core/models/update_dedicated_vm_host_details.rb +1 -1
- data/lib/oci/core/models/update_ip_sec_connection_details.rb +4 -0
- data/lib/oci/core/models/update_ip_sec_connection_tunnel_details.rb +29 -1
- data/lib/oci/core/models/update_service_gateway_details.rb +0 -1
- data/lib/oci/core/models/update_volume_backup_policy_details.rb +201 -0
- data/lib/oci/core/models/volume.rb +17 -1
- data/lib/oci/core/models/volume_backup.rb +17 -1
- data/lib/oci/core/models/volume_backup_policy.rb +54 -4
- data/lib/oci/core/models/volume_backup_schedule.rb +177 -4
- data/lib/oci/core/virtual_network_client.rb +67 -0
- data/lib/oci/database/database.rb +35 -1
- data/lib/oci/database/database_client.rb +3351 -1159
- data/lib/oci/database/database_client_composite_operations.rb +522 -1
- data/lib/oci/database/models/activate_exadata_infrastructure_details.rb +153 -0
- data/lib/oci/database/models/associated_database_details.rb +163 -0
- data/lib/oci/database/models/autonomous_container_database.rb +0 -2
- data/lib/oci/database/models/autonomous_container_database_summary.rb +0 -2
- data/lib/oci/database/models/autonomous_data_warehouse.rb +0 -2
- data/lib/oci/database/models/autonomous_data_warehouse_summary.rb +0 -2
- data/lib/oci/database/models/autonomous_database.rb +65 -4
- data/lib/oci/database/models/autonomous_database_summary.rb +65 -4
- data/lib/oci/database/models/autonomous_database_wallet.rb +188 -0
- data/lib/oci/database/models/autonomous_exadata_infrastructure.rb +16 -3
- data/lib/oci/database/models/autonomous_exadata_infrastructure_summary.rb +16 -3
- data/lib/oci/database/models/backup_destination.rb +359 -0
- data/lib/oci/database/models/backup_destination_details.rb +243 -0
- data/lib/oci/database/models/backup_destination_summary.rb +362 -0
- data/lib/oci/database/models/change_exadata_infrastructure_compartment_details.rb +155 -0
- data/lib/oci/database/models/change_vm_cluster_compartment_details.rb +155 -0
- data/lib/oci/database/models/create_autonomous_container_database_details.rb +0 -2
- data/lib/oci/database/models/create_autonomous_data_warehouse_details.rb +0 -2
- data/lib/oci/database/models/create_autonomous_database_base.rb +19 -4
- data/lib/oci/database/models/create_autonomous_database_clone_details.rb +6 -2
- data/lib/oci/database/models/create_autonomous_database_details.rb +5 -1
- data/lib/oci/database/models/create_backup_destination_details.rb +241 -0
- data/lib/oci/database/models/create_database_details.rb +15 -3
- data/lib/oci/database/models/create_database_from_backup_details.rb +15 -1
- data/lib/oci/database/models/{create_db_home_with_db_system_id_base.rb → create_db_home_base.rb} +8 -18
- data/lib/oci/database/models/create_db_home_with_db_system_id_details.rb +18 -8
- data/lib/oci/database/models/create_db_home_with_db_system_id_from_backup_details.rb +18 -8
- data/lib/oci/database/models/create_db_home_with_vm_cluster_id_details.rb +190 -0
- data/lib/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.rb +176 -0
- data/lib/oci/database/models/create_exadata_infrastructure_details.rb +348 -0
- data/lib/oci/database/models/create_nfs_backup_destination_details.rb +178 -0
- data/lib/oci/database/models/create_recovery_appliance_backup_destination_details.rb +191 -0
- data/lib/oci/database/models/create_vm_cluster_details.rb +344 -0
- data/lib/oci/database/models/database.rb +0 -2
- data/lib/oci/database/models/database_summary.rb +0 -2
- data/lib/oci/database/models/db_backup_config.rb +65 -4
- data/lib/oci/database/models/db_home.rb +15 -1
- data/lib/oci/database/models/db_home_summary.rb +15 -1
- data/lib/oci/database/models/db_system.rb +14 -3
- data/lib/oci/database/models/db_system_options.rb +173 -0
- data/lib/oci/database/models/db_system_shape_summary.rb +15 -1
- data/lib/oci/database/models/db_system_summary.rb +14 -3
- data/lib/oci/database/models/exadata_infrastructure.rb +450 -0
- data/lib/oci/database/models/exadata_infrastructure_summary.rb +453 -0
- data/lib/oci/database/models/generate_autonomous_database_wallet_details.rb +31 -1
- data/lib/oci/database/models/generate_recommended_network_details.rb +232 -0
- data/lib/oci/database/models/gi_version_summary.rb +152 -0
- data/lib/oci/database/models/info_for_network_gen_details.rb +231 -0
- data/lib/oci/database/models/launch_autonomous_exadata_infrastructure_details.rb +16 -3
- data/lib/oci/database/models/launch_db_system_base.rb +14 -3
- data/lib/oci/database/models/launch_db_system_details.rb +5 -1
- data/lib/oci/database/models/launch_db_system_from_backup_details.rb +5 -1
- data/lib/oci/database/models/node_details.rb +183 -0
- data/lib/oci/database/models/scan_details.rb +170 -0
- data/lib/oci/database/models/update_autonomous_container_database_details.rb +0 -2
- data/lib/oci/database/models/update_autonomous_data_warehouse_details.rb +0 -2
- data/lib/oci/database/models/update_autonomous_database_details.rb +19 -4
- data/lib/oci/database/models/update_autonomous_database_wallet_details.rb +156 -0
- data/lib/oci/database/models/update_autonomous_exadata_infrastructure_details.rb +16 -3
- data/lib/oci/database/models/update_backup_destination_details.rb +218 -0
- data/lib/oci/database/models/update_database_details.rb +0 -2
- data/lib/oci/database/models/update_db_system_details.rb +0 -2
- data/lib/oci/database/models/update_exadata_infrastructure_details.rb +307 -0
- data/lib/oci/database/models/update_vm_cluster_details.rb +229 -0
- data/lib/oci/database/models/update_vm_cluster_network_details.rb +218 -0
- data/lib/oci/database/models/vm_cluster.rb +449 -0
- data/lib/oci/database/models/vm_cluster_network.rb +350 -0
- data/lib/oci/database/models/vm_cluster_network_details.rb +246 -0
- data/lib/oci/database/models/vm_cluster_network_summary.rb +353 -0
- data/lib/oci/database/models/vm_cluster_summary.rb +452 -0
- data/lib/oci/database/models/vm_network_details.rb +231 -0
- data/lib/oci/dns/dns.rb +4 -0
- data/lib/oci/dns/dns_client.rb +103 -103
- data/lib/oci/dns/dns_client_composite_operations.rb +1 -1
- data/lib/oci/dns/models/create_migrated_dynect_zone_details.rb +179 -0
- data/lib/oci/dns/models/create_zone_base_details.rb +252 -0
- data/lib/oci/dns/models/create_zone_details.rb +18 -56
- data/lib/oci/dns/models/dynect_migration_details.rb +192 -0
- data/lib/oci/dns/models/migration_replacement.rb +187 -0
- data/lib/oci/dts/dts.rb +2 -0
- data/lib/oci/dts/models/create_transfer_appliance_entitlement_details.rb +49 -4
- data/lib/oci/dts/models/transfer_appliance.rb +2 -0
- data/lib/oci/dts/models/transfer_appliance_entitlement.rb +102 -33
- data/lib/oci/dts/models/transfer_appliance_entitlement_summary.rb +261 -0
- data/lib/oci/dts/models/transfer_appliance_summary.rb +2 -0
- data/lib/oci/dts/models/transfer_job.rb +0 -4
- data/lib/oci/dts/models/update_transfer_appliance_details.rb +1 -0
- data/lib/oci/dts/shipping_vendors_client.rb +1 -1
- data/lib/oci/dts/transfer_appliance_client.rb +4 -4
- data/lib/oci/dts/transfer_appliance_entitlement_client.rb +86 -10
- data/lib/oci/dts/transfer_appliance_entitlement_client_composite_operations.rb +39 -0
- data/lib/oci/dts/transfer_device_client.rb +1 -1
- data/lib/oci/dts/transfer_job_client.rb +1 -1
- data/lib/oci/dts/transfer_package_client.rb +1 -1
- data/lib/oci/functions/functions_invoke_client.rb +1 -1
- data/lib/oci/functions/functions_management_client.rb +1 -1
- data/lib/oci/healthchecks/health_checks_client.rb +18 -14
- data/lib/oci/healthchecks/models/http_monitor.rb +31 -1
- data/lib/oci/healthchecks/models/http_monitor_summary.rb +31 -1
- data/lib/oci/healthchecks/models/http_probe.rb +31 -1
- data/lib/oci/healthchecks/models/ping_monitor.rb +31 -1
- data/lib/oci/healthchecks/models/ping_monitor_summary.rb +31 -1
- data/lib/oci/healthchecks/models/ping_probe.rb +31 -1
- data/lib/oci/identity/identity.rb +7 -0
- data/lib/oci/identity/identity_client.rb +348 -9
- data/lib/oci/identity/models/base_tag_definition_validator.rb +200 -0
- data/lib/oci/identity/models/compartment.rb +3 -0
- data/lib/oci/identity/models/create_region_subscription_details.rb +3 -0
- data/lib/oci/identity/models/create_tag_default_details.rb +26 -4
- data/lib/oci/identity/models/create_tag_details.rb +21 -5
- data/lib/oci/identity/models/default_tag_definition_validator.rb +146 -0
- data/lib/oci/identity/models/dynamic_group.rb +3 -0
- data/lib/oci/identity/models/enum_tag_definition_validator.rb +161 -0
- data/lib/oci/identity/models/group.rb +3 -0
- data/lib/oci/identity/models/identity_provider.rb +3 -0
- data/lib/oci/identity/models/move_compartment_details.rb +2 -2
- data/lib/oci/identity/models/policy.rb +3 -0
- data/lib/oci/identity/models/region.rb +9 -3
- data/lib/oci/identity/models/region_subscription.rb +8 -2
- data/lib/oci/identity/models/tag.rb +25 -6
- data/lib/oci/identity/models/tag_default.rb +26 -4
- data/lib/oci/identity/models/tag_default_summary.rb +26 -4
- data/lib/oci/identity/models/tag_namespace.rb +5 -2
- data/lib/oci/identity/models/tag_summary.rb +3 -2
- data/lib/oci/identity/models/tagging_work_request.rb +305 -0
- data/lib/oci/identity/models/tagging_work_request_error_summary.rb +172 -0
- data/lib/oci/identity/models/tagging_work_request_log_summary.rb +162 -0
- data/lib/oci/identity/models/tagging_work_request_summary.rb +304 -0
- data/lib/oci/identity/models/tenancy.rb +3 -0
- data/lib/oci/identity/models/update_tag_default_details.rb +26 -4
- data/lib/oci/identity/models/update_tag_details.rb +19 -4
- data/lib/oci/identity/models/user.rb +3 -0
- data/lib/oci/integration/integration.rb +29 -0
- data/lib/oci/integration/integration_instance_client.rb +731 -0
- data/lib/oci/integration/integration_instance_client_composite_operations.rb +222 -0
- data/lib/oci/integration/models/change_integration_instance_compartment_details.rb +153 -0
- data/lib/oci/integration/models/create_integration_instance_details.rb +270 -0
- data/lib/oci/integration/models/integration_instance.rb +366 -0
- data/lib/oci/integration/models/integration_instance_summary.rb +332 -0
- data/lib/oci/integration/models/update_integration_instance_details.rb +242 -0
- data/lib/oci/integration/models/work_request.rb +310 -0
- data/lib/oci/integration/models/work_request_error.rb +170 -0
- data/lib/oci/integration/models/work_request_log_entry.rb +159 -0
- data/lib/oci/integration/models/work_request_resource.rb +218 -0
- data/lib/oci/integration/models/work_request_summary.rb +310 -0
- data/lib/oci/integration/util.rb +2 -0
- data/lib/oci/load_balancer/load_balancer_client.rb +3 -3
- data/lib/oci/load_balancer/load_balancer_client_composite_operations.rb +2 -2
- data/lib/oci/load_balancer/models/backend.rb +2 -0
- data/lib/oci/load_balancer/models/backend_details.rb +2 -0
- data/lib/oci/load_balancer/models/create_backend_details.rb +2 -0
- data/lib/oci/load_balancer/models/create_load_balancer_details.rb +12 -1
- data/lib/oci/load_balancer/models/health_checker.rb +2 -1
- data/lib/oci/load_balancer/models/health_checker_details.rb +2 -1
- data/lib/oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.rb +2 -2
- data/lib/oci/load_balancer/models/load_balancer.rb +33 -2
- data/lib/oci/load_balancer/models/update_backend_details.rb +2 -0
- data/lib/oci/load_balancer/models/update_health_checker_details.rb +2 -1
- data/lib/oci/load_balancer/models/update_network_security_groups_details.rb +15 -2
- data/lib/oci/monitoring/models/alarm.rb +6 -5
- data/lib/oci/monitoring/models/create_alarm_details.rb +6 -5
- data/lib/oci/monitoring/models/update_alarm_details.rb +6 -5
- data/lib/oci/monitoring/monitoring_client.rb +25 -9
- data/lib/oci/object_storage/models/bucket.rb +17 -1
- data/lib/oci/object_storage/models/create_bucket_details.rb +17 -1
- data/lib/oci/object_storage/models/update_bucket_details.rb +18 -2
- data/lib/oci/object_storage/models/update_namespace_metadata_details.rb +1 -1
- data/lib/oci/object_storage/models/work_request.rb +7 -4
- data/lib/oci/object_storage/models/work_request_summary.rb +7 -4
- data/lib/oci/object_storage/object_storage_client.rb +75 -4
- data/lib/oci/object_storage/object_storage_client_composite_operations.rb +52 -0
- data/lib/oci/oce/models/change_oce_instance_compartment_details.rb +155 -0
- data/lib/oci/oce/models/create_oce_instance_details.rb +275 -0
- data/lib/oci/oce/models/delete_oce_instance_details.rb +153 -0
- data/lib/oci/oce/models/oce_instance.rb +387 -0
- data/lib/oci/oce/models/oce_instance_summary.rb +387 -0
- data/lib/oci/oce/models/update_oce_instance_details.rb +181 -0
- data/lib/oci/oce/models/work_request.rb +319 -0
- data/lib/oci/oce/models/work_request_error.rb +172 -0
- data/lib/oci/oce/models/work_request_log_entry.rb +159 -0
- data/lib/oci/oce/models/work_request_resource.rb +217 -0
- data/lib/oci/oce/models/workflow_monitor.rb +181 -0
- data/lib/oci/oce/models/workflow_step.rb +163 -0
- data/lib/oci/oce/oce.rb +31 -0
- data/lib/oci/oce/oce_instance_client.rb +733 -0
- data/lib/oci/oce/oce_instance_client_composite_operations.rb +223 -0
- data/lib/oci/oce/util.rb +2 -0
- data/lib/oci/oda/models/change_oda_instance_compartment_details.rb +153 -0
- data/lib/oci/oda/models/create_oda_instance_details.rb +237 -0
- data/lib/oci/oda/models/error_body.rb +159 -0
- data/lib/oci/oda/models/oda_instance.rb +399 -0
- data/lib/oci/oda/models/oda_instance_summary.rb +369 -0
- data/lib/oci/oda/models/update_oda_instance_details.rb +196 -0
- data/lib/oci/oda/models/work_request.rb +340 -0
- data/lib/oci/oda/models/work_request_error.rb +176 -0
- data/lib/oci/oda/models/work_request_log_entry.rb +163 -0
- data/lib/oci/oda/models/work_request_resource.rb +272 -0
- data/lib/oci/oda/models/work_request_summary.rb +262 -0
- data/lib/oci/oda/oda.rb +30 -0
- data/lib/oci/oda/oda_client.rb +842 -0
- data/lib/oci/oda/oda_client_composite_operations.rb +212 -0
- data/lib/oci/oda/util.rb +2 -0
- data/lib/oci/ons/models/backoff_retry_policy.rb +2 -1
- data/lib/oci/ons/models/confirmation_result.rb +5 -3
- data/lib/oci/ons/models/create_subscription_details.rb +19 -4
- data/lib/oci/ons/models/notification_topic.rb +2 -1
- data/lib/oci/ons/models/subscription.rb +8 -3
- data/lib/oci/ons/models/subscription_summary.rb +5 -3
- data/lib/oci/ons/notification_control_plane_client.rb +4 -3
- data/lib/oci/ons/notification_data_plane_client.rb +28 -4
- data/lib/oci/regions.rb +3 -0
- data/lib/oci/resource_manager/models/apply_job_operation_details.rb +201 -0
- data/lib/oci/resource_manager/models/apply_job_operation_details_summary.rb +180 -0
- data/lib/oci/resource_manager/models/apply_job_plan_resolution.rb +4 -5
- data/lib/oci/resource_manager/models/config_source.rb +3 -2
- data/lib/oci/resource_manager/models/create_apply_job_operation_details.rb +179 -0
- data/lib/oci/resource_manager/models/create_config_source_details.rb +2 -1
- data/lib/oci/resource_manager/models/create_destroy_job_operation_details.rb +165 -0
- data/lib/oci/resource_manager/models/create_import_tf_state_job_operation_details.rb +163 -0
- data/lib/oci/resource_manager/models/create_job_details.rb +16 -3
- data/lib/oci/resource_manager/models/create_job_operation_details.rb +169 -0
- data/lib/oci/resource_manager/models/create_plan_job_operation_details.rb +145 -0
- data/lib/oci/resource_manager/models/create_stack_details.rb +17 -2
- data/lib/oci/resource_manager/models/destroy_job_operation_details.rb +184 -0
- data/lib/oci/resource_manager/models/destroy_job_operation_details_summary.rb +165 -0
- data/lib/oci/resource_manager/models/import_tf_state_job_operation_details.rb +145 -0
- data/lib/oci/resource_manager/models/import_tf_state_job_operation_details_summary.rb +145 -0
- data/lib/oci/resource_manager/models/job.rb +23 -5
- data/lib/oci/resource_manager/models/job_operation_details.rb +169 -0
- data/lib/oci/resource_manager/models/job_operation_details_summary.rb +169 -0
- data/lib/oci/resource_manager/models/job_summary.rb +20 -5
- data/lib/oci/resource_manager/models/plan_job_operation_details.rb +145 -0
- data/lib/oci/resource_manager/models/plan_job_operation_details_summary.rb +145 -0
- data/lib/oci/resource_manager/models/stack.rb +18 -6
- data/lib/oci/resource_manager/models/stack_summary.rb +16 -1
- data/lib/oci/resource_manager/models/terraform_version_collection.rb +150 -0
- data/lib/oci/resource_manager/models/terraform_version_summary.rb +151 -0
- data/lib/oci/resource_manager/models/update_config_source_details.rb +3 -1
- data/lib/oci/resource_manager/models/update_stack_details.rb +16 -1
- data/lib/oci/resource_manager/models/work_request.rb +2 -2
- data/lib/oci/resource_manager/models/work_request_resource.rb +1 -1
- data/lib/oci/resource_manager/models/work_request_summary.rb +2 -2
- data/lib/oci/resource_manager/resource_manager.rb +17 -0
- data/lib/oci/resource_manager/resource_manager_client.rb +187 -29
- data/lib/oci/resource_manager/resource_manager_client_composite_operations.rb +6 -6
- data/lib/oci/version.rb +1 -1
- data/lib/oci/waas/models/access_rule.rb +2 -2
- data/lib/oci/waas/models/access_rule_criteria.rb +1 -1
- data/lib/oci/waas/models/address_list.rb +1 -0
- data/lib/oci/waas/models/address_rate_limiting.rb +1 -1
- data/lib/oci/waas/models/block_challenge_settings.rb +1 -1
- data/lib/oci/waas/models/caching_rule.rb +9 -8
- data/lib/oci/waas/models/caching_rule_criteria.rb +1 -5
- data/lib/oci/waas/models/caching_rule_summary.rb +9 -8
- data/lib/oci/waas/models/change_address_list_compartment_details.rb +1 -1
- data/lib/oci/waas/models/change_certificate_compartment_details.rb +1 -0
- data/lib/oci/waas/models/change_custom_protection_rule_compartment_details.rb +1 -1
- data/lib/oci/waas/models/change_http_redirect_compartment_details.rb +154 -0
- data/lib/oci/waas/models/change_waas_policy_compartment_details.rb +1 -0
- data/lib/oci/waas/models/create_address_list_details.rb +1 -1
- data/lib/oci/waas/models/create_custom_protection_rule_details.rb +17 -12
- data/lib/oci/waas/models/create_http_redirect_details.rb +238 -0
- data/lib/oci/waas/models/create_waas_policy_details.rb +2 -1
- data/lib/oci/waas/models/custom_protection_rule.rb +20 -16
- data/lib/oci/waas/models/custom_protection_rule_setting.rb +4 -3
- data/lib/oci/waas/models/custom_protection_rule_summary.rb +6 -6
- data/lib/oci/waas/models/http_redirect.rb +301 -0
- data/lib/oci/waas/models/http_redirect_summary.rb +301 -0
- data/lib/oci/waas/models/http_redirect_target.rb +209 -0
- data/lib/oci/waas/models/origin_group_origins.rb +2 -2
- data/lib/oci/waas/models/policy_config.rb +14 -7
- data/lib/oci/waas/models/protection_settings.rb +1 -1
- data/lib/oci/waas/models/purge_cache.rb +2 -2
- data/lib/oci/waas/models/update_address_list_details.rb +1 -1
- data/lib/oci/waas/models/update_custom_protection_rule_details.rb +16 -12
- data/lib/oci/waas/models/update_http_redirect_details.rb +215 -0
- data/lib/oci/waas/models/update_waas_policy_details.rb +2 -1
- data/lib/oci/waas/models/waas_policy.rb +1 -1
- data/lib/oci/waas/models/waas_policy_custom_protection_rule_summary.rb +5 -4
- data/lib/oci/waas/models/waf_config.rb +2 -1
- data/lib/oci/waas/models/waf_config_details.rb +2 -1
- data/lib/oci/waas/models/work_request.rb +3 -0
- data/lib/oci/waas/models/work_request_operation_types.rb +3 -0
- data/lib/oci/waas/models/work_request_summary.rb +3 -0
- data/lib/oci/waas/redirect_client.rb +493 -0
- data/lib/oci/waas/redirect_client_composite_operations.rb +172 -0
- data/lib/oci/waas/waas.rb +8 -0
- data/lib/oci/waas/waas_client.rb +35 -23
- data/lib/oci/waas/waas_client_composite_operations.rb +4 -4
- metadata +166 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66717b5bc86a778e9e9401b76a23d3fa4663dc4114f7e8e971ef110378e8b344
|
|
4
|
+
data.tar.gz: b5c5cf170c071abb2109e992f014c9538085e19d0dc29b85d0b9ffa350afdf72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 678eed1c97323bb632c54501586bfc746ad8e5e0f7b15ab5cf28cf1e62f16e2b3e1c8a7bc1127d59afc0a76b5742115d01386a0384a76abb1b662dcf7fcee75b
|
|
7
|
+
data.tar.gz: c0962730bcd97cf5de2b272b7fe404b53271ab941ff6b1ebb847a8390683a56406c3279668a5f3942271ad2f926a28896570453c674316faa8e088bd1d1973ea
|
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Oracle Cloud Infrastructure Ruby SDK
|
|
2
|
-
**Version 2.
|
|
2
|
+
**Version 2.7.0**
|
|
3
3
|
|
|
4
4
|
This topic describes how to install, configure, and use the Oracle Cloud Infrastructure Ruby SDK.
|
|
5
5
|
|
|
@@ -7,14 +7,17 @@ This topic describes how to install, configure, and use the Oracle Cloud Infrast
|
|
|
7
7
|
|
|
8
8
|
The Ruby SDK supports the following services:
|
|
9
9
|
|
|
10
|
+
* Analytics Cloud
|
|
10
11
|
* Announcements
|
|
11
12
|
* Audit
|
|
12
13
|
* Budgets
|
|
13
14
|
* Compute Autoscaling
|
|
14
15
|
* Container Engine
|
|
16
|
+
* Content and Experience
|
|
15
17
|
* Core Services (which includes Networking, Compute, and Block Volume)
|
|
16
18
|
* Data Transfer
|
|
17
19
|
* Database
|
|
20
|
+
* Digital Assistant
|
|
18
21
|
* Domain Name System
|
|
19
22
|
* Email
|
|
20
23
|
* Events
|
|
@@ -22,11 +25,13 @@ The Ruby SDK supports the following services:
|
|
|
22
25
|
* Functions
|
|
23
26
|
* Health Checks
|
|
24
27
|
* Identity and Access Management
|
|
28
|
+
* Integration Cloud
|
|
25
29
|
* Key Management
|
|
26
30
|
* Limits
|
|
27
31
|
* Load Balancing
|
|
28
32
|
* Monitoring
|
|
29
33
|
* Notification
|
|
34
|
+
* Oracle Content and Experience
|
|
30
35
|
* Object Storage
|
|
31
36
|
* Quotas
|
|
32
37
|
* Resource Manager
|
data/lib/oci.rb
CHANGED
|
@@ -44,6 +44,10 @@ require 'oci/limits/limits'
|
|
|
44
44
|
require 'oci/functions/functions'
|
|
45
45
|
require 'oci/events/events'
|
|
46
46
|
require 'oci/dts/dts'
|
|
47
|
+
require 'oci/oce/oce'
|
|
48
|
+
require 'oci/oda/oda'
|
|
49
|
+
require 'oci/integration/integration'
|
|
50
|
+
require 'oci/analytics/analytics'
|
|
47
51
|
|
|
48
52
|
# Top level module for the Oracle Cloud Infrastructure SDK
|
|
49
53
|
module OCI
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
module OCI
|
|
4
|
+
module Analytics
|
|
5
|
+
# Module containing models for requests made to, and responses received from,
|
|
6
|
+
# OCI Analytics services
|
|
7
|
+
module Models
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# Require models
|
|
13
|
+
require 'oci/analytics/models/analytics_instance'
|
|
14
|
+
require 'oci/analytics/models/analytics_instance_lifecycle_state'
|
|
15
|
+
require 'oci/analytics/models/analytics_instance_summary'
|
|
16
|
+
require 'oci/analytics/models/capacity'
|
|
17
|
+
require 'oci/analytics/models/capacity_type'
|
|
18
|
+
require 'oci/analytics/models/change_compartment_details'
|
|
19
|
+
require 'oci/analytics/models/create_analytics_instance_details'
|
|
20
|
+
require 'oci/analytics/models/feature_set'
|
|
21
|
+
require 'oci/analytics/models/license_type'
|
|
22
|
+
require 'oci/analytics/models/scale_analytics_instance_details'
|
|
23
|
+
require 'oci/analytics/models/sort_by'
|
|
24
|
+
require 'oci/analytics/models/sort_order'
|
|
25
|
+
require 'oci/analytics/models/update_analytics_instance_details'
|
|
26
|
+
require 'oci/analytics/models/work_request'
|
|
27
|
+
require 'oci/analytics/models/work_request_action_result'
|
|
28
|
+
require 'oci/analytics/models/work_request_error'
|
|
29
|
+
require 'oci/analytics/models/work_request_log'
|
|
30
|
+
require 'oci/analytics/models/work_request_operation_type'
|
|
31
|
+
require 'oci/analytics/models/work_request_resource'
|
|
32
|
+
require 'oci/analytics/models/work_request_resource_type'
|
|
33
|
+
require 'oci/analytics/models/work_request_sort_by'
|
|
34
|
+
require 'oci/analytics/models/work_request_status'
|
|
35
|
+
require 'oci/analytics/models/work_request_summary'
|
|
36
|
+
|
|
37
|
+
# Require generated clients
|
|
38
|
+
require 'oci/analytics/analytics_client'
|
|
39
|
+
require 'oci/analytics/analytics_client_composite_operations'
|
|
40
|
+
|
|
41
|
+
# Require service utilities
|
|
42
|
+
require 'oci/analytics/util'
|
|
@@ -0,0 +1,1134 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'uri'
|
|
4
|
+
require 'logger'
|
|
5
|
+
|
|
6
|
+
# rubocop:disable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
|
7
|
+
module OCI
|
|
8
|
+
# Analytics API.
|
|
9
|
+
class Analytics::AnalyticsClient
|
|
10
|
+
# Client used to make HTTP requests.
|
|
11
|
+
# @return [OCI::ApiClient]
|
|
12
|
+
attr_reader :api_client
|
|
13
|
+
|
|
14
|
+
# Fully qualified endpoint URL
|
|
15
|
+
# @return [String]
|
|
16
|
+
attr_reader :endpoint
|
|
17
|
+
|
|
18
|
+
# The default retry configuration to apply to all operations in this service client. This can be overridden
|
|
19
|
+
# on a per-operation basis. The default retry configuration value is `nil`, which means that an operation
|
|
20
|
+
# will not perform any retries
|
|
21
|
+
# @return [OCI::Retry::RetryConfig]
|
|
22
|
+
attr_reader :retry_config
|
|
23
|
+
|
|
24
|
+
# The region, which will usually correspond to a value in {OCI::Regions::REGION_ENUM}.
|
|
25
|
+
# @return [String]
|
|
26
|
+
attr_reader :region
|
|
27
|
+
|
|
28
|
+
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Layout/EmptyLines, Metrics/PerceivedComplexity
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# Creates a new AnalyticsClient.
|
|
32
|
+
# Notes:
|
|
33
|
+
# If a config is not specified, then the global OCI.config will be used.
|
|
34
|
+
#
|
|
35
|
+
# This client is not thread-safe
|
|
36
|
+
#
|
|
37
|
+
# Either a region or an endpoint must be specified. If an endpoint is specified, it will be used instead of the
|
|
38
|
+
# region. A region may be specified in the config or via or the region parameter. If specified in both, then the
|
|
39
|
+
# region parameter will be used.
|
|
40
|
+
# @param [Config] config A Config object.
|
|
41
|
+
# @param [String] region A region used to determine the service endpoint. This will usually
|
|
42
|
+
# correspond to a value in {OCI::Regions::REGION_ENUM}, but may be an arbitrary string.
|
|
43
|
+
# @param [String] endpoint The fully qualified endpoint URL
|
|
44
|
+
# @param [OCI::BaseSigner] signer A signer implementation which can be used by this client. If this is not provided then
|
|
45
|
+
# a signer will be constructed via the provided config. One use case of this parameter is instance principals authentication,
|
|
46
|
+
# so that the instance principals signer can be provided to the client
|
|
47
|
+
# @param [OCI::ApiClientProxySettings] proxy_settings If your environment requires you to use a proxy server for outgoing HTTP requests
|
|
48
|
+
# the details for the proxy can be provided in this parameter
|
|
49
|
+
# @param [OCI::Retry::RetryConfig] retry_config The retry configuration for this service client. This represents the default retry configuration to
|
|
50
|
+
# apply across all operations. This can be overridden on a per-operation basis. The default retry configuration value is `nil`, which means that an operation
|
|
51
|
+
# will not perform any retries
|
|
52
|
+
def initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil)
|
|
53
|
+
# If the signer is an InstancePrincipalsSecurityTokenSigner and no config was supplied (which is valid for instance principals)
|
|
54
|
+
# then create a dummy config to pass to the ApiClient constructor. If customers wish to create a client which uses instance principals
|
|
55
|
+
# and has config (either populated programmatically or loaded from a file), they must construct that config themselves and then
|
|
56
|
+
# pass it to this constructor.
|
|
57
|
+
#
|
|
58
|
+
# If there is no signer (or the signer is not an instance principals signer) and no config was supplied, this is not valid
|
|
59
|
+
# so try and load the config from the default file.
|
|
60
|
+
config ||= OCI.config unless signer.is_a?(OCI::Auth::Signers::InstancePrincipalsSecurityTokenSigner)
|
|
61
|
+
config ||= OCI::Config.new if signer.is_a?(OCI::Auth::Signers::InstancePrincipalsSecurityTokenSigner)
|
|
62
|
+
config.validate unless signer.is_a?(OCI::Auth::Signers::InstancePrincipalsSecurityTokenSigner)
|
|
63
|
+
|
|
64
|
+
if signer.nil?
|
|
65
|
+
signer = OCI::Signer.new(
|
|
66
|
+
config.user,
|
|
67
|
+
config.fingerprint,
|
|
68
|
+
config.tenancy,
|
|
69
|
+
config.key_file,
|
|
70
|
+
pass_phrase: config.pass_phrase,
|
|
71
|
+
private_key_content: config.key_content
|
|
72
|
+
)
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
@api_client = OCI::ApiClient.new(config, signer, proxy_settings: proxy_settings)
|
|
76
|
+
@retry_config = retry_config
|
|
77
|
+
|
|
78
|
+
if endpoint
|
|
79
|
+
@endpoint = endpoint + '/20190331'
|
|
80
|
+
else
|
|
81
|
+
region ||= config.region
|
|
82
|
+
region ||= signer.region if signer.respond_to?(:region)
|
|
83
|
+
self.region = region
|
|
84
|
+
end
|
|
85
|
+
logger.info "AnalyticsClient endpoint set to '#{@endpoint}'." if logger
|
|
86
|
+
end
|
|
87
|
+
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Layout/EmptyLines, Metrics/PerceivedComplexity
|
|
88
|
+
|
|
89
|
+
# Set the region that will be used to determine the service endpoint.
|
|
90
|
+
# This will usually correspond to a value in {OCI::Regions::REGION_ENUM},
|
|
91
|
+
# but may be an arbitrary string.
|
|
92
|
+
def region=(new_region)
|
|
93
|
+
@region = new_region
|
|
94
|
+
|
|
95
|
+
raise 'A region must be specified.' unless @region
|
|
96
|
+
|
|
97
|
+
@endpoint = OCI::Regions.get_service_endpoint_for_template(@region, 'https://analytics.{region}.ocp.{secondLevelDomain}') + '/20190331'
|
|
98
|
+
logger.info "AnalyticsClient endpoint set to '#{@endpoint} from region #{@region}'." if logger
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# @return [Logger] The logger for this client. May be nil.
|
|
102
|
+
def logger
|
|
103
|
+
@api_client.config.logger
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
107
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
108
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
# Change the compartment of an Analytics instance. The operation is long-running
|
|
112
|
+
# and creates a new WorkRequest.
|
|
113
|
+
#
|
|
114
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
115
|
+
#
|
|
116
|
+
# @param [OCI::Analytics::Models::ChangeCompartmentDetails] change_compartment_details Input payload to move the resource to a different compartment.
|
|
117
|
+
#
|
|
118
|
+
# @param [Hash] opts the optional parameters
|
|
119
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
120
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
121
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
122
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
123
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
124
|
+
#
|
|
125
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
126
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
127
|
+
#
|
|
128
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
129
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
130
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
131
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
132
|
+
# may be rejected).
|
|
133
|
+
#
|
|
134
|
+
# @return [Response] A Response object with data of type nil
|
|
135
|
+
def change_analytics_instance_compartment(analytics_instance_id, change_compartment_details, opts = {})
|
|
136
|
+
logger.debug 'Calling operation AnalyticsClient#change_analytics_instance_compartment.' if logger
|
|
137
|
+
|
|
138
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling change_analytics_instance_compartment." if analytics_instance_id.nil?
|
|
139
|
+
raise "Missing the required parameter 'change_compartment_details' when calling change_analytics_instance_compartment." if change_compartment_details.nil?
|
|
140
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
141
|
+
|
|
142
|
+
path = '/analyticsInstances/{analyticsInstanceId}/actions/changeCompartment'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
143
|
+
operation_signing_strategy = :standard
|
|
144
|
+
|
|
145
|
+
# rubocop:disable Style/NegatedIf
|
|
146
|
+
# Query Params
|
|
147
|
+
query_params = {}
|
|
148
|
+
|
|
149
|
+
# Header Params
|
|
150
|
+
header_params = {}
|
|
151
|
+
header_params[:accept] = 'application/json'
|
|
152
|
+
header_params[:'content-type'] = 'application/json'
|
|
153
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
154
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
155
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
156
|
+
# rubocop:enable Style/NegatedIf
|
|
157
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
158
|
+
|
|
159
|
+
post_body = @api_client.object_to_http_body(change_compartment_details)
|
|
160
|
+
|
|
161
|
+
# rubocop:disable Metrics/BlockLength
|
|
162
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#change_analytics_instance_compartment') do
|
|
163
|
+
@api_client.call_api(
|
|
164
|
+
:POST,
|
|
165
|
+
path,
|
|
166
|
+
endpoint,
|
|
167
|
+
header_params: header_params,
|
|
168
|
+
query_params: query_params,
|
|
169
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
170
|
+
body: post_body
|
|
171
|
+
)
|
|
172
|
+
end
|
|
173
|
+
# rubocop:enable Metrics/BlockLength
|
|
174
|
+
end
|
|
175
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
176
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
177
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
178
|
+
|
|
179
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
180
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
181
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
# Create a new AnalyticsInstance in the specified compartment. The operation is long-running
|
|
185
|
+
# and creates a new WorkRequest.
|
|
186
|
+
#
|
|
187
|
+
# @param [OCI::Analytics::Models::CreateAnalyticsInstanceDetails] create_analytics_instance_details Analytics Instance details.
|
|
188
|
+
#
|
|
189
|
+
# @param [Hash] opts the optional parameters
|
|
190
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
191
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
192
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
193
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
194
|
+
#
|
|
195
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
196
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
197
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
198
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
199
|
+
# may be rejected).
|
|
200
|
+
#
|
|
201
|
+
# @return [Response] A Response object with data of type {OCI::Analytics::Models::AnalyticsInstance AnalyticsInstance}
|
|
202
|
+
def create_analytics_instance(create_analytics_instance_details, opts = {})
|
|
203
|
+
logger.debug 'Calling operation AnalyticsClient#create_analytics_instance.' if logger
|
|
204
|
+
|
|
205
|
+
raise "Missing the required parameter 'create_analytics_instance_details' when calling create_analytics_instance." if create_analytics_instance_details.nil?
|
|
206
|
+
|
|
207
|
+
path = '/analyticsInstances'
|
|
208
|
+
operation_signing_strategy = :standard
|
|
209
|
+
|
|
210
|
+
# rubocop:disable Style/NegatedIf
|
|
211
|
+
# Query Params
|
|
212
|
+
query_params = {}
|
|
213
|
+
|
|
214
|
+
# Header Params
|
|
215
|
+
header_params = {}
|
|
216
|
+
header_params[:accept] = 'application/json'
|
|
217
|
+
header_params[:'content-type'] = 'application/json'
|
|
218
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
219
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
220
|
+
# rubocop:enable Style/NegatedIf
|
|
221
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
222
|
+
|
|
223
|
+
post_body = @api_client.object_to_http_body(create_analytics_instance_details)
|
|
224
|
+
|
|
225
|
+
# rubocop:disable Metrics/BlockLength
|
|
226
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#create_analytics_instance') do
|
|
227
|
+
@api_client.call_api(
|
|
228
|
+
:POST,
|
|
229
|
+
path,
|
|
230
|
+
endpoint,
|
|
231
|
+
header_params: header_params,
|
|
232
|
+
query_params: query_params,
|
|
233
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
234
|
+
body: post_body,
|
|
235
|
+
return_type: 'OCI::Analytics::Models::AnalyticsInstance'
|
|
236
|
+
)
|
|
237
|
+
end
|
|
238
|
+
# rubocop:enable Metrics/BlockLength
|
|
239
|
+
end
|
|
240
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
241
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
242
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
243
|
+
|
|
244
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
245
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
246
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
# Terminates the specified Analytics instance. The operation is long-running
|
|
250
|
+
# and creates a new WorkRequest.
|
|
251
|
+
#
|
|
252
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
253
|
+
#
|
|
254
|
+
# @param [Hash] opts the optional parameters
|
|
255
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
256
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
257
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
258
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
259
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
260
|
+
#
|
|
261
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
262
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
263
|
+
#
|
|
264
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
265
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
266
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
267
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
268
|
+
# may be rejected).
|
|
269
|
+
#
|
|
270
|
+
# @return [Response] A Response object with data of type nil
|
|
271
|
+
def delete_analytics_instance(analytics_instance_id, opts = {})
|
|
272
|
+
logger.debug 'Calling operation AnalyticsClient#delete_analytics_instance.' if logger
|
|
273
|
+
|
|
274
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling delete_analytics_instance." if analytics_instance_id.nil?
|
|
275
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
276
|
+
|
|
277
|
+
path = '/analyticsInstances/{analyticsInstanceId}'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
278
|
+
operation_signing_strategy = :standard
|
|
279
|
+
|
|
280
|
+
# rubocop:disable Style/NegatedIf
|
|
281
|
+
# Query Params
|
|
282
|
+
query_params = {}
|
|
283
|
+
|
|
284
|
+
# Header Params
|
|
285
|
+
header_params = {}
|
|
286
|
+
header_params[:accept] = 'application/json'
|
|
287
|
+
header_params[:'content-type'] = 'application/json'
|
|
288
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
289
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
290
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
291
|
+
# rubocop:enable Style/NegatedIf
|
|
292
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
293
|
+
|
|
294
|
+
post_body = nil
|
|
295
|
+
|
|
296
|
+
# rubocop:disable Metrics/BlockLength
|
|
297
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#delete_analytics_instance') do
|
|
298
|
+
@api_client.call_api(
|
|
299
|
+
:DELETE,
|
|
300
|
+
path,
|
|
301
|
+
endpoint,
|
|
302
|
+
header_params: header_params,
|
|
303
|
+
query_params: query_params,
|
|
304
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
305
|
+
body: post_body
|
|
306
|
+
)
|
|
307
|
+
end
|
|
308
|
+
# rubocop:enable Metrics/BlockLength
|
|
309
|
+
end
|
|
310
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
311
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
312
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
313
|
+
|
|
314
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
315
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
316
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
# Cancel a work request that has not started yet.
|
|
320
|
+
#
|
|
321
|
+
# @param [String] work_request_id The OCID of the work request.
|
|
322
|
+
#
|
|
323
|
+
# @param [Hash] opts the optional parameters
|
|
324
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
325
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
326
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
327
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
328
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
329
|
+
#
|
|
330
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
331
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
332
|
+
#
|
|
333
|
+
# @return [Response] A Response object with data of type nil
|
|
334
|
+
def delete_work_request(work_request_id, opts = {})
|
|
335
|
+
logger.debug 'Calling operation AnalyticsClient#delete_work_request.' if logger
|
|
336
|
+
|
|
337
|
+
raise "Missing the required parameter 'work_request_id' when calling delete_work_request." if work_request_id.nil?
|
|
338
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
339
|
+
|
|
340
|
+
path = '/workRequests/{workRequestId}'.sub('{workRequestId}', work_request_id.to_s)
|
|
341
|
+
operation_signing_strategy = :standard
|
|
342
|
+
|
|
343
|
+
# rubocop:disable Style/NegatedIf
|
|
344
|
+
# Query Params
|
|
345
|
+
query_params = {}
|
|
346
|
+
|
|
347
|
+
# Header Params
|
|
348
|
+
header_params = {}
|
|
349
|
+
header_params[:accept] = 'application/json'
|
|
350
|
+
header_params[:'content-type'] = 'application/json'
|
|
351
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
352
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
353
|
+
# rubocop:enable Style/NegatedIf
|
|
354
|
+
|
|
355
|
+
post_body = nil
|
|
356
|
+
|
|
357
|
+
# rubocop:disable Metrics/BlockLength
|
|
358
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#delete_work_request') do
|
|
359
|
+
@api_client.call_api(
|
|
360
|
+
:DELETE,
|
|
361
|
+
path,
|
|
362
|
+
endpoint,
|
|
363
|
+
header_params: header_params,
|
|
364
|
+
query_params: query_params,
|
|
365
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
366
|
+
body: post_body
|
|
367
|
+
)
|
|
368
|
+
end
|
|
369
|
+
# rubocop:enable Metrics/BlockLength
|
|
370
|
+
end
|
|
371
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
372
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
373
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
374
|
+
|
|
375
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
376
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
377
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
# Info for a specific Analytics instance.
|
|
381
|
+
#
|
|
382
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
383
|
+
#
|
|
384
|
+
# @param [Hash] opts the optional parameters
|
|
385
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
386
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
387
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
388
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
389
|
+
#
|
|
390
|
+
# @return [Response] A Response object with data of type {OCI::Analytics::Models::AnalyticsInstance AnalyticsInstance}
|
|
391
|
+
def get_analytics_instance(analytics_instance_id, opts = {})
|
|
392
|
+
logger.debug 'Calling operation AnalyticsClient#get_analytics_instance.' if logger
|
|
393
|
+
|
|
394
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling get_analytics_instance." if analytics_instance_id.nil?
|
|
395
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
396
|
+
|
|
397
|
+
path = '/analyticsInstances/{analyticsInstanceId}'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
398
|
+
operation_signing_strategy = :standard
|
|
399
|
+
|
|
400
|
+
# rubocop:disable Style/NegatedIf
|
|
401
|
+
# Query Params
|
|
402
|
+
query_params = {}
|
|
403
|
+
|
|
404
|
+
# Header Params
|
|
405
|
+
header_params = {}
|
|
406
|
+
header_params[:accept] = 'application/json'
|
|
407
|
+
header_params[:'content-type'] = 'application/json'
|
|
408
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
409
|
+
# rubocop:enable Style/NegatedIf
|
|
410
|
+
|
|
411
|
+
post_body = nil
|
|
412
|
+
|
|
413
|
+
# rubocop:disable Metrics/BlockLength
|
|
414
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#get_analytics_instance') do
|
|
415
|
+
@api_client.call_api(
|
|
416
|
+
:GET,
|
|
417
|
+
path,
|
|
418
|
+
endpoint,
|
|
419
|
+
header_params: header_params,
|
|
420
|
+
query_params: query_params,
|
|
421
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
422
|
+
body: post_body,
|
|
423
|
+
return_type: 'OCI::Analytics::Models::AnalyticsInstance'
|
|
424
|
+
)
|
|
425
|
+
end
|
|
426
|
+
# rubocop:enable Metrics/BlockLength
|
|
427
|
+
end
|
|
428
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
429
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
430
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
431
|
+
|
|
432
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
433
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
434
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
# Get the details of a work request.
|
|
438
|
+
#
|
|
439
|
+
# @param [String] work_request_id The OCID of the work request.
|
|
440
|
+
#
|
|
441
|
+
# @param [Hash] opts the optional parameters
|
|
442
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
443
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
444
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
445
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
446
|
+
#
|
|
447
|
+
# @return [Response] A Response object with data of type {OCI::Analytics::Models::WorkRequest WorkRequest}
|
|
448
|
+
def get_work_request(work_request_id, opts = {})
|
|
449
|
+
logger.debug 'Calling operation AnalyticsClient#get_work_request.' if logger
|
|
450
|
+
|
|
451
|
+
raise "Missing the required parameter 'work_request_id' when calling get_work_request." if work_request_id.nil?
|
|
452
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
453
|
+
|
|
454
|
+
path = '/workRequests/{workRequestId}'.sub('{workRequestId}', work_request_id.to_s)
|
|
455
|
+
operation_signing_strategy = :standard
|
|
456
|
+
|
|
457
|
+
# rubocop:disable Style/NegatedIf
|
|
458
|
+
# Query Params
|
|
459
|
+
query_params = {}
|
|
460
|
+
|
|
461
|
+
# Header Params
|
|
462
|
+
header_params = {}
|
|
463
|
+
header_params[:accept] = 'application/json'
|
|
464
|
+
header_params[:'content-type'] = 'application/json'
|
|
465
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
466
|
+
# rubocop:enable Style/NegatedIf
|
|
467
|
+
|
|
468
|
+
post_body = nil
|
|
469
|
+
|
|
470
|
+
# rubocop:disable Metrics/BlockLength
|
|
471
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#get_work_request') do
|
|
472
|
+
@api_client.call_api(
|
|
473
|
+
:GET,
|
|
474
|
+
path,
|
|
475
|
+
endpoint,
|
|
476
|
+
header_params: header_params,
|
|
477
|
+
query_params: query_params,
|
|
478
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
479
|
+
body: post_body,
|
|
480
|
+
return_type: 'OCI::Analytics::Models::WorkRequest'
|
|
481
|
+
)
|
|
482
|
+
end
|
|
483
|
+
# rubocop:enable Metrics/BlockLength
|
|
484
|
+
end
|
|
485
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
486
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
487
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
488
|
+
|
|
489
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
490
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
491
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
# List Analytics instances.
|
|
495
|
+
#
|
|
496
|
+
# @param [String] compartment_id The OCID of the compartment.
|
|
497
|
+
#
|
|
498
|
+
# @param [Hash] opts the optional parameters
|
|
499
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
500
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
501
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
502
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
503
|
+
#
|
|
504
|
+
# @option opts [String] :name A filter to return only resources that match the given name exactly.
|
|
505
|
+
#
|
|
506
|
+
# @option opts [String] :capacity_type A filter to only return resources matching the capacity type enum. Values are
|
|
507
|
+
# case-insensitive.
|
|
508
|
+
#
|
|
509
|
+
# @option opts [String] :feature_set A filter to only return resources matching the feature set. Values are
|
|
510
|
+
# case-insensitive.
|
|
511
|
+
#
|
|
512
|
+
# @option opts [String] :lifecycle_state A filter to only return resources matching the lifecycle state. The state
|
|
513
|
+
# value is case-insensitive.
|
|
514
|
+
#
|
|
515
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
516
|
+
# \"List\" call. For important details about how pagination works, see
|
|
517
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
518
|
+
#
|
|
519
|
+
# Example: `50`
|
|
520
|
+
#
|
|
521
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
522
|
+
# call. For important details about how pagination works, see
|
|
523
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
524
|
+
#
|
|
525
|
+
# @option opts [String] :sort_by The field to sort by (one column only). Default sort order is
|
|
526
|
+
# ascending exception of `timeCreated` column (descending).
|
|
527
|
+
#
|
|
528
|
+
# @option opts [String] :sort_order The sort order to use, either ascending (`ASC`) or descending (`DESC`).
|
|
529
|
+
#
|
|
530
|
+
# @return [Response] A Response object with data of type Array<{OCI::Analytics::Models::AnalyticsInstanceSummary AnalyticsInstanceSummary}>
|
|
531
|
+
def list_analytics_instances(compartment_id, opts = {})
|
|
532
|
+
logger.debug 'Calling operation AnalyticsClient#list_analytics_instances.' if logger
|
|
533
|
+
|
|
534
|
+
raise "Missing the required parameter 'compartment_id' when calling list_analytics_instances." if compartment_id.nil?
|
|
535
|
+
|
|
536
|
+
if opts[:capacity_type] && !OCI::Analytics::Models::CAPACITY_TYPE_ENUM.include?(opts[:capacity_type])
|
|
537
|
+
raise 'Invalid value for "capacity_type", must be one of the values in OCI::Analytics::Models::CAPACITY_TYPE_ENUM.'
|
|
538
|
+
end
|
|
539
|
+
|
|
540
|
+
if opts[:feature_set] && !OCI::Analytics::Models::FEATURE_SET_ENUM.include?(opts[:feature_set])
|
|
541
|
+
raise 'Invalid value for "feature_set", must be one of the values in OCI::Analytics::Models::FEATURE_SET_ENUM.'
|
|
542
|
+
end
|
|
543
|
+
|
|
544
|
+
if opts[:lifecycle_state] && !OCI::Analytics::Models::ANALYTICS_INSTANCE_LIFECYCLE_STATE_ENUM.include?(opts[:lifecycle_state])
|
|
545
|
+
raise 'Invalid value for "lifecycle_state", must be one of the values in OCI::Analytics::Models::ANALYTICS_INSTANCE_LIFECYCLE_STATE_ENUM.'
|
|
546
|
+
end
|
|
547
|
+
|
|
548
|
+
if opts[:sort_by] && !OCI::Analytics::Models::SORT_BY_ENUM.include?(opts[:sort_by])
|
|
549
|
+
raise 'Invalid value for "sort_by", must be one of the values in OCI::Analytics::Models::SORT_BY_ENUM.'
|
|
550
|
+
end
|
|
551
|
+
|
|
552
|
+
if opts[:sort_order] && !OCI::Analytics::Models::SORT_ORDER_ENUM.include?(opts[:sort_order])
|
|
553
|
+
raise 'Invalid value for "sort_order", must be one of the values in OCI::Analytics::Models::SORT_ORDER_ENUM.'
|
|
554
|
+
end
|
|
555
|
+
|
|
556
|
+
path = '/analyticsInstances'
|
|
557
|
+
operation_signing_strategy = :standard
|
|
558
|
+
|
|
559
|
+
# rubocop:disable Style/NegatedIf
|
|
560
|
+
# Query Params
|
|
561
|
+
query_params = {}
|
|
562
|
+
query_params[:compartmentId] = compartment_id
|
|
563
|
+
query_params[:name] = opts[:name] if opts[:name]
|
|
564
|
+
query_params[:capacityType] = opts[:capacity_type] if opts[:capacity_type]
|
|
565
|
+
query_params[:featureSet] = opts[:feature_set] if opts[:feature_set]
|
|
566
|
+
query_params[:lifecycleState] = opts[:lifecycle_state] if opts[:lifecycle_state]
|
|
567
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
568
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
569
|
+
query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
|
|
570
|
+
query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
|
|
571
|
+
|
|
572
|
+
# Header Params
|
|
573
|
+
header_params = {}
|
|
574
|
+
header_params[:accept] = 'application/json'
|
|
575
|
+
header_params[:'content-type'] = 'application/json'
|
|
576
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
577
|
+
# rubocop:enable Style/NegatedIf
|
|
578
|
+
|
|
579
|
+
post_body = nil
|
|
580
|
+
|
|
581
|
+
# rubocop:disable Metrics/BlockLength
|
|
582
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#list_analytics_instances') do
|
|
583
|
+
@api_client.call_api(
|
|
584
|
+
:GET,
|
|
585
|
+
path,
|
|
586
|
+
endpoint,
|
|
587
|
+
header_params: header_params,
|
|
588
|
+
query_params: query_params,
|
|
589
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
590
|
+
body: post_body,
|
|
591
|
+
return_type: 'Array<OCI::Analytics::Models::AnalyticsInstanceSummary>'
|
|
592
|
+
)
|
|
593
|
+
end
|
|
594
|
+
# rubocop:enable Metrics/BlockLength
|
|
595
|
+
end
|
|
596
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
597
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
598
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
599
|
+
|
|
600
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
601
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
602
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
# Get the errors of a work request.
|
|
606
|
+
#
|
|
607
|
+
# @param [String] work_request_id The OCID of the work request.
|
|
608
|
+
#
|
|
609
|
+
# @param [Hash] opts the optional parameters
|
|
610
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
611
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
612
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
613
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
614
|
+
#
|
|
615
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
616
|
+
# \"List\" call. For important details about how pagination works, see
|
|
617
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
618
|
+
#
|
|
619
|
+
# Example: `50`
|
|
620
|
+
#
|
|
621
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
622
|
+
# call. For important details about how pagination works, see
|
|
623
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
624
|
+
#
|
|
625
|
+
# @return [Response] A Response object with data of type Array<{OCI::Analytics::Models::WorkRequestError WorkRequestError}>
|
|
626
|
+
def list_work_request_errors(work_request_id, opts = {})
|
|
627
|
+
logger.debug 'Calling operation AnalyticsClient#list_work_request_errors.' if logger
|
|
628
|
+
|
|
629
|
+
raise "Missing the required parameter 'work_request_id' when calling list_work_request_errors." if work_request_id.nil?
|
|
630
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
631
|
+
|
|
632
|
+
path = '/workRequests/{workRequestId}/errors'.sub('{workRequestId}', work_request_id.to_s)
|
|
633
|
+
operation_signing_strategy = :standard
|
|
634
|
+
|
|
635
|
+
# rubocop:disable Style/NegatedIf
|
|
636
|
+
# Query Params
|
|
637
|
+
query_params = {}
|
|
638
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
639
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
640
|
+
|
|
641
|
+
# Header Params
|
|
642
|
+
header_params = {}
|
|
643
|
+
header_params[:accept] = 'application/json'
|
|
644
|
+
header_params[:'content-type'] = 'application/json'
|
|
645
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
646
|
+
# rubocop:enable Style/NegatedIf
|
|
647
|
+
|
|
648
|
+
post_body = nil
|
|
649
|
+
|
|
650
|
+
# rubocop:disable Metrics/BlockLength
|
|
651
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#list_work_request_errors') do
|
|
652
|
+
@api_client.call_api(
|
|
653
|
+
:GET,
|
|
654
|
+
path,
|
|
655
|
+
endpoint,
|
|
656
|
+
header_params: header_params,
|
|
657
|
+
query_params: query_params,
|
|
658
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
659
|
+
body: post_body,
|
|
660
|
+
return_type: 'Array<OCI::Analytics::Models::WorkRequestError>'
|
|
661
|
+
)
|
|
662
|
+
end
|
|
663
|
+
# rubocop:enable Metrics/BlockLength
|
|
664
|
+
end
|
|
665
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
666
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
667
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
668
|
+
|
|
669
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
670
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
671
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
# Get the logs of a work request.
|
|
675
|
+
#
|
|
676
|
+
# @param [String] work_request_id The OCID of the work request.
|
|
677
|
+
#
|
|
678
|
+
# @param [Hash] opts the optional parameters
|
|
679
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
680
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
681
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
682
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
683
|
+
#
|
|
684
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
685
|
+
# \"List\" call. For important details about how pagination works, see
|
|
686
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
687
|
+
#
|
|
688
|
+
# Example: `50`
|
|
689
|
+
#
|
|
690
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
691
|
+
# call. For important details about how pagination works, see
|
|
692
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
693
|
+
#
|
|
694
|
+
# @return [Response] A Response object with data of type Array<{OCI::Analytics::Models::WorkRequestLog WorkRequestLog}>
|
|
695
|
+
def list_work_request_logs(work_request_id, opts = {})
|
|
696
|
+
logger.debug 'Calling operation AnalyticsClient#list_work_request_logs.' if logger
|
|
697
|
+
|
|
698
|
+
raise "Missing the required parameter 'work_request_id' when calling list_work_request_logs." if work_request_id.nil?
|
|
699
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
700
|
+
|
|
701
|
+
path = '/workRequests/{workRequestId}/logs'.sub('{workRequestId}', work_request_id.to_s)
|
|
702
|
+
operation_signing_strategy = :standard
|
|
703
|
+
|
|
704
|
+
# rubocop:disable Style/NegatedIf
|
|
705
|
+
# Query Params
|
|
706
|
+
query_params = {}
|
|
707
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
708
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
709
|
+
|
|
710
|
+
# Header Params
|
|
711
|
+
header_params = {}
|
|
712
|
+
header_params[:accept] = 'application/json'
|
|
713
|
+
header_params[:'content-type'] = 'application/json'
|
|
714
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
715
|
+
# rubocop:enable Style/NegatedIf
|
|
716
|
+
|
|
717
|
+
post_body = nil
|
|
718
|
+
|
|
719
|
+
# rubocop:disable Metrics/BlockLength
|
|
720
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#list_work_request_logs') do
|
|
721
|
+
@api_client.call_api(
|
|
722
|
+
:GET,
|
|
723
|
+
path,
|
|
724
|
+
endpoint,
|
|
725
|
+
header_params: header_params,
|
|
726
|
+
query_params: query_params,
|
|
727
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
728
|
+
body: post_body,
|
|
729
|
+
return_type: 'Array<OCI::Analytics::Models::WorkRequestLog>'
|
|
730
|
+
)
|
|
731
|
+
end
|
|
732
|
+
# rubocop:enable Metrics/BlockLength
|
|
733
|
+
end
|
|
734
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
735
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
736
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
737
|
+
|
|
738
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
739
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
740
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
# List all work requests in a compartment.
|
|
744
|
+
#
|
|
745
|
+
# @param [String] compartment_id The OCID of the compartment.
|
|
746
|
+
#
|
|
747
|
+
# @param [Hash] opts the optional parameters
|
|
748
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
749
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
750
|
+
# @option opts [String] :resource_id The OCID of the resource associated with a work request.
|
|
751
|
+
#
|
|
752
|
+
# @option opts [String] :resource_type Type of the resource associated with a work request
|
|
753
|
+
#
|
|
754
|
+
# @option opts [Array<String>] :status One or more work request status values to filter on.
|
|
755
|
+
#
|
|
756
|
+
# Allowed values are: ACCEPTED, IN_PROGRESS, FAILED, SUCCEEDED, CANCELING, CANCELED
|
|
757
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
758
|
+
# \"List\" call. For important details about how pagination works, see
|
|
759
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
760
|
+
#
|
|
761
|
+
# Example: `50`
|
|
762
|
+
#
|
|
763
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
764
|
+
# call. For important details about how pagination works, see
|
|
765
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
766
|
+
#
|
|
767
|
+
# @option opts [String] :sort_by The field used for sorting work request results.
|
|
768
|
+
#
|
|
769
|
+
# @option opts [String] :sort_order The sort order to use, either ascending (`ASC`) or descending (`DESC`).
|
|
770
|
+
#
|
|
771
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
772
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
773
|
+
#
|
|
774
|
+
# @return [Response] A Response object with data of type Array<{OCI::Analytics::Models::WorkRequestSummary WorkRequestSummary}>
|
|
775
|
+
def list_work_requests(compartment_id, opts = {})
|
|
776
|
+
logger.debug 'Calling operation AnalyticsClient#list_work_requests.' if logger
|
|
777
|
+
|
|
778
|
+
raise "Missing the required parameter 'compartment_id' when calling list_work_requests." if compartment_id.nil?
|
|
779
|
+
|
|
780
|
+
if opts[:resource_type] && !OCI::Analytics::Models::WORK_REQUEST_RESOURCE_TYPE_ENUM.include?(opts[:resource_type])
|
|
781
|
+
raise 'Invalid value for "resource_type", must be one of the values in OCI::Analytics::Models::WORK_REQUEST_RESOURCE_TYPE_ENUM.'
|
|
782
|
+
end
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
status_allowable_values = %w[ACCEPTED IN_PROGRESS FAILED SUCCEEDED CANCELING CANCELED]
|
|
786
|
+
if opts[:status] && !opts[:status].empty?
|
|
787
|
+
opts[:status].each do |val_to_check|
|
|
788
|
+
unless status_allowable_values.include?(val_to_check)
|
|
789
|
+
raise 'Invalid value for "status", must be one of ACCEPTED, IN_PROGRESS, FAILED, SUCCEEDED, CANCELING, CANCELED.'
|
|
790
|
+
end
|
|
791
|
+
end
|
|
792
|
+
end
|
|
793
|
+
|
|
794
|
+
if opts[:sort_by] && !OCI::Analytics::Models::WORK_REQUEST_SORT_BY_ENUM.include?(opts[:sort_by])
|
|
795
|
+
raise 'Invalid value for "sort_by", must be one of the values in OCI::Analytics::Models::WORK_REQUEST_SORT_BY_ENUM.'
|
|
796
|
+
end
|
|
797
|
+
|
|
798
|
+
if opts[:sort_order] && !OCI::Analytics::Models::SORT_ORDER_ENUM.include?(opts[:sort_order])
|
|
799
|
+
raise 'Invalid value for "sort_order", must be one of the values in OCI::Analytics::Models::SORT_ORDER_ENUM.'
|
|
800
|
+
end
|
|
801
|
+
|
|
802
|
+
path = '/workRequests'
|
|
803
|
+
operation_signing_strategy = :standard
|
|
804
|
+
|
|
805
|
+
# rubocop:disable Style/NegatedIf
|
|
806
|
+
# Query Params
|
|
807
|
+
query_params = {}
|
|
808
|
+
query_params[:compartmentId] = compartment_id
|
|
809
|
+
query_params[:resourceId] = opts[:resource_id] if opts[:resource_id]
|
|
810
|
+
query_params[:resourceType] = opts[:resource_type] if opts[:resource_type]
|
|
811
|
+
query_params[:status] = OCI::ApiClient.build_collection_params(opts[:status], :multi) if opts[:status] && !opts[:status].empty?
|
|
812
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
813
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
814
|
+
query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
|
|
815
|
+
query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
|
|
816
|
+
|
|
817
|
+
# Header Params
|
|
818
|
+
header_params = {}
|
|
819
|
+
header_params[:accept] = 'application/json'
|
|
820
|
+
header_params[:'content-type'] = 'application/json'
|
|
821
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
822
|
+
# rubocop:enable Style/NegatedIf
|
|
823
|
+
|
|
824
|
+
post_body = nil
|
|
825
|
+
|
|
826
|
+
# rubocop:disable Metrics/BlockLength
|
|
827
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#list_work_requests') do
|
|
828
|
+
@api_client.call_api(
|
|
829
|
+
:GET,
|
|
830
|
+
path,
|
|
831
|
+
endpoint,
|
|
832
|
+
header_params: header_params,
|
|
833
|
+
query_params: query_params,
|
|
834
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
835
|
+
body: post_body,
|
|
836
|
+
return_type: 'Array<OCI::Analytics::Models::WorkRequestSummary>'
|
|
837
|
+
)
|
|
838
|
+
end
|
|
839
|
+
# rubocop:enable Metrics/BlockLength
|
|
840
|
+
end
|
|
841
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
842
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
843
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
844
|
+
|
|
845
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
846
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
847
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
# Scale an Analytics instance up or down. The operation is long-running
|
|
851
|
+
# and creates a new WorkRequest.
|
|
852
|
+
#
|
|
853
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
854
|
+
#
|
|
855
|
+
# @param [OCI::Analytics::Models::ScaleAnalyticsInstanceDetails] scale_analytics_instance_details Input payload for scaling an Analytics instance up or down.
|
|
856
|
+
#
|
|
857
|
+
# @param [Hash] opts the optional parameters
|
|
858
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
859
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
860
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
861
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
862
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
863
|
+
#
|
|
864
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
865
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
866
|
+
#
|
|
867
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
868
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
869
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
870
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
871
|
+
# may be rejected).
|
|
872
|
+
#
|
|
873
|
+
# @return [Response] A Response object with data of type nil
|
|
874
|
+
def scale_analytics_instance(analytics_instance_id, scale_analytics_instance_details, opts = {})
|
|
875
|
+
logger.debug 'Calling operation AnalyticsClient#scale_analytics_instance.' if logger
|
|
876
|
+
|
|
877
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling scale_analytics_instance." if analytics_instance_id.nil?
|
|
878
|
+
raise "Missing the required parameter 'scale_analytics_instance_details' when calling scale_analytics_instance." if scale_analytics_instance_details.nil?
|
|
879
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
880
|
+
|
|
881
|
+
path = '/analyticsInstances/{analyticsInstanceId}/actions/scale'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
882
|
+
operation_signing_strategy = :standard
|
|
883
|
+
|
|
884
|
+
# rubocop:disable Style/NegatedIf
|
|
885
|
+
# Query Params
|
|
886
|
+
query_params = {}
|
|
887
|
+
|
|
888
|
+
# Header Params
|
|
889
|
+
header_params = {}
|
|
890
|
+
header_params[:accept] = 'application/json'
|
|
891
|
+
header_params[:'content-type'] = 'application/json'
|
|
892
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
893
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
894
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
895
|
+
# rubocop:enable Style/NegatedIf
|
|
896
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
897
|
+
|
|
898
|
+
post_body = @api_client.object_to_http_body(scale_analytics_instance_details)
|
|
899
|
+
|
|
900
|
+
# rubocop:disable Metrics/BlockLength
|
|
901
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#scale_analytics_instance') do
|
|
902
|
+
@api_client.call_api(
|
|
903
|
+
:POST,
|
|
904
|
+
path,
|
|
905
|
+
endpoint,
|
|
906
|
+
header_params: header_params,
|
|
907
|
+
query_params: query_params,
|
|
908
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
909
|
+
body: post_body
|
|
910
|
+
)
|
|
911
|
+
end
|
|
912
|
+
# rubocop:enable Metrics/BlockLength
|
|
913
|
+
end
|
|
914
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
915
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
916
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
917
|
+
|
|
918
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
919
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
920
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
# Starts the specified Analytics instance. The operation is long-running
|
|
924
|
+
# and creates a new WorkRequest.
|
|
925
|
+
#
|
|
926
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
927
|
+
#
|
|
928
|
+
# @param [Hash] opts the optional parameters
|
|
929
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
930
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
931
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
932
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
933
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
934
|
+
#
|
|
935
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
936
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
937
|
+
#
|
|
938
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
939
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
940
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
941
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
942
|
+
# may be rejected).
|
|
943
|
+
#
|
|
944
|
+
# @return [Response] A Response object with data of type nil
|
|
945
|
+
def start_analytics_instance(analytics_instance_id, opts = {})
|
|
946
|
+
logger.debug 'Calling operation AnalyticsClient#start_analytics_instance.' if logger
|
|
947
|
+
|
|
948
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling start_analytics_instance." if analytics_instance_id.nil?
|
|
949
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
950
|
+
|
|
951
|
+
path = '/analyticsInstances/{analyticsInstanceId}/actions/start'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
952
|
+
operation_signing_strategy = :standard
|
|
953
|
+
|
|
954
|
+
# rubocop:disable Style/NegatedIf
|
|
955
|
+
# Query Params
|
|
956
|
+
query_params = {}
|
|
957
|
+
|
|
958
|
+
# Header Params
|
|
959
|
+
header_params = {}
|
|
960
|
+
header_params[:accept] = 'application/json'
|
|
961
|
+
header_params[:'content-type'] = 'application/json'
|
|
962
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
963
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
964
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
965
|
+
# rubocop:enable Style/NegatedIf
|
|
966
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
967
|
+
|
|
968
|
+
post_body = nil
|
|
969
|
+
|
|
970
|
+
# rubocop:disable Metrics/BlockLength
|
|
971
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#start_analytics_instance') do
|
|
972
|
+
@api_client.call_api(
|
|
973
|
+
:POST,
|
|
974
|
+
path,
|
|
975
|
+
endpoint,
|
|
976
|
+
header_params: header_params,
|
|
977
|
+
query_params: query_params,
|
|
978
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
979
|
+
body: post_body
|
|
980
|
+
)
|
|
981
|
+
end
|
|
982
|
+
# rubocop:enable Metrics/BlockLength
|
|
983
|
+
end
|
|
984
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
985
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
986
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
987
|
+
|
|
988
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
989
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
990
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
# Stop the specified Analytics instance. The operation is long-running
|
|
994
|
+
# and creates a new WorkRequest.
|
|
995
|
+
#
|
|
996
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
997
|
+
#
|
|
998
|
+
# @param [Hash] opts the optional parameters
|
|
999
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1000
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
1001
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
1002
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
1003
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
1004
|
+
#
|
|
1005
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
1006
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
1007
|
+
#
|
|
1008
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
1009
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
1010
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
1011
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
1012
|
+
# may be rejected).
|
|
1013
|
+
#
|
|
1014
|
+
# @return [Response] A Response object with data of type nil
|
|
1015
|
+
def stop_analytics_instance(analytics_instance_id, opts = {})
|
|
1016
|
+
logger.debug 'Calling operation AnalyticsClient#stop_analytics_instance.' if logger
|
|
1017
|
+
|
|
1018
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling stop_analytics_instance." if analytics_instance_id.nil?
|
|
1019
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
1020
|
+
|
|
1021
|
+
path = '/analyticsInstances/{analyticsInstanceId}/actions/stop'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
1022
|
+
operation_signing_strategy = :standard
|
|
1023
|
+
|
|
1024
|
+
# rubocop:disable Style/NegatedIf
|
|
1025
|
+
# Query Params
|
|
1026
|
+
query_params = {}
|
|
1027
|
+
|
|
1028
|
+
# Header Params
|
|
1029
|
+
header_params = {}
|
|
1030
|
+
header_params[:accept] = 'application/json'
|
|
1031
|
+
header_params[:'content-type'] = 'application/json'
|
|
1032
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
1033
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
1034
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
1035
|
+
# rubocop:enable Style/NegatedIf
|
|
1036
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
1037
|
+
|
|
1038
|
+
post_body = nil
|
|
1039
|
+
|
|
1040
|
+
# rubocop:disable Metrics/BlockLength
|
|
1041
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#stop_analytics_instance') do
|
|
1042
|
+
@api_client.call_api(
|
|
1043
|
+
:POST,
|
|
1044
|
+
path,
|
|
1045
|
+
endpoint,
|
|
1046
|
+
header_params: header_params,
|
|
1047
|
+
query_params: query_params,
|
|
1048
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1049
|
+
body: post_body
|
|
1050
|
+
)
|
|
1051
|
+
end
|
|
1052
|
+
# rubocop:enable Metrics/BlockLength
|
|
1053
|
+
end
|
|
1054
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1055
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1056
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1057
|
+
|
|
1058
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1059
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1060
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
# Updates certain fields of an Analytics instance. Fields that are not provided in the
|
|
1064
|
+
# request will not be updated.
|
|
1065
|
+
#
|
|
1066
|
+
# @param [String] analytics_instance_id The OCID of the AnalyticsInstance.
|
|
1067
|
+
#
|
|
1068
|
+
# @param [OCI::Analytics::Models::UpdateAnalyticsInstanceDetails] update_analytics_instance_details The Analytics Instance fields to update. Fields that are not provided
|
|
1069
|
+
# will not be updated.
|
|
1070
|
+
#
|
|
1071
|
+
# @param [Hash] opts the optional parameters
|
|
1072
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1073
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
1074
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
1075
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
1076
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
1077
|
+
#
|
|
1078
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
1079
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
1080
|
+
#
|
|
1081
|
+
# @return [Response] A Response object with data of type {OCI::Analytics::Models::AnalyticsInstance AnalyticsInstance}
|
|
1082
|
+
def update_analytics_instance(analytics_instance_id, update_analytics_instance_details, opts = {})
|
|
1083
|
+
logger.debug 'Calling operation AnalyticsClient#update_analytics_instance.' if logger
|
|
1084
|
+
|
|
1085
|
+
raise "Missing the required parameter 'analytics_instance_id' when calling update_analytics_instance." if analytics_instance_id.nil?
|
|
1086
|
+
raise "Missing the required parameter 'update_analytics_instance_details' when calling update_analytics_instance." if update_analytics_instance_details.nil?
|
|
1087
|
+
raise "Parameter value for 'analytics_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(analytics_instance_id)
|
|
1088
|
+
|
|
1089
|
+
path = '/analyticsInstances/{analyticsInstanceId}'.sub('{analyticsInstanceId}', analytics_instance_id.to_s)
|
|
1090
|
+
operation_signing_strategy = :standard
|
|
1091
|
+
|
|
1092
|
+
# rubocop:disable Style/NegatedIf
|
|
1093
|
+
# Query Params
|
|
1094
|
+
query_params = {}
|
|
1095
|
+
|
|
1096
|
+
# Header Params
|
|
1097
|
+
header_params = {}
|
|
1098
|
+
header_params[:accept] = 'application/json'
|
|
1099
|
+
header_params[:'content-type'] = 'application/json'
|
|
1100
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
1101
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
1102
|
+
# rubocop:enable Style/NegatedIf
|
|
1103
|
+
|
|
1104
|
+
post_body = @api_client.object_to_http_body(update_analytics_instance_details)
|
|
1105
|
+
|
|
1106
|
+
# rubocop:disable Metrics/BlockLength
|
|
1107
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'AnalyticsClient#update_analytics_instance') do
|
|
1108
|
+
@api_client.call_api(
|
|
1109
|
+
:PUT,
|
|
1110
|
+
path,
|
|
1111
|
+
endpoint,
|
|
1112
|
+
header_params: header_params,
|
|
1113
|
+
query_params: query_params,
|
|
1114
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1115
|
+
body: post_body,
|
|
1116
|
+
return_type: 'OCI::Analytics::Models::AnalyticsInstance'
|
|
1117
|
+
)
|
|
1118
|
+
end
|
|
1119
|
+
# rubocop:enable Metrics/BlockLength
|
|
1120
|
+
end
|
|
1121
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1122
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1123
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1124
|
+
|
|
1125
|
+
private
|
|
1126
|
+
|
|
1127
|
+
def applicable_retry_config(opts = {})
|
|
1128
|
+
return @retry_config unless opts.key?(:retry_config)
|
|
1129
|
+
|
|
1130
|
+
opts[:retry_config]
|
|
1131
|
+
end
|
|
1132
|
+
end
|
|
1133
|
+
end
|
|
1134
|
+
# rubocop:enable Lint/UnneededCopDisableDirective, Metrics/LineLength
|