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
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
|
|
5
|
+
# rubocop:disable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
|
6
|
+
module OCI
|
|
7
|
+
# Workflow step of workflow monitor.
|
|
8
|
+
class Oce::Models::WorkflowStep
|
|
9
|
+
# workflow step name
|
|
10
|
+
# @return [String]
|
|
11
|
+
attr_accessor :step_name
|
|
12
|
+
|
|
13
|
+
# workflow step status
|
|
14
|
+
# @return [String]
|
|
15
|
+
attr_accessor :status
|
|
16
|
+
|
|
17
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
18
|
+
def self.attribute_map
|
|
19
|
+
{
|
|
20
|
+
# rubocop:disable Style/SymbolLiteral
|
|
21
|
+
'step_name': :'stepName',
|
|
22
|
+
'status': :'status'
|
|
23
|
+
# rubocop:enable Style/SymbolLiteral
|
|
24
|
+
}
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# Attribute type mapping.
|
|
28
|
+
def self.swagger_types
|
|
29
|
+
{
|
|
30
|
+
# rubocop:disable Style/SymbolLiteral
|
|
31
|
+
'step_name': :'String',
|
|
32
|
+
'status': :'String'
|
|
33
|
+
# rubocop:enable Style/SymbolLiteral
|
|
34
|
+
}
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
38
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines, Style/SymbolLiteral
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# Initializes the object
|
|
42
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
43
|
+
# @option attributes [String] :step_name The value to assign to the {#step_name} property
|
|
44
|
+
# @option attributes [String] :status The value to assign to the {#status} property
|
|
45
|
+
def initialize(attributes = {})
|
|
46
|
+
return unless attributes.is_a?(Hash)
|
|
47
|
+
|
|
48
|
+
# convert string to symbol for hash key
|
|
49
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
50
|
+
|
|
51
|
+
self.step_name = attributes[:'stepName'] if attributes[:'stepName']
|
|
52
|
+
|
|
53
|
+
raise 'You cannot provide both :stepName and :step_name' if attributes.key?(:'stepName') && attributes.key?(:'step_name')
|
|
54
|
+
|
|
55
|
+
self.step_name = attributes[:'step_name'] if attributes[:'step_name']
|
|
56
|
+
|
|
57
|
+
self.status = attributes[:'status'] if attributes[:'status']
|
|
58
|
+
end
|
|
59
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
60
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines, Style/SymbolLiteral
|
|
61
|
+
|
|
62
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity, Layout/EmptyLines
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# Checks equality by comparing each attribute.
|
|
66
|
+
# @param [Object] other the other object to be compared
|
|
67
|
+
def ==(other)
|
|
68
|
+
return true if equal?(other)
|
|
69
|
+
|
|
70
|
+
self.class == other.class &&
|
|
71
|
+
step_name == other.step_name &&
|
|
72
|
+
status == other.status
|
|
73
|
+
end
|
|
74
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity, Layout/EmptyLines
|
|
75
|
+
|
|
76
|
+
# @see the `==` method
|
|
77
|
+
# @param [Object] other the other object to be compared
|
|
78
|
+
def eql?(other)
|
|
79
|
+
self == other
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# rubocop:disable Metrics/AbcSize, Layout/EmptyLines
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# Calculates hash code according to all attributes.
|
|
86
|
+
# @return [Fixnum] Hash code
|
|
87
|
+
def hash
|
|
88
|
+
[step_name, status].hash
|
|
89
|
+
end
|
|
90
|
+
# rubocop:enable Metrics/AbcSize, Layout/EmptyLines
|
|
91
|
+
|
|
92
|
+
# rubocop:disable Metrics/AbcSize, Layout/EmptyLines
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
# Builds the object from hash
|
|
96
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
97
|
+
# @return [Object] Returns the model itself
|
|
98
|
+
def build_from_hash(attributes)
|
|
99
|
+
return nil unless attributes.is_a?(Hash)
|
|
100
|
+
|
|
101
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
102
|
+
if type =~ /^Array<(.*)>/i
|
|
103
|
+
# check to ensure the input is an array given that the the attribute
|
|
104
|
+
# is documented as an array but the input is not
|
|
105
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
106
|
+
public_method("#{key}=").call(
|
|
107
|
+
attributes[self.class.attribute_map[key]]
|
|
108
|
+
.map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
|
|
109
|
+
)
|
|
110
|
+
end
|
|
111
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
112
|
+
public_method("#{key}=").call(
|
|
113
|
+
OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
|
|
114
|
+
)
|
|
115
|
+
end
|
|
116
|
+
# or else data not found in attributes(hash), not an issue as the data can be optional
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
self
|
|
120
|
+
end
|
|
121
|
+
# rubocop:enable Metrics/AbcSize, Layout/EmptyLines
|
|
122
|
+
|
|
123
|
+
# Returns the string representation of the object
|
|
124
|
+
# @return [String] String presentation of the object
|
|
125
|
+
def to_s
|
|
126
|
+
to_hash.to_s
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# Returns the object in the form of hash
|
|
130
|
+
# @return [Hash] Returns the object in the form of hash
|
|
131
|
+
def to_hash
|
|
132
|
+
hash = {}
|
|
133
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
134
|
+
value = public_method(attr).call
|
|
135
|
+
next if value.nil? && !instance_variable_defined?("@#{attr}")
|
|
136
|
+
|
|
137
|
+
hash[param] = _to_hash(value)
|
|
138
|
+
end
|
|
139
|
+
hash
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
private
|
|
143
|
+
|
|
144
|
+
# Outputs non-array value in the form of hash
|
|
145
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
146
|
+
# @param [Object] value Any valid value
|
|
147
|
+
# @return [Hash] Returns the value in the form of hash
|
|
148
|
+
def _to_hash(value)
|
|
149
|
+
if value.is_a?(Array)
|
|
150
|
+
value.compact.map { |v| _to_hash(v) }
|
|
151
|
+
elsif value.is_a?(Hash)
|
|
152
|
+
{}.tap do |hash|
|
|
153
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
154
|
+
end
|
|
155
|
+
elsif value.respond_to? :to_hash
|
|
156
|
+
value.to_hash
|
|
157
|
+
else
|
|
158
|
+
value
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
end
|
|
163
|
+
# rubocop:enable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
data/lib/oci/oce/oce.rb
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
module OCI
|
|
4
|
+
module Oce
|
|
5
|
+
# Module containing models for requests made to, and responses received from,
|
|
6
|
+
# OCI Oce services
|
|
7
|
+
module Models
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# Require models
|
|
13
|
+
require 'oci/oce/models/change_oce_instance_compartment_details'
|
|
14
|
+
require 'oci/oce/models/create_oce_instance_details'
|
|
15
|
+
require 'oci/oce/models/delete_oce_instance_details'
|
|
16
|
+
require 'oci/oce/models/oce_instance'
|
|
17
|
+
require 'oci/oce/models/oce_instance_summary'
|
|
18
|
+
require 'oci/oce/models/update_oce_instance_details'
|
|
19
|
+
require 'oci/oce/models/work_request'
|
|
20
|
+
require 'oci/oce/models/work_request_error'
|
|
21
|
+
require 'oci/oce/models/work_request_log_entry'
|
|
22
|
+
require 'oci/oce/models/work_request_resource'
|
|
23
|
+
require 'oci/oce/models/workflow_monitor'
|
|
24
|
+
require 'oci/oce/models/workflow_step'
|
|
25
|
+
|
|
26
|
+
# Require generated clients
|
|
27
|
+
require 'oci/oce/oce_instance_client'
|
|
28
|
+
require 'oci/oce/oce_instance_client_composite_operations'
|
|
29
|
+
|
|
30
|
+
# Require service utilities
|
|
31
|
+
require 'oci/oce/util'
|
|
@@ -0,0 +1,733 @@
|
|
|
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
|
+
# Oracle Content and Experience is a cloud-based content hub to drive omni-channel content management and accelerate experience delivery
|
|
9
|
+
class Oce::OceInstanceClient
|
|
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 OceInstanceClient.
|
|
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 + '/20190912'
|
|
80
|
+
else
|
|
81
|
+
region ||= config.region
|
|
82
|
+
region ||= signer.region if signer.respond_to?(:region)
|
|
83
|
+
self.region = region
|
|
84
|
+
end
|
|
85
|
+
logger.info "OceInstanceClient 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://cp.oce.{region}.ocp.{secondLevelDomain}') + '/20190912'
|
|
98
|
+
logger.info "OceInstanceClient 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
|
+
# Moves a OceInstance into a different compartment
|
|
112
|
+
# @param [String] oce_instance_id unique OceInstance identifier
|
|
113
|
+
# @param [OCI::Oce::Models::ChangeOceInstanceCompartmentDetails] change_oce_instance_compartment_details The information about compartment details to be moved.
|
|
114
|
+
# @param [Hash] opts the optional parameters
|
|
115
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
116
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
117
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call
|
|
118
|
+
# for a resource, set the `if-match` parameter to the value of the
|
|
119
|
+
# etag from a previous GET or POST response for that resource.
|
|
120
|
+
# The resource will be updated or deleted only if the etag you
|
|
121
|
+
# provide matches the resource's current etag value.
|
|
122
|
+
#
|
|
123
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
124
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
125
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
126
|
+
# hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
127
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
128
|
+
# might be rejected.
|
|
129
|
+
#
|
|
130
|
+
# @return [Response] A Response object with data of type nil
|
|
131
|
+
def change_oce_instance_compartment(oce_instance_id, change_oce_instance_compartment_details, opts = {})
|
|
132
|
+
logger.debug 'Calling operation OceInstanceClient#change_oce_instance_compartment.' if logger
|
|
133
|
+
|
|
134
|
+
raise "Missing the required parameter 'oce_instance_id' when calling change_oce_instance_compartment." if oce_instance_id.nil?
|
|
135
|
+
raise "Missing the required parameter 'change_oce_instance_compartment_details' when calling change_oce_instance_compartment." if change_oce_instance_compartment_details.nil?
|
|
136
|
+
raise "Parameter value for 'oce_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(oce_instance_id)
|
|
137
|
+
|
|
138
|
+
path = '/oceInstances/{oceInstanceId}/actions/changeCompartment'.sub('{oceInstanceId}', oce_instance_id.to_s)
|
|
139
|
+
operation_signing_strategy = :standard
|
|
140
|
+
|
|
141
|
+
# rubocop:disable Style/NegatedIf
|
|
142
|
+
# Query Params
|
|
143
|
+
query_params = {}
|
|
144
|
+
|
|
145
|
+
# Header Params
|
|
146
|
+
header_params = {}
|
|
147
|
+
header_params[:accept] = 'application/json'
|
|
148
|
+
header_params[:'content-type'] = 'application/json'
|
|
149
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
150
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
151
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
152
|
+
# rubocop:enable Style/NegatedIf
|
|
153
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
154
|
+
|
|
155
|
+
post_body = @api_client.object_to_http_body(change_oce_instance_compartment_details)
|
|
156
|
+
|
|
157
|
+
# rubocop:disable Metrics/BlockLength
|
|
158
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#change_oce_instance_compartment') do
|
|
159
|
+
@api_client.call_api(
|
|
160
|
+
:POST,
|
|
161
|
+
path,
|
|
162
|
+
endpoint,
|
|
163
|
+
header_params: header_params,
|
|
164
|
+
query_params: query_params,
|
|
165
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
166
|
+
body: post_body
|
|
167
|
+
)
|
|
168
|
+
end
|
|
169
|
+
# rubocop:enable Metrics/BlockLength
|
|
170
|
+
end
|
|
171
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
172
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
173
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
174
|
+
|
|
175
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
176
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
177
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
# Creates a new OceInstance.
|
|
181
|
+
#
|
|
182
|
+
# @param [OCI::Oce::Models::CreateOceInstanceDetails] create_oce_instance_details Details for the new OceInstance.
|
|
183
|
+
# @param [Hash] opts the optional parameters
|
|
184
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
185
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
186
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
187
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
188
|
+
# hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
189
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
190
|
+
# might be rejected.
|
|
191
|
+
#
|
|
192
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
193
|
+
# @return [Response] A Response object with data of type nil
|
|
194
|
+
def create_oce_instance(create_oce_instance_details, opts = {})
|
|
195
|
+
logger.debug 'Calling operation OceInstanceClient#create_oce_instance.' if logger
|
|
196
|
+
|
|
197
|
+
raise "Missing the required parameter 'create_oce_instance_details' when calling create_oce_instance." if create_oce_instance_details.nil?
|
|
198
|
+
|
|
199
|
+
path = '/oceInstances'
|
|
200
|
+
operation_signing_strategy = :standard
|
|
201
|
+
|
|
202
|
+
# rubocop:disable Style/NegatedIf
|
|
203
|
+
# Query Params
|
|
204
|
+
query_params = {}
|
|
205
|
+
|
|
206
|
+
# Header Params
|
|
207
|
+
header_params = {}
|
|
208
|
+
header_params[:accept] = 'application/json'
|
|
209
|
+
header_params[:'content-type'] = 'application/json'
|
|
210
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
211
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
212
|
+
# rubocop:enable Style/NegatedIf
|
|
213
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
214
|
+
|
|
215
|
+
post_body = @api_client.object_to_http_body(create_oce_instance_details)
|
|
216
|
+
|
|
217
|
+
# rubocop:disable Metrics/BlockLength
|
|
218
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#create_oce_instance') do
|
|
219
|
+
@api_client.call_api(
|
|
220
|
+
:POST,
|
|
221
|
+
path,
|
|
222
|
+
endpoint,
|
|
223
|
+
header_params: header_params,
|
|
224
|
+
query_params: query_params,
|
|
225
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
226
|
+
body: post_body
|
|
227
|
+
)
|
|
228
|
+
end
|
|
229
|
+
# rubocop:enable Metrics/BlockLength
|
|
230
|
+
end
|
|
231
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
232
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
233
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
234
|
+
|
|
235
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
236
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
237
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
# Deletes a OceInstance resource by identifier
|
|
241
|
+
# @param [String] oce_instance_id unique OceInstance identifier
|
|
242
|
+
# @param [OCI::Oce::Models::DeleteOceInstanceDetails] delete_oce_instance_details The information about resource to be deleted.
|
|
243
|
+
# @param [Hash] opts the optional parameters
|
|
244
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
245
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
246
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call
|
|
247
|
+
# for a resource, set the `if-match` parameter to the value of the
|
|
248
|
+
# etag from a previous GET or POST response for that resource.
|
|
249
|
+
# The resource will be updated or deleted only if the etag you
|
|
250
|
+
# provide matches the resource's current etag value.
|
|
251
|
+
#
|
|
252
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
253
|
+
# @return [Response] A Response object with data of type nil
|
|
254
|
+
def delete_oce_instance(oce_instance_id, delete_oce_instance_details, opts = {})
|
|
255
|
+
logger.debug 'Calling operation OceInstanceClient#delete_oce_instance.' if logger
|
|
256
|
+
|
|
257
|
+
raise "Missing the required parameter 'oce_instance_id' when calling delete_oce_instance." if oce_instance_id.nil?
|
|
258
|
+
raise "Missing the required parameter 'delete_oce_instance_details' when calling delete_oce_instance." if delete_oce_instance_details.nil?
|
|
259
|
+
raise "Parameter value for 'oce_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(oce_instance_id)
|
|
260
|
+
|
|
261
|
+
path = '/oceInstances/{oceInstanceId}'.sub('{oceInstanceId}', oce_instance_id.to_s)
|
|
262
|
+
operation_signing_strategy = :standard
|
|
263
|
+
|
|
264
|
+
# rubocop:disable Style/NegatedIf
|
|
265
|
+
# Query Params
|
|
266
|
+
query_params = {}
|
|
267
|
+
|
|
268
|
+
# Header Params
|
|
269
|
+
header_params = {}
|
|
270
|
+
header_params[:accept] = 'application/json'
|
|
271
|
+
header_params[:'content-type'] = 'application/json'
|
|
272
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
273
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
274
|
+
# rubocop:enable Style/NegatedIf
|
|
275
|
+
|
|
276
|
+
post_body = @api_client.object_to_http_body(delete_oce_instance_details)
|
|
277
|
+
|
|
278
|
+
# rubocop:disable Metrics/BlockLength
|
|
279
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#delete_oce_instance') do
|
|
280
|
+
@api_client.call_api(
|
|
281
|
+
:DELETE,
|
|
282
|
+
path,
|
|
283
|
+
endpoint,
|
|
284
|
+
header_params: header_params,
|
|
285
|
+
query_params: query_params,
|
|
286
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
287
|
+
body: post_body
|
|
288
|
+
)
|
|
289
|
+
end
|
|
290
|
+
# rubocop:enable Metrics/BlockLength
|
|
291
|
+
end
|
|
292
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
293
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
294
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
295
|
+
|
|
296
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
297
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
298
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
# Gets a OceInstance by identifier
|
|
302
|
+
# @param [String] oce_instance_id unique OceInstance identifier
|
|
303
|
+
# @param [Hash] opts the optional parameters
|
|
304
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
305
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
306
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
307
|
+
# @return [Response] A Response object with data of type {OCI::Oce::Models::OceInstance OceInstance}
|
|
308
|
+
def get_oce_instance(oce_instance_id, opts = {})
|
|
309
|
+
logger.debug 'Calling operation OceInstanceClient#get_oce_instance.' if logger
|
|
310
|
+
|
|
311
|
+
raise "Missing the required parameter 'oce_instance_id' when calling get_oce_instance." if oce_instance_id.nil?
|
|
312
|
+
raise "Parameter value for 'oce_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(oce_instance_id)
|
|
313
|
+
|
|
314
|
+
path = '/oceInstances/{oceInstanceId}'.sub('{oceInstanceId}', oce_instance_id.to_s)
|
|
315
|
+
operation_signing_strategy = :standard
|
|
316
|
+
|
|
317
|
+
# rubocop:disable Style/NegatedIf
|
|
318
|
+
# Query Params
|
|
319
|
+
query_params = {}
|
|
320
|
+
|
|
321
|
+
# Header Params
|
|
322
|
+
header_params = {}
|
|
323
|
+
header_params[:accept] = 'application/json'
|
|
324
|
+
header_params[:'content-type'] = 'application/json'
|
|
325
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
326
|
+
# rubocop:enable Style/NegatedIf
|
|
327
|
+
|
|
328
|
+
post_body = nil
|
|
329
|
+
|
|
330
|
+
# rubocop:disable Metrics/BlockLength
|
|
331
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#get_oce_instance') do
|
|
332
|
+
@api_client.call_api(
|
|
333
|
+
:GET,
|
|
334
|
+
path,
|
|
335
|
+
endpoint,
|
|
336
|
+
header_params: header_params,
|
|
337
|
+
query_params: query_params,
|
|
338
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
339
|
+
body: post_body,
|
|
340
|
+
return_type: 'OCI::Oce::Models::OceInstance'
|
|
341
|
+
)
|
|
342
|
+
end
|
|
343
|
+
# rubocop:enable Metrics/BlockLength
|
|
344
|
+
end
|
|
345
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
346
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
347
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
348
|
+
|
|
349
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
350
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
351
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
# Gets the status of the work request with the given ID.
|
|
355
|
+
# @param [String] work_request_id The ID of the asynchronous request.
|
|
356
|
+
# @param [Hash] opts the optional parameters
|
|
357
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
358
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
359
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
360
|
+
# @return [Response] A Response object with data of type {OCI::Oce::Models::WorkRequest WorkRequest}
|
|
361
|
+
def get_work_request(work_request_id, opts = {})
|
|
362
|
+
logger.debug 'Calling operation OceInstanceClient#get_work_request.' if logger
|
|
363
|
+
|
|
364
|
+
raise "Missing the required parameter 'work_request_id' when calling get_work_request." if work_request_id.nil?
|
|
365
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
366
|
+
|
|
367
|
+
path = '/workRequests/{workRequestId}'.sub('{workRequestId}', work_request_id.to_s)
|
|
368
|
+
operation_signing_strategy = :standard
|
|
369
|
+
|
|
370
|
+
# rubocop:disable Style/NegatedIf
|
|
371
|
+
# Query Params
|
|
372
|
+
query_params = {}
|
|
373
|
+
|
|
374
|
+
# Header Params
|
|
375
|
+
header_params = {}
|
|
376
|
+
header_params[:accept] = 'application/json'
|
|
377
|
+
header_params[:'content-type'] = 'application/json'
|
|
378
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
379
|
+
# rubocop:enable Style/NegatedIf
|
|
380
|
+
|
|
381
|
+
post_body = nil
|
|
382
|
+
|
|
383
|
+
# rubocop:disable Metrics/BlockLength
|
|
384
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#get_work_request') do
|
|
385
|
+
@api_client.call_api(
|
|
386
|
+
:GET,
|
|
387
|
+
path,
|
|
388
|
+
endpoint,
|
|
389
|
+
header_params: header_params,
|
|
390
|
+
query_params: query_params,
|
|
391
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
392
|
+
body: post_body,
|
|
393
|
+
return_type: 'OCI::Oce::Models::WorkRequest'
|
|
394
|
+
)
|
|
395
|
+
end
|
|
396
|
+
# rubocop:enable Metrics/BlockLength
|
|
397
|
+
end
|
|
398
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
399
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
400
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
401
|
+
|
|
402
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
403
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
404
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
# Returns a list of OceInstances.
|
|
408
|
+
#
|
|
409
|
+
# @param [String] compartment_id The ID of the compartment in which to list resources.
|
|
410
|
+
# @param [Hash] opts the optional parameters
|
|
411
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
412
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
413
|
+
# @option opts [String] :display_name A user-friendly name. Does not have to be unique, and it's changeable.
|
|
414
|
+
#
|
|
415
|
+
# Example: `My new resource`
|
|
416
|
+
#
|
|
417
|
+
# @option opts [Integer] :limit The maximum number of items to return. (default to 50)
|
|
418
|
+
# @option opts [String] :page The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call. (default to null)
|
|
419
|
+
# @option opts [String] :sort_order The sort order to use, either 'asc' or 'desc'. (default to ASC)
|
|
420
|
+
# Allowed values are: ASC, DESC
|
|
421
|
+
# @option opts [String] :sort_by The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending. If no value is specified timeCreated is default.
|
|
422
|
+
# (default to timeCreated)
|
|
423
|
+
# Allowed values are: timeCreated, displayName
|
|
424
|
+
# @option opts [String] :lifecycle_state Filter results on lifecycleState. (default to ACTIVE)
|
|
425
|
+
# Allowed values are: CREATING, UPDATING, ACTIVE, DELETING, DELETED, FAILED
|
|
426
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
427
|
+
# @return [Response] A Response object with data of type Array<{OCI::Oce::Models::OceInstanceSummary OceInstanceSummary}>
|
|
428
|
+
def list_oce_instances(compartment_id, opts = {})
|
|
429
|
+
logger.debug 'Calling operation OceInstanceClient#list_oce_instances.' if logger
|
|
430
|
+
|
|
431
|
+
raise "Missing the required parameter 'compartment_id' when calling list_oce_instances." if compartment_id.nil?
|
|
432
|
+
|
|
433
|
+
if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order])
|
|
434
|
+
raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
if opts[:sort_by] && !%w[timeCreated displayName].include?(opts[:sort_by])
|
|
438
|
+
raise 'Invalid value for "sort_by", must be one of timeCreated, displayName.'
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
if opts[:lifecycle_state] && !%w[CREATING UPDATING ACTIVE DELETING DELETED FAILED].include?(opts[:lifecycle_state])
|
|
442
|
+
raise 'Invalid value for "lifecycle_state", must be one of CREATING, UPDATING, ACTIVE, DELETING, DELETED, FAILED.'
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
path = '/oceInstances'
|
|
446
|
+
operation_signing_strategy = :standard
|
|
447
|
+
|
|
448
|
+
# rubocop:disable Style/NegatedIf
|
|
449
|
+
# Query Params
|
|
450
|
+
query_params = {}
|
|
451
|
+
query_params[:compartmentId] = compartment_id
|
|
452
|
+
query_params[:displayName] = opts[:display_name] if opts[:display_name]
|
|
453
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
454
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
455
|
+
query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
|
|
456
|
+
query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
|
|
457
|
+
query_params[:lifecycleState] = opts[:lifecycle_state] if opts[:lifecycle_state]
|
|
458
|
+
|
|
459
|
+
# Header Params
|
|
460
|
+
header_params = {}
|
|
461
|
+
header_params[:accept] = 'application/json'
|
|
462
|
+
header_params[:'content-type'] = 'application/json'
|
|
463
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
464
|
+
# rubocop:enable Style/NegatedIf
|
|
465
|
+
|
|
466
|
+
post_body = nil
|
|
467
|
+
|
|
468
|
+
# rubocop:disable Metrics/BlockLength
|
|
469
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#list_oce_instances') do
|
|
470
|
+
@api_client.call_api(
|
|
471
|
+
:GET,
|
|
472
|
+
path,
|
|
473
|
+
endpoint,
|
|
474
|
+
header_params: header_params,
|
|
475
|
+
query_params: query_params,
|
|
476
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
477
|
+
body: post_body,
|
|
478
|
+
return_type: 'Array<OCI::Oce::Models::OceInstanceSummary>'
|
|
479
|
+
)
|
|
480
|
+
end
|
|
481
|
+
# rubocop:enable Metrics/BlockLength
|
|
482
|
+
end
|
|
483
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
484
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
485
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
486
|
+
|
|
487
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
488
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
489
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
# Return a (paginated) list of errors for a given work request.
|
|
493
|
+
#
|
|
494
|
+
# @param [String] work_request_id The ID of the asynchronous request.
|
|
495
|
+
# @param [Hash] opts the optional parameters
|
|
496
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
497
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
498
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
499
|
+
# @option opts [String] :page The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call. (default to null)
|
|
500
|
+
# @option opts [Integer] :limit The maximum number of items to return. (default to 50)
|
|
501
|
+
# @return [Response] A Response object with data of type Array<{OCI::Oce::Models::WorkRequestError WorkRequestError}>
|
|
502
|
+
def list_work_request_errors(work_request_id, opts = {})
|
|
503
|
+
logger.debug 'Calling operation OceInstanceClient#list_work_request_errors.' if logger
|
|
504
|
+
|
|
505
|
+
raise "Missing the required parameter 'work_request_id' when calling list_work_request_errors." if work_request_id.nil?
|
|
506
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
507
|
+
|
|
508
|
+
path = '/workRequests/{workRequestId}/errors'.sub('{workRequestId}', work_request_id.to_s)
|
|
509
|
+
operation_signing_strategy = :standard
|
|
510
|
+
|
|
511
|
+
# rubocop:disable Style/NegatedIf
|
|
512
|
+
# Query Params
|
|
513
|
+
query_params = {}
|
|
514
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
515
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
516
|
+
|
|
517
|
+
# Header Params
|
|
518
|
+
header_params = {}
|
|
519
|
+
header_params[:accept] = 'application/json'
|
|
520
|
+
header_params[:'content-type'] = 'application/json'
|
|
521
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
522
|
+
# rubocop:enable Style/NegatedIf
|
|
523
|
+
|
|
524
|
+
post_body = nil
|
|
525
|
+
|
|
526
|
+
# rubocop:disable Metrics/BlockLength
|
|
527
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#list_work_request_errors') do
|
|
528
|
+
@api_client.call_api(
|
|
529
|
+
:GET,
|
|
530
|
+
path,
|
|
531
|
+
endpoint,
|
|
532
|
+
header_params: header_params,
|
|
533
|
+
query_params: query_params,
|
|
534
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
535
|
+
body: post_body,
|
|
536
|
+
return_type: 'Array<OCI::Oce::Models::WorkRequestError>'
|
|
537
|
+
)
|
|
538
|
+
end
|
|
539
|
+
# rubocop:enable Metrics/BlockLength
|
|
540
|
+
end
|
|
541
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
542
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
543
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
544
|
+
|
|
545
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
546
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
547
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
# Return a (paginated) list of logs for a given work request.
|
|
551
|
+
#
|
|
552
|
+
# @param [String] work_request_id The ID of the asynchronous request.
|
|
553
|
+
# @param [Hash] opts the optional parameters
|
|
554
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
555
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
556
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
557
|
+
# @option opts [String] :page The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call. (default to null)
|
|
558
|
+
# @option opts [Integer] :limit The maximum number of items to return. (default to 50)
|
|
559
|
+
# @return [Response] A Response object with data of type Array<{OCI::Oce::Models::WorkRequestLogEntry WorkRequestLogEntry}>
|
|
560
|
+
def list_work_request_logs(work_request_id, opts = {})
|
|
561
|
+
logger.debug 'Calling operation OceInstanceClient#list_work_request_logs.' if logger
|
|
562
|
+
|
|
563
|
+
raise "Missing the required parameter 'work_request_id' when calling list_work_request_logs." if work_request_id.nil?
|
|
564
|
+
raise "Parameter value for 'work_request_id' must not be blank" if OCI::Internal::Util.blank_string?(work_request_id)
|
|
565
|
+
|
|
566
|
+
path = '/workRequests/{workRequestId}/logs'.sub('{workRequestId}', work_request_id.to_s)
|
|
567
|
+
operation_signing_strategy = :standard
|
|
568
|
+
|
|
569
|
+
# rubocop:disable Style/NegatedIf
|
|
570
|
+
# Query Params
|
|
571
|
+
query_params = {}
|
|
572
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
573
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
574
|
+
|
|
575
|
+
# Header Params
|
|
576
|
+
header_params = {}
|
|
577
|
+
header_params[:accept] = 'application/json'
|
|
578
|
+
header_params[:'content-type'] = 'application/json'
|
|
579
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
580
|
+
# rubocop:enable Style/NegatedIf
|
|
581
|
+
|
|
582
|
+
post_body = nil
|
|
583
|
+
|
|
584
|
+
# rubocop:disable Metrics/BlockLength
|
|
585
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#list_work_request_logs') do
|
|
586
|
+
@api_client.call_api(
|
|
587
|
+
:GET,
|
|
588
|
+
path,
|
|
589
|
+
endpoint,
|
|
590
|
+
header_params: header_params,
|
|
591
|
+
query_params: query_params,
|
|
592
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
593
|
+
body: post_body,
|
|
594
|
+
return_type: 'Array<OCI::Oce::Models::WorkRequestLogEntry>'
|
|
595
|
+
)
|
|
596
|
+
end
|
|
597
|
+
# rubocop:enable Metrics/BlockLength
|
|
598
|
+
end
|
|
599
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
600
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
601
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
602
|
+
|
|
603
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
604
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
605
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
# Lists the work requests in a compartment.
|
|
609
|
+
#
|
|
610
|
+
# @param [String] compartment_id The ID of the compartment in which to list resources.
|
|
611
|
+
# @param [Hash] opts the optional parameters
|
|
612
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
613
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
614
|
+
# @option opts [String] :resource_id The resource Identifier for which to list resources.
|
|
615
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
616
|
+
# @option opts [String] :page The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call. (default to null)
|
|
617
|
+
# @option opts [Integer] :limit The maximum number of items to return. (default to 50)
|
|
618
|
+
# @return [Response] A Response object with data of type Array<{OCI::Oce::Models::WorkRequest WorkRequest}>
|
|
619
|
+
def list_work_requests(compartment_id, opts = {})
|
|
620
|
+
logger.debug 'Calling operation OceInstanceClient#list_work_requests.' if logger
|
|
621
|
+
|
|
622
|
+
raise "Missing the required parameter 'compartment_id' when calling list_work_requests." if compartment_id.nil?
|
|
623
|
+
|
|
624
|
+
path = '/workRequests'
|
|
625
|
+
operation_signing_strategy = :standard
|
|
626
|
+
|
|
627
|
+
# rubocop:disable Style/NegatedIf
|
|
628
|
+
# Query Params
|
|
629
|
+
query_params = {}
|
|
630
|
+
query_params[:compartmentId] = compartment_id
|
|
631
|
+
query_params[:resourceId] = opts[:resource_id] if opts[:resource_id]
|
|
632
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
633
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
634
|
+
|
|
635
|
+
# Header Params
|
|
636
|
+
header_params = {}
|
|
637
|
+
header_params[:accept] = 'application/json'
|
|
638
|
+
header_params[:'content-type'] = 'application/json'
|
|
639
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
640
|
+
# rubocop:enable Style/NegatedIf
|
|
641
|
+
|
|
642
|
+
post_body = nil
|
|
643
|
+
|
|
644
|
+
# rubocop:disable Metrics/BlockLength
|
|
645
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#list_work_requests') do
|
|
646
|
+
@api_client.call_api(
|
|
647
|
+
:GET,
|
|
648
|
+
path,
|
|
649
|
+
endpoint,
|
|
650
|
+
header_params: header_params,
|
|
651
|
+
query_params: query_params,
|
|
652
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
653
|
+
body: post_body,
|
|
654
|
+
return_type: 'Array<OCI::Oce::Models::WorkRequest>'
|
|
655
|
+
)
|
|
656
|
+
end
|
|
657
|
+
# rubocop:enable Metrics/BlockLength
|
|
658
|
+
end
|
|
659
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
660
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
661
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
662
|
+
|
|
663
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
664
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
665
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
# Updates the OceInstance
|
|
669
|
+
# @param [String] oce_instance_id unique OceInstance identifier
|
|
670
|
+
# @param [OCI::Oce::Models::UpdateOceInstanceDetails] update_oce_instance_details The information to be updated.
|
|
671
|
+
# @param [Hash] opts the optional parameters
|
|
672
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
673
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
674
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call
|
|
675
|
+
# for a resource, set the `if-match` parameter to the value of the
|
|
676
|
+
# etag from a previous GET or POST response for that resource.
|
|
677
|
+
# The resource will be updated or deleted only if the etag you
|
|
678
|
+
# provide matches the resource's current etag value.
|
|
679
|
+
#
|
|
680
|
+
# @option opts [String] :opc_request_id The client request ID for tracing.
|
|
681
|
+
# @return [Response] A Response object with data of type nil
|
|
682
|
+
def update_oce_instance(oce_instance_id, update_oce_instance_details, opts = {})
|
|
683
|
+
logger.debug 'Calling operation OceInstanceClient#update_oce_instance.' if logger
|
|
684
|
+
|
|
685
|
+
raise "Missing the required parameter 'oce_instance_id' when calling update_oce_instance." if oce_instance_id.nil?
|
|
686
|
+
raise "Missing the required parameter 'update_oce_instance_details' when calling update_oce_instance." if update_oce_instance_details.nil?
|
|
687
|
+
raise "Parameter value for 'oce_instance_id' must not be blank" if OCI::Internal::Util.blank_string?(oce_instance_id)
|
|
688
|
+
|
|
689
|
+
path = '/oceInstances/{oceInstanceId}'.sub('{oceInstanceId}', oce_instance_id.to_s)
|
|
690
|
+
operation_signing_strategy = :standard
|
|
691
|
+
|
|
692
|
+
# rubocop:disable Style/NegatedIf
|
|
693
|
+
# Query Params
|
|
694
|
+
query_params = {}
|
|
695
|
+
|
|
696
|
+
# Header Params
|
|
697
|
+
header_params = {}
|
|
698
|
+
header_params[:accept] = 'application/json'
|
|
699
|
+
header_params[:'content-type'] = 'application/json'
|
|
700
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
701
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
702
|
+
# rubocop:enable Style/NegatedIf
|
|
703
|
+
|
|
704
|
+
post_body = @api_client.object_to_http_body(update_oce_instance_details)
|
|
705
|
+
|
|
706
|
+
# rubocop:disable Metrics/BlockLength
|
|
707
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'OceInstanceClient#update_oce_instance') do
|
|
708
|
+
@api_client.call_api(
|
|
709
|
+
:PUT,
|
|
710
|
+
path,
|
|
711
|
+
endpoint,
|
|
712
|
+
header_params: header_params,
|
|
713
|
+
query_params: query_params,
|
|
714
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
715
|
+
body: post_body
|
|
716
|
+
)
|
|
717
|
+
end
|
|
718
|
+
# rubocop:enable Metrics/BlockLength
|
|
719
|
+
end
|
|
720
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
721
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
722
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
723
|
+
|
|
724
|
+
private
|
|
725
|
+
|
|
726
|
+
def applicable_retry_config(opts = {})
|
|
727
|
+
return @retry_config unless opts.key?(:retry_config)
|
|
728
|
+
|
|
729
|
+
opts[:retry_config]
|
|
730
|
+
end
|
|
731
|
+
end
|
|
732
|
+
end
|
|
733
|
+
# rubocop:enable Lint/UnneededCopDisableDirective, Metrics/LineLength
|