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
|
@@ -183,7 +183,7 @@ module OCI
|
|
|
183
183
|
# Calls {OCI::Core::ComputeClient#create_dedicated_vm_host} and then waits for the {OCI::Core::Models::DedicatedVmHost} acted upon
|
|
184
184
|
# to enter the given state(s).
|
|
185
185
|
#
|
|
186
|
-
# @param [OCI::Core::Models::CreateDedicatedVmHostDetails] create_dedicated_vm_host_details The details for creating a new dedicated virtual machine
|
|
186
|
+
# @param [OCI::Core::Models::CreateDedicatedVmHostDetails] create_dedicated_vm_host_details The details for creating a new dedicated virtual machine host.
|
|
187
187
|
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Core::Models::DedicatedVmHost#lifecycle_state}
|
|
188
188
|
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Core::ComputeClient#create_dedicated_vm_host}
|
|
189
189
|
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
@@ -179,6 +179,76 @@ module OCI
|
|
|
179
179
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
180
180
|
|
|
181
181
|
|
|
182
|
+
# Change the compartment of a cluster network.
|
|
183
|
+
#
|
|
184
|
+
# @param [String] cluster_network_id The OCID of the cluster network.
|
|
185
|
+
# @param [OCI::Core::Models::ChangeClusterNetworkCompartmentDetails] change_cluster_network_compartment_details Request to change the compartment of given cluster network.
|
|
186
|
+
# @param [Hash] opts the optional parameters
|
|
187
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
188
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
189
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
190
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
191
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
192
|
+
#
|
|
193
|
+
# @option opts [String] :opc_request_id Unique identifier for the request.
|
|
194
|
+
# If you need to contact Oracle about a particular request, please provide the request ID.
|
|
195
|
+
#
|
|
196
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
197
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
198
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
199
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
200
|
+
# may be rejected).
|
|
201
|
+
#
|
|
202
|
+
# @return [Response] A Response object with data of type nil
|
|
203
|
+
def change_cluster_network_compartment(cluster_network_id, change_cluster_network_compartment_details, opts = {})
|
|
204
|
+
logger.debug 'Calling operation ComputeManagementClient#change_cluster_network_compartment.' if logger
|
|
205
|
+
|
|
206
|
+
raise "Missing the required parameter 'cluster_network_id' when calling change_cluster_network_compartment." if cluster_network_id.nil?
|
|
207
|
+
raise "Missing the required parameter 'change_cluster_network_compartment_details' when calling change_cluster_network_compartment." if change_cluster_network_compartment_details.nil?
|
|
208
|
+
raise "Parameter value for 'cluster_network_id' must not be blank" if OCI::Internal::Util.blank_string?(cluster_network_id)
|
|
209
|
+
|
|
210
|
+
path = '/clusterNetworks/{clusterNetworkId}/actions/changeCompartment'.sub('{clusterNetworkId}', cluster_network_id.to_s)
|
|
211
|
+
operation_signing_strategy = :standard
|
|
212
|
+
|
|
213
|
+
# rubocop:disable Style/NegatedIf
|
|
214
|
+
# Query Params
|
|
215
|
+
query_params = {}
|
|
216
|
+
|
|
217
|
+
# Header Params
|
|
218
|
+
header_params = {}
|
|
219
|
+
header_params[:accept] = 'application/json'
|
|
220
|
+
header_params[:'content-type'] = 'application/json'
|
|
221
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
222
|
+
header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
|
|
223
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
224
|
+
# rubocop:enable Style/NegatedIf
|
|
225
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
226
|
+
|
|
227
|
+
post_body = @api_client.object_to_http_body(change_cluster_network_compartment_details)
|
|
228
|
+
|
|
229
|
+
# rubocop:disable Metrics/BlockLength
|
|
230
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#change_cluster_network_compartment') do
|
|
231
|
+
@api_client.call_api(
|
|
232
|
+
:POST,
|
|
233
|
+
path,
|
|
234
|
+
endpoint,
|
|
235
|
+
header_params: header_params,
|
|
236
|
+
query_params: query_params,
|
|
237
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
238
|
+
body: post_body
|
|
239
|
+
)
|
|
240
|
+
end
|
|
241
|
+
# rubocop:enable Metrics/BlockLength
|
|
242
|
+
end
|
|
243
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
244
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
245
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
246
|
+
|
|
247
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
248
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
249
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
250
|
+
|
|
251
|
+
|
|
182
252
|
# Moves an instance configuration into a different compartment within the same tenancy.
|
|
183
253
|
# For information about moving resources between compartments, see
|
|
184
254
|
# [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
@@ -336,6 +406,64 @@ module OCI
|
|
|
336
406
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
337
407
|
|
|
338
408
|
|
|
409
|
+
# Create a cluster network.
|
|
410
|
+
# @param [OCI::Core::Models::CreateClusterNetworkDetails] create_cluster_network_details Cluster network creation details
|
|
411
|
+
# @param [Hash] opts the optional parameters
|
|
412
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
413
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
414
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
415
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
416
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
417
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
418
|
+
# may be rejected).
|
|
419
|
+
#
|
|
420
|
+
# @return [Response] A Response object with data of type {OCI::Core::Models::ClusterNetwork ClusterNetwork}
|
|
421
|
+
def create_cluster_network(create_cluster_network_details, opts = {})
|
|
422
|
+
logger.debug 'Calling operation ComputeManagementClient#create_cluster_network.' if logger
|
|
423
|
+
|
|
424
|
+
raise "Missing the required parameter 'create_cluster_network_details' when calling create_cluster_network." if create_cluster_network_details.nil?
|
|
425
|
+
|
|
426
|
+
path = '/clusterNetworks'
|
|
427
|
+
operation_signing_strategy = :standard
|
|
428
|
+
|
|
429
|
+
# rubocop:disable Style/NegatedIf
|
|
430
|
+
# Query Params
|
|
431
|
+
query_params = {}
|
|
432
|
+
|
|
433
|
+
# Header Params
|
|
434
|
+
header_params = {}
|
|
435
|
+
header_params[:accept] = 'application/json'
|
|
436
|
+
header_params[:'content-type'] = 'application/json'
|
|
437
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
438
|
+
# rubocop:enable Style/NegatedIf
|
|
439
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
440
|
+
|
|
441
|
+
post_body = @api_client.object_to_http_body(create_cluster_network_details)
|
|
442
|
+
|
|
443
|
+
# rubocop:disable Metrics/BlockLength
|
|
444
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#create_cluster_network') do
|
|
445
|
+
@api_client.call_api(
|
|
446
|
+
:POST,
|
|
447
|
+
path,
|
|
448
|
+
endpoint,
|
|
449
|
+
header_params: header_params,
|
|
450
|
+
query_params: query_params,
|
|
451
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
452
|
+
body: post_body,
|
|
453
|
+
return_type: 'OCI::Core::Models::ClusterNetwork'
|
|
454
|
+
)
|
|
455
|
+
end
|
|
456
|
+
# rubocop:enable Metrics/BlockLength
|
|
457
|
+
end
|
|
458
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
459
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
460
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
461
|
+
|
|
462
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
463
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
464
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
465
|
+
|
|
466
|
+
|
|
339
467
|
# Creates an instance configuration. An instance configuration is a template that defines the
|
|
340
468
|
# settings to use when creating Compute instances.
|
|
341
469
|
#
|
|
@@ -577,6 +705,59 @@ module OCI
|
|
|
577
705
|
# rubocop:disable Lint/UnusedMethodArgument
|
|
578
706
|
|
|
579
707
|
|
|
708
|
+
# Gets the specified cluster network
|
|
709
|
+
# @param [String] cluster_network_id The OCID of the cluster network.
|
|
710
|
+
# @param [Hash] opts the optional parameters
|
|
711
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
712
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
713
|
+
# @return [Response] A Response object with data of type {OCI::Core::Models::ClusterNetwork ClusterNetwork}
|
|
714
|
+
def get_cluster_network(cluster_network_id, opts = {})
|
|
715
|
+
logger.debug 'Calling operation ComputeManagementClient#get_cluster_network.' if logger
|
|
716
|
+
|
|
717
|
+
raise "Missing the required parameter 'cluster_network_id' when calling get_cluster_network." if cluster_network_id.nil?
|
|
718
|
+
raise "Parameter value for 'cluster_network_id' must not be blank" if OCI::Internal::Util.blank_string?(cluster_network_id)
|
|
719
|
+
|
|
720
|
+
path = '/clusterNetworks/{clusterNetworkId}'.sub('{clusterNetworkId}', cluster_network_id.to_s)
|
|
721
|
+
operation_signing_strategy = :standard
|
|
722
|
+
|
|
723
|
+
# rubocop:disable Style/NegatedIf
|
|
724
|
+
# Query Params
|
|
725
|
+
query_params = {}
|
|
726
|
+
|
|
727
|
+
# Header Params
|
|
728
|
+
header_params = {}
|
|
729
|
+
header_params[:accept] = 'application/json'
|
|
730
|
+
header_params[:'content-type'] = 'application/json'
|
|
731
|
+
# rubocop:enable Style/NegatedIf
|
|
732
|
+
|
|
733
|
+
post_body = nil
|
|
734
|
+
|
|
735
|
+
# rubocop:disable Metrics/BlockLength
|
|
736
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#get_cluster_network') do
|
|
737
|
+
@api_client.call_api(
|
|
738
|
+
:GET,
|
|
739
|
+
path,
|
|
740
|
+
endpoint,
|
|
741
|
+
header_params: header_params,
|
|
742
|
+
query_params: query_params,
|
|
743
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
744
|
+
body: post_body,
|
|
745
|
+
return_type: 'OCI::Core::Models::ClusterNetwork'
|
|
746
|
+
)
|
|
747
|
+
end
|
|
748
|
+
# rubocop:enable Metrics/BlockLength
|
|
749
|
+
end
|
|
750
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
751
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
752
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
753
|
+
# rubocop:enable Lint/UnusedMethodArgument
|
|
754
|
+
|
|
755
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
756
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
757
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
758
|
+
# rubocop:disable Lint/UnusedMethodArgument
|
|
759
|
+
|
|
760
|
+
|
|
580
761
|
# Gets the specified instance configuration
|
|
581
762
|
# @param [String] instance_configuration_id The OCID of the instance configuration.
|
|
582
763
|
# @param [Hash] opts the optional parameters
|
|
@@ -807,6 +988,195 @@ module OCI
|
|
|
807
988
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
808
989
|
|
|
809
990
|
|
|
991
|
+
# List the instances in the specified cluster network.
|
|
992
|
+
# @param [String] compartment_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
993
|
+
# @param [String] cluster_network_id The OCID of the cluster network.
|
|
994
|
+
# @param [Hash] opts the optional parameters
|
|
995
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
996
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
997
|
+
# @option opts [String] :display_name A filter to return only resources that match the given display name exactly.
|
|
998
|
+
#
|
|
999
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
1000
|
+
# \"List\" call. For important details about how pagination works, see
|
|
1001
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
1002
|
+
#
|
|
1003
|
+
# Example: `50`
|
|
1004
|
+
#
|
|
1005
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
1006
|
+
# call. For important details about how pagination works, see
|
|
1007
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
1008
|
+
#
|
|
1009
|
+
# @option opts [String] :sort_by The field to sort by. You can provide one sort order (`sortOrder`). Default order for
|
|
1010
|
+
# TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME
|
|
1011
|
+
# sort order is case sensitive.
|
|
1012
|
+
#
|
|
1013
|
+
# **Note:** In general, some \"List\" operations (for example, `ListInstances`) let you
|
|
1014
|
+
# optionally filter by availability domain if the scope of the resource type is within a
|
|
1015
|
+
# single availability domain. If you call one of these \"List\" operations without specifying
|
|
1016
|
+
# an availability domain, the resources are grouped by availability domain, then sorted.
|
|
1017
|
+
#
|
|
1018
|
+
# Allowed values are: TIMECREATED, DISPLAYNAME
|
|
1019
|
+
# @option opts [String] :sort_order The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order
|
|
1020
|
+
# is case sensitive.
|
|
1021
|
+
#
|
|
1022
|
+
# Allowed values are: ASC, DESC
|
|
1023
|
+
# @return [Response] A Response object with data of type Array<{OCI::Core::Models::InstanceSummary InstanceSummary}>
|
|
1024
|
+
def list_cluster_network_instances(compartment_id, cluster_network_id, opts = {})
|
|
1025
|
+
logger.debug 'Calling operation ComputeManagementClient#list_cluster_network_instances.' if logger
|
|
1026
|
+
|
|
1027
|
+
raise "Missing the required parameter 'compartment_id' when calling list_cluster_network_instances." if compartment_id.nil?
|
|
1028
|
+
raise "Missing the required parameter 'cluster_network_id' when calling list_cluster_network_instances." if cluster_network_id.nil?
|
|
1029
|
+
|
|
1030
|
+
if opts[:sort_by] && !%w[TIMECREATED DISPLAYNAME].include?(opts[:sort_by])
|
|
1031
|
+
raise 'Invalid value for "sort_by", must be one of TIMECREATED, DISPLAYNAME.'
|
|
1032
|
+
end
|
|
1033
|
+
|
|
1034
|
+
if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order])
|
|
1035
|
+
raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
|
|
1036
|
+
end
|
|
1037
|
+
raise "Parameter value for 'cluster_network_id' must not be blank" if OCI::Internal::Util.blank_string?(cluster_network_id)
|
|
1038
|
+
|
|
1039
|
+
path = '/clusterNetworks/{clusterNetworkId}/instances'.sub('{clusterNetworkId}', cluster_network_id.to_s)
|
|
1040
|
+
operation_signing_strategy = :standard
|
|
1041
|
+
|
|
1042
|
+
# rubocop:disable Style/NegatedIf
|
|
1043
|
+
# Query Params
|
|
1044
|
+
query_params = {}
|
|
1045
|
+
query_params[:compartmentId] = compartment_id
|
|
1046
|
+
query_params[:displayName] = opts[:display_name] if opts[:display_name]
|
|
1047
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
1048
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
1049
|
+
query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
|
|
1050
|
+
query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
|
|
1051
|
+
|
|
1052
|
+
# Header Params
|
|
1053
|
+
header_params = {}
|
|
1054
|
+
header_params[:accept] = 'application/json'
|
|
1055
|
+
header_params[:'content-type'] = 'application/json'
|
|
1056
|
+
# rubocop:enable Style/NegatedIf
|
|
1057
|
+
|
|
1058
|
+
post_body = nil
|
|
1059
|
+
|
|
1060
|
+
# rubocop:disable Metrics/BlockLength
|
|
1061
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#list_cluster_network_instances') do
|
|
1062
|
+
@api_client.call_api(
|
|
1063
|
+
:GET,
|
|
1064
|
+
path,
|
|
1065
|
+
endpoint,
|
|
1066
|
+
header_params: header_params,
|
|
1067
|
+
query_params: query_params,
|
|
1068
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1069
|
+
body: post_body,
|
|
1070
|
+
return_type: 'Array<OCI::Core::Models::InstanceSummary>'
|
|
1071
|
+
)
|
|
1072
|
+
end
|
|
1073
|
+
# rubocop:enable Metrics/BlockLength
|
|
1074
|
+
end
|
|
1075
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1076
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1077
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1078
|
+
|
|
1079
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1080
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1081
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
# Lists the cluster networks in the specified compartment.
|
|
1085
|
+
# @param [String] compartment_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
1086
|
+
# @param [Hash] opts the optional parameters
|
|
1087
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1088
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
1089
|
+
# @option opts [String] :display_name A filter to return only resources that match the given display name exactly.
|
|
1090
|
+
#
|
|
1091
|
+
# @option opts [Integer] :limit For list pagination. The maximum number of results per page, or items to return in a paginated
|
|
1092
|
+
# \"List\" call. For important details about how pagination works, see
|
|
1093
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
1094
|
+
#
|
|
1095
|
+
# Example: `50`
|
|
1096
|
+
#
|
|
1097
|
+
# @option opts [String] :page For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
|
|
1098
|
+
# call. For important details about how pagination works, see
|
|
1099
|
+
# [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
1100
|
+
#
|
|
1101
|
+
# @option opts [String] :sort_by The field to sort by. You can provide one sort order (`sortOrder`). Default order for
|
|
1102
|
+
# TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME
|
|
1103
|
+
# sort order is case sensitive.
|
|
1104
|
+
#
|
|
1105
|
+
# **Note:** In general, some \"List\" operations (for example, `ListInstances`) let you
|
|
1106
|
+
# optionally filter by availability domain if the scope of the resource type is within a
|
|
1107
|
+
# single availability domain. If you call one of these \"List\" operations without specifying
|
|
1108
|
+
# an availability domain, the resources are grouped by availability domain, then sorted.
|
|
1109
|
+
#
|
|
1110
|
+
# Allowed values are: TIMECREATED, DISPLAYNAME
|
|
1111
|
+
# @option opts [String] :sort_order The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order
|
|
1112
|
+
# is case sensitive.
|
|
1113
|
+
#
|
|
1114
|
+
# Allowed values are: ASC, DESC
|
|
1115
|
+
# @option opts [String] :lifecycle_state A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
|
1116
|
+
# @return [Response] A Response object with data of type Array<{OCI::Core::Models::ClusterNetworkSummary ClusterNetworkSummary}>
|
|
1117
|
+
def list_cluster_networks(compartment_id, opts = {})
|
|
1118
|
+
logger.debug 'Calling operation ComputeManagementClient#list_cluster_networks.' if logger
|
|
1119
|
+
|
|
1120
|
+
raise "Missing the required parameter 'compartment_id' when calling list_cluster_networks." if compartment_id.nil?
|
|
1121
|
+
|
|
1122
|
+
if opts[:sort_by] && !%w[TIMECREATED DISPLAYNAME].include?(opts[:sort_by])
|
|
1123
|
+
raise 'Invalid value for "sort_by", must be one of TIMECREATED, DISPLAYNAME.'
|
|
1124
|
+
end
|
|
1125
|
+
|
|
1126
|
+
if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order])
|
|
1127
|
+
raise 'Invalid value for "sort_order", must be one of ASC, DESC.'
|
|
1128
|
+
end
|
|
1129
|
+
|
|
1130
|
+
if opts[:lifecycle_state] && !OCI::Core::Models::ClusterNetworkSummary::LIFECYCLE_STATE_ENUM.include?(opts[:lifecycle_state])
|
|
1131
|
+
raise 'Invalid value for "lifecycle_state", must be one of the values in OCI::Core::Models::ClusterNetworkSummary::LIFECYCLE_STATE_ENUM.'
|
|
1132
|
+
end
|
|
1133
|
+
|
|
1134
|
+
path = '/clusterNetworks'
|
|
1135
|
+
operation_signing_strategy = :standard
|
|
1136
|
+
|
|
1137
|
+
# rubocop:disable Style/NegatedIf
|
|
1138
|
+
# Query Params
|
|
1139
|
+
query_params = {}
|
|
1140
|
+
query_params[:compartmentId] = compartment_id
|
|
1141
|
+
query_params[:displayName] = opts[:display_name] if opts[:display_name]
|
|
1142
|
+
query_params[:limit] = opts[:limit] if opts[:limit]
|
|
1143
|
+
query_params[:page] = opts[:page] if opts[:page]
|
|
1144
|
+
query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
|
|
1145
|
+
query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
|
|
1146
|
+
query_params[:lifecycleState] = opts[:lifecycle_state] if opts[:lifecycle_state]
|
|
1147
|
+
|
|
1148
|
+
# Header Params
|
|
1149
|
+
header_params = {}
|
|
1150
|
+
header_params[:accept] = 'application/json'
|
|
1151
|
+
header_params[:'content-type'] = 'application/json'
|
|
1152
|
+
# rubocop:enable Style/NegatedIf
|
|
1153
|
+
|
|
1154
|
+
post_body = nil
|
|
1155
|
+
|
|
1156
|
+
# rubocop:disable Metrics/BlockLength
|
|
1157
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#list_cluster_networks') do
|
|
1158
|
+
@api_client.call_api(
|
|
1159
|
+
:GET,
|
|
1160
|
+
path,
|
|
1161
|
+
endpoint,
|
|
1162
|
+
header_params: header_params,
|
|
1163
|
+
query_params: query_params,
|
|
1164
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1165
|
+
body: post_body,
|
|
1166
|
+
return_type: 'Array<OCI::Core::Models::ClusterNetworkSummary>'
|
|
1167
|
+
)
|
|
1168
|
+
end
|
|
1169
|
+
# rubocop:enable Metrics/BlockLength
|
|
1170
|
+
end
|
|
1171
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1172
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1173
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1174
|
+
|
|
1175
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1176
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1177
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1178
|
+
|
|
1179
|
+
|
|
810
1180
|
# Lists the instance configurations in the specified compartment.
|
|
811
1181
|
#
|
|
812
1182
|
# @param [String] compartment_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
@@ -1349,6 +1719,61 @@ module OCI
|
|
|
1349
1719
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1350
1720
|
|
|
1351
1721
|
|
|
1722
|
+
# Terminate the specified cluster network.
|
|
1723
|
+
# @param [String] cluster_network_id The OCID of the cluster network.
|
|
1724
|
+
# @param [Hash] opts the optional parameters
|
|
1725
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1726
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
1727
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
1728
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
1729
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
1730
|
+
#
|
|
1731
|
+
# @return [Response] A Response object with data of type nil
|
|
1732
|
+
def terminate_cluster_network(cluster_network_id, opts = {})
|
|
1733
|
+
logger.debug 'Calling operation ComputeManagementClient#terminate_cluster_network.' if logger
|
|
1734
|
+
|
|
1735
|
+
raise "Missing the required parameter 'cluster_network_id' when calling terminate_cluster_network." if cluster_network_id.nil?
|
|
1736
|
+
raise "Parameter value for 'cluster_network_id' must not be blank" if OCI::Internal::Util.blank_string?(cluster_network_id)
|
|
1737
|
+
|
|
1738
|
+
path = '/clusterNetworks/{clusterNetworkId}'.sub('{clusterNetworkId}', cluster_network_id.to_s)
|
|
1739
|
+
operation_signing_strategy = :standard
|
|
1740
|
+
|
|
1741
|
+
# rubocop:disable Style/NegatedIf
|
|
1742
|
+
# Query Params
|
|
1743
|
+
query_params = {}
|
|
1744
|
+
|
|
1745
|
+
# Header Params
|
|
1746
|
+
header_params = {}
|
|
1747
|
+
header_params[:accept] = 'application/json'
|
|
1748
|
+
header_params[:'content-type'] = 'application/json'
|
|
1749
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
1750
|
+
# rubocop:enable Style/NegatedIf
|
|
1751
|
+
|
|
1752
|
+
post_body = nil
|
|
1753
|
+
|
|
1754
|
+
# rubocop:disable Metrics/BlockLength
|
|
1755
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#terminate_cluster_network') do
|
|
1756
|
+
@api_client.call_api(
|
|
1757
|
+
:DELETE,
|
|
1758
|
+
path,
|
|
1759
|
+
endpoint,
|
|
1760
|
+
header_params: header_params,
|
|
1761
|
+
query_params: query_params,
|
|
1762
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1763
|
+
body: post_body
|
|
1764
|
+
)
|
|
1765
|
+
end
|
|
1766
|
+
# rubocop:enable Metrics/BlockLength
|
|
1767
|
+
end
|
|
1768
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1769
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1770
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1771
|
+
|
|
1772
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1773
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1774
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1775
|
+
|
|
1776
|
+
|
|
1352
1777
|
# Terminate the specified instance pool.
|
|
1353
1778
|
# @param [String] instance_pool_id The OCID of the instance pool.
|
|
1354
1779
|
# @param [Hash] opts the optional parameters
|
|
@@ -1404,6 +1829,74 @@ module OCI
|
|
|
1404
1829
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1405
1830
|
|
|
1406
1831
|
|
|
1832
|
+
# Update the specified cluster network.
|
|
1833
|
+
# The OCID of the cluster network remains the same.
|
|
1834
|
+
#
|
|
1835
|
+
# @param [String] cluster_network_id The OCID of the cluster network.
|
|
1836
|
+
# @param [OCI::Core::Models::UpdateClusterNetworkDetails] update_cluster_network_details Update cluster network
|
|
1837
|
+
# @param [Hash] opts the optional parameters
|
|
1838
|
+
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1839
|
+
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
1840
|
+
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
1841
|
+
# server error without risk of executing that same action again. Retry tokens expire after 24
|
|
1842
|
+
# hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
|
1843
|
+
# has been deleted and purged from the system, then a retry of the original creation request
|
|
1844
|
+
# may be rejected).
|
|
1845
|
+
#
|
|
1846
|
+
# @option opts [String] :if_match For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
1847
|
+
# parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
1848
|
+
# will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
1849
|
+
#
|
|
1850
|
+
# @return [Response] A Response object with data of type {OCI::Core::Models::ClusterNetwork ClusterNetwork}
|
|
1851
|
+
def update_cluster_network(cluster_network_id, update_cluster_network_details, opts = {})
|
|
1852
|
+
logger.debug 'Calling operation ComputeManagementClient#update_cluster_network.' if logger
|
|
1853
|
+
|
|
1854
|
+
raise "Missing the required parameter 'cluster_network_id' when calling update_cluster_network." if cluster_network_id.nil?
|
|
1855
|
+
raise "Missing the required parameter 'update_cluster_network_details' when calling update_cluster_network." if update_cluster_network_details.nil?
|
|
1856
|
+
raise "Parameter value for 'cluster_network_id' must not be blank" if OCI::Internal::Util.blank_string?(cluster_network_id)
|
|
1857
|
+
|
|
1858
|
+
path = '/clusterNetworks/{clusterNetworkId}'.sub('{clusterNetworkId}', cluster_network_id.to_s)
|
|
1859
|
+
operation_signing_strategy = :standard
|
|
1860
|
+
|
|
1861
|
+
# rubocop:disable Style/NegatedIf
|
|
1862
|
+
# Query Params
|
|
1863
|
+
query_params = {}
|
|
1864
|
+
|
|
1865
|
+
# Header Params
|
|
1866
|
+
header_params = {}
|
|
1867
|
+
header_params[:accept] = 'application/json'
|
|
1868
|
+
header_params[:'content-type'] = 'application/json'
|
|
1869
|
+
header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token]
|
|
1870
|
+
header_params[:'if-match'] = opts[:if_match] if opts[:if_match]
|
|
1871
|
+
# rubocop:enable Style/NegatedIf
|
|
1872
|
+
header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token
|
|
1873
|
+
|
|
1874
|
+
post_body = @api_client.object_to_http_body(update_cluster_network_details)
|
|
1875
|
+
|
|
1876
|
+
# rubocop:disable Metrics/BlockLength
|
|
1877
|
+
OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'ComputeManagementClient#update_cluster_network') do
|
|
1878
|
+
@api_client.call_api(
|
|
1879
|
+
:PUT,
|
|
1880
|
+
path,
|
|
1881
|
+
endpoint,
|
|
1882
|
+
header_params: header_params,
|
|
1883
|
+
query_params: query_params,
|
|
1884
|
+
operation_signing_strategy: operation_signing_strategy,
|
|
1885
|
+
body: post_body,
|
|
1886
|
+
return_type: 'OCI::Core::Models::ClusterNetwork'
|
|
1887
|
+
)
|
|
1888
|
+
end
|
|
1889
|
+
# rubocop:enable Metrics/BlockLength
|
|
1890
|
+
end
|
|
1891
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1892
|
+
# rubocop:enable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1893
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines
|
|
1894
|
+
|
|
1895
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
1896
|
+
# rubocop:disable Style/IfUnlessModifier, Metrics/ParameterLists
|
|
1897
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1898
|
+
|
|
1899
|
+
|
|
1407
1900
|
# Updates the free-form tags, defined tags, and display name of an instance configuration.
|
|
1408
1901
|
# @param [String] instance_configuration_id The OCID of the instance configuration.
|
|
1409
1902
|
# @param [OCI::Core::Models::UpdateInstanceConfigurationDetails] update_instance_configuration_details Updates the freeFormTags, definedTags, and display name of an instance configuration.
|