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,172 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
|
4
|
+
module OCI
|
|
5
|
+
# This class provides a wrapper around {OCI::Waas::RedirectClient} and offers convenience methods
|
|
6
|
+
# for operations that would otherwise need to be chained together. For example, instead of performing an action
|
|
7
|
+
# on a resource (e.g. launching an instance, creating a load balancer) and then using a waiter to wait for the resource
|
|
8
|
+
# to enter a given state, you can call a single method in this class to accomplish the same functionality
|
|
9
|
+
class Waas::RedirectClientCompositeOperations
|
|
10
|
+
# The {OCI::Waas::RedirectClient} used to communicate with the service_client
|
|
11
|
+
#
|
|
12
|
+
# @return [OCI::Waas::RedirectClient]
|
|
13
|
+
attr_reader :service_client
|
|
14
|
+
|
|
15
|
+
# Initializes a new RedirectClientCompositeOperations
|
|
16
|
+
#
|
|
17
|
+
# @param [OCI::Waas::RedirectClient] service_client The client used to communicate with the service.
|
|
18
|
+
# Defaults to a new service client created via {OCI::Waas::RedirectClient#initialize} with no arguments
|
|
19
|
+
def initialize(service_client = OCI::Waas::RedirectClient.new)
|
|
20
|
+
@service_client = service_client
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
24
|
+
# rubocop:disable Layout/EmptyLines
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Calls {OCI::Waas::RedirectClient#create_http_redirect} and then waits for the {OCI::Waas::Models::WorkRequest}
|
|
28
|
+
# to enter the given state(s).
|
|
29
|
+
#
|
|
30
|
+
# @param [OCI::Waas::Models::CreateHttpRedirectDetails] create_http_redirect_details The details of the HTTP Redirect.
|
|
31
|
+
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::WorkRequest#status}
|
|
32
|
+
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::RedirectClient#create_http_redirect}
|
|
33
|
+
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
34
|
+
# * max_interval_seconds: The maximum interval between queries, in seconds.
|
|
35
|
+
# * max_wait_seconds The maximum time to wait, in seconds
|
|
36
|
+
#
|
|
37
|
+
# @return [OCI::Response] A {OCI::Response} object containing the completed {OCI::Waas::Models::WorkRequest}
|
|
38
|
+
def create_http_redirect_and_wait_for_state(create_http_redirect_details, wait_for_states = [], base_operation_opts = {}, waiter_opts = {})
|
|
39
|
+
operation_result = @service_client.create_http_redirect(create_http_redirect_details, base_operation_opts)
|
|
40
|
+
use_util = OCI::Waas::Util.respond_to?(:wait_on_work_request)
|
|
41
|
+
|
|
42
|
+
return operation_result if wait_for_states.empty? && !use_util
|
|
43
|
+
|
|
44
|
+
lowered_wait_for_states = wait_for_states.map(&:downcase)
|
|
45
|
+
wait_for_resource_id = operation_result.headers['opc-work-request-id']
|
|
46
|
+
|
|
47
|
+
begin
|
|
48
|
+
if use_util
|
|
49
|
+
waiter_result = OCI::Waas::Util.wait_on_work_request(
|
|
50
|
+
@service_client,
|
|
51
|
+
wait_for_resource_id,
|
|
52
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
53
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
54
|
+
)
|
|
55
|
+
else
|
|
56
|
+
waiter_result = @service_client.get_work_request(wait_for_resource_id).wait_until(
|
|
57
|
+
eval_proc: ->(response) { response.data.respond_to?(:status) && lowered_wait_for_states.include?(response.data.status.downcase) },
|
|
58
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
59
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
60
|
+
)
|
|
61
|
+
end
|
|
62
|
+
result_to_return = waiter_result
|
|
63
|
+
|
|
64
|
+
return result_to_return
|
|
65
|
+
rescue StandardError
|
|
66
|
+
raise OCI::Errors::CompositeOperationError.new(partial_results: [operation_result])
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
70
|
+
# rubocop:enable Layout/EmptyLines
|
|
71
|
+
|
|
72
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
73
|
+
# rubocop:disable Layout/EmptyLines
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# Calls {OCI::Waas::RedirectClient#delete_http_redirect} and then waits for the {OCI::Waas::Models::WorkRequest}
|
|
77
|
+
# to enter the given state(s).
|
|
78
|
+
#
|
|
79
|
+
# @param [String] http_redirect_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the HTTP Redirect.
|
|
80
|
+
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::WorkRequest#status}
|
|
81
|
+
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::RedirectClient#delete_http_redirect}
|
|
82
|
+
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
83
|
+
# * max_interval_seconds: The maximum interval between queries, in seconds.
|
|
84
|
+
# * max_wait_seconds The maximum time to wait, in seconds
|
|
85
|
+
#
|
|
86
|
+
# @return [OCI::Response] A {OCI::Response} object containing the completed {OCI::Waas::Models::WorkRequest}
|
|
87
|
+
def delete_http_redirect_and_wait_for_state(http_redirect_id, wait_for_states = [], base_operation_opts = {}, waiter_opts = {})
|
|
88
|
+
operation_result = @service_client.delete_http_redirect(http_redirect_id, base_operation_opts)
|
|
89
|
+
use_util = OCI::Waas::Util.respond_to?(:wait_on_work_request)
|
|
90
|
+
|
|
91
|
+
return operation_result if wait_for_states.empty? && !use_util
|
|
92
|
+
|
|
93
|
+
lowered_wait_for_states = wait_for_states.map(&:downcase)
|
|
94
|
+
wait_for_resource_id = operation_result.headers['opc-work-request-id']
|
|
95
|
+
|
|
96
|
+
begin
|
|
97
|
+
if use_util
|
|
98
|
+
waiter_result = OCI::Waas::Util.wait_on_work_request(
|
|
99
|
+
@service_client,
|
|
100
|
+
wait_for_resource_id,
|
|
101
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
102
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
103
|
+
)
|
|
104
|
+
else
|
|
105
|
+
waiter_result = @service_client.get_work_request(wait_for_resource_id).wait_until(
|
|
106
|
+
eval_proc: ->(response) { response.data.respond_to?(:status) && lowered_wait_for_states.include?(response.data.status.downcase) },
|
|
107
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
108
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
109
|
+
)
|
|
110
|
+
end
|
|
111
|
+
result_to_return = waiter_result
|
|
112
|
+
|
|
113
|
+
return result_to_return
|
|
114
|
+
rescue StandardError
|
|
115
|
+
raise OCI::Errors::CompositeOperationError.new(partial_results: [operation_result])
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
119
|
+
# rubocop:enable Layout/EmptyLines
|
|
120
|
+
|
|
121
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
122
|
+
# rubocop:disable Layout/EmptyLines
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
# Calls {OCI::Waas::RedirectClient#update_http_redirect} and then waits for the {OCI::Waas::Models::WorkRequest}
|
|
126
|
+
# to enter the given state(s).
|
|
127
|
+
#
|
|
128
|
+
# @param [String] http_redirect_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the HTTP Redirect.
|
|
129
|
+
# @param [OCI::Waas::Models::UpdateHttpRedirectDetails] update_http_redirect_details The details of the HTTP Redirect to update.
|
|
130
|
+
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::WorkRequest#status}
|
|
131
|
+
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::RedirectClient#update_http_redirect}
|
|
132
|
+
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
133
|
+
# * max_interval_seconds: The maximum interval between queries, in seconds.
|
|
134
|
+
# * max_wait_seconds The maximum time to wait, in seconds
|
|
135
|
+
#
|
|
136
|
+
# @return [OCI::Response] A {OCI::Response} object containing the completed {OCI::Waas::Models::WorkRequest}
|
|
137
|
+
def update_http_redirect_and_wait_for_state(http_redirect_id, update_http_redirect_details, wait_for_states = [], base_operation_opts = {}, waiter_opts = {})
|
|
138
|
+
operation_result = @service_client.update_http_redirect(http_redirect_id, update_http_redirect_details, base_operation_opts)
|
|
139
|
+
use_util = OCI::Waas::Util.respond_to?(:wait_on_work_request)
|
|
140
|
+
|
|
141
|
+
return operation_result if wait_for_states.empty? && !use_util
|
|
142
|
+
|
|
143
|
+
lowered_wait_for_states = wait_for_states.map(&:downcase)
|
|
144
|
+
wait_for_resource_id = operation_result.headers['opc-work-request-id']
|
|
145
|
+
|
|
146
|
+
begin
|
|
147
|
+
if use_util
|
|
148
|
+
waiter_result = OCI::Waas::Util.wait_on_work_request(
|
|
149
|
+
@service_client,
|
|
150
|
+
wait_for_resource_id,
|
|
151
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
152
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
153
|
+
)
|
|
154
|
+
else
|
|
155
|
+
waiter_result = @service_client.get_work_request(wait_for_resource_id).wait_until(
|
|
156
|
+
eval_proc: ->(response) { response.data.respond_to?(:status) && lowered_wait_for_states.include?(response.data.status.downcase) },
|
|
157
|
+
max_interval_seconds: waiter_opts.key?(:max_interval_seconds) ? waiter_opts[:max_interval_seconds] : 30,
|
|
158
|
+
max_wait_seconds: waiter_opts.key?(:max_wait_seconds) ? waiter_opts[:max_wait_seconds] : 1200
|
|
159
|
+
)
|
|
160
|
+
end
|
|
161
|
+
result_to_return = waiter_result
|
|
162
|
+
|
|
163
|
+
return result_to_return
|
|
164
|
+
rescue StandardError
|
|
165
|
+
raise OCI::Errors::CompositeOperationError.new(partial_results: [operation_result])
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/ParameterLists, Metrics/PerceivedComplexity
|
|
169
|
+
# rubocop:enable Layout/EmptyLines
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
# rubocop:enable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
data/lib/oci/waas/waas.rb
CHANGED
|
@@ -29,10 +29,12 @@ require 'oci/waas/models/certificate_summary'
|
|
|
29
29
|
require 'oci/waas/models/change_address_list_compartment_details'
|
|
30
30
|
require 'oci/waas/models/change_certificate_compartment_details'
|
|
31
31
|
require 'oci/waas/models/change_custom_protection_rule_compartment_details'
|
|
32
|
+
require 'oci/waas/models/change_http_redirect_compartment_details'
|
|
32
33
|
require 'oci/waas/models/change_waas_policy_compartment_details'
|
|
33
34
|
require 'oci/waas/models/create_address_list_details'
|
|
34
35
|
require 'oci/waas/models/create_certificate_details'
|
|
35
36
|
require 'oci/waas/models/create_custom_protection_rule_details'
|
|
37
|
+
require 'oci/waas/models/create_http_redirect_details'
|
|
36
38
|
require 'oci/waas/models/create_waas_policy_details'
|
|
37
39
|
require 'oci/waas/models/custom_protection_rule'
|
|
38
40
|
require 'oci/waas/models/custom_protection_rule_setting'
|
|
@@ -41,6 +43,9 @@ require 'oci/waas/models/device_fingerprint_challenge'
|
|
|
41
43
|
require 'oci/waas/models/edge_subnet'
|
|
42
44
|
require 'oci/waas/models/good_bot'
|
|
43
45
|
require 'oci/waas/models/header'
|
|
46
|
+
require 'oci/waas/models/http_redirect'
|
|
47
|
+
require 'oci/waas/models/http_redirect_summary'
|
|
48
|
+
require 'oci/waas/models/http_redirect_target'
|
|
44
49
|
require 'oci/waas/models/human_interaction_challenge'
|
|
45
50
|
require 'oci/waas/models/js_challenge'
|
|
46
51
|
require 'oci/waas/models/lifecycle_states'
|
|
@@ -59,6 +64,7 @@ require 'oci/waas/models/threat_feed_action'
|
|
|
59
64
|
require 'oci/waas/models/update_address_list_details'
|
|
60
65
|
require 'oci/waas/models/update_certificate_details'
|
|
61
66
|
require 'oci/waas/models/update_custom_protection_rule_details'
|
|
67
|
+
require 'oci/waas/models/update_http_redirect_details'
|
|
62
68
|
require 'oci/waas/models/update_waas_policy_details'
|
|
63
69
|
require 'oci/waas/models/waas_policy'
|
|
64
70
|
require 'oci/waas/models/waas_policy_custom_protection_rule_summary'
|
|
@@ -80,6 +86,8 @@ require 'oci/waas/models/work_request_status_values'
|
|
|
80
86
|
require 'oci/waas/models/work_request_summary'
|
|
81
87
|
|
|
82
88
|
# Require generated clients
|
|
89
|
+
require 'oci/waas/redirect_client'
|
|
90
|
+
require 'oci/waas/redirect_client_composite_operations'
|
|
83
91
|
require 'oci/waas/waas_client'
|
|
84
92
|
require 'oci/waas/waas_client_composite_operations'
|
|
85
93
|
|
data/lib/oci/waas/waas_client.rb
CHANGED
|
@@ -224,7 +224,10 @@ module OCI
|
|
|
224
224
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
225
225
|
|
|
226
226
|
|
|
227
|
-
# Moves address list into a different compartment. When provided, If-Match
|
|
227
|
+
# Moves address list into a different compartment. When provided, If-Match
|
|
228
|
+
# is checked against ETag values of the address list. For information about moving
|
|
229
|
+
# resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
230
|
+
#
|
|
228
231
|
# @param [String] address_list_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the address list. This number is generated when the address list is added to the compartment.
|
|
229
232
|
# @param [OCI::Waas::Models::ChangeAddressListCompartmentDetails] change_address_list_compartment_details
|
|
230
233
|
# @param [Hash] opts the optional parameters
|
|
@@ -285,6 +288,8 @@ module OCI
|
|
|
285
288
|
|
|
286
289
|
|
|
287
290
|
# Moves certificate into a different compartment. When provided, If-Match is checked against ETag values of the certificate.
|
|
291
|
+
# For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
292
|
+
#
|
|
288
293
|
# @param [String] certificate_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the SSL certificate used in the WAAS policy. This number is generated when the certificate is added to the policy.
|
|
289
294
|
# @param [OCI::Waas::Models::ChangeCertificateCompartmentDetails] change_certificate_compartment_details
|
|
290
295
|
# @param [Hash] opts the optional parameters
|
|
@@ -344,8 +349,8 @@ module OCI
|
|
|
344
349
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
345
350
|
|
|
346
351
|
|
|
347
|
-
# Moves
|
|
348
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
352
|
+
# Moves a custom protection rule into a different compartment within the same tenancy. When provided, If-Match is checked against ETag values of the custom protection rule. For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
353
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
349
354
|
# @param [OCI::Waas::Models::ChangeCustomProtectionRuleCompartmentDetails] change_custom_protection_rule_compartment_details
|
|
350
355
|
# @param [Hash] opts the optional parameters
|
|
351
356
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
@@ -405,6 +410,8 @@ module OCI
|
|
|
405
410
|
|
|
406
411
|
|
|
407
412
|
# Moves WAAS policy into a different compartment. When provided, If-Match is checked against ETag values of the WAAS policy.
|
|
413
|
+
# For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
414
|
+
#
|
|
408
415
|
# @param [String] waas_policy_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the WAAS policy.
|
|
409
416
|
# @param [OCI::Waas::Models::ChangeWaasPolicyCompartmentDetails] change_waas_policy_compartment_details
|
|
410
417
|
# @param [Hash] opts the optional parameters
|
|
@@ -464,8 +471,7 @@ module OCI
|
|
|
464
471
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
465
472
|
|
|
466
473
|
|
|
467
|
-
# Creates an address list in set compartment and allows it to be used in a WAAS policy.
|
|
468
|
-
# For more information, see [WAF Settings](https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/wafsettings.htm).
|
|
474
|
+
# Creates an address list in a set compartment and allows it to be used in a WAAS policy and referenced by access rules. Addresses can be IP addresses and CIDR notations.
|
|
469
475
|
# @param [OCI::Waas::Models::CreateAddressListDetails] create_address_list_details The details of the address list resource to create.
|
|
470
476
|
# @param [Hash] opts the optional parameters
|
|
471
477
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
@@ -579,8 +585,10 @@ module OCI
|
|
|
579
585
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
580
586
|
|
|
581
587
|
|
|
582
|
-
# Creates a new
|
|
583
|
-
#
|
|
588
|
+
# Creates a new custom protection rule in the specified compartment.
|
|
589
|
+
#
|
|
590
|
+
# Custom protection rules allow you to create rules in addition to the rulesets provided by the Web Application Firewall service, including rules from [ModSecurity](https://modsecurity.org/). The syntax for custom rules is based on the ModSecurity syntax. For more information about custom protection rules, see [Custom Protection Rules](https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/customprotectionrules.htm).
|
|
591
|
+
# @param [OCI::Waas::Models::CreateCustomProtectionRuleDetails] create_custom_protection_rule_details The details of the custom protection rule.
|
|
584
592
|
# @param [Hash] opts the optional parameters
|
|
585
593
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
586
594
|
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
@@ -819,7 +827,7 @@ module OCI
|
|
|
819
827
|
|
|
820
828
|
|
|
821
829
|
# Deletes a Custom Protection rule.
|
|
822
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
830
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
823
831
|
# @param [Hash] opts the optional parameters
|
|
824
832
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
825
833
|
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
@@ -1040,8 +1048,8 @@ module OCI
|
|
|
1040
1048
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1041
1049
|
|
|
1042
1050
|
|
|
1043
|
-
# Gets the details of a
|
|
1044
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
1051
|
+
# Gets the details of a custom protection rule.
|
|
1052
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
1045
1053
|
# @param [Hash] opts the optional parameters
|
|
1046
1054
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
1047
1055
|
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
@@ -1777,7 +1785,7 @@ module OCI
|
|
|
1777
1785
|
|
|
1778
1786
|
|
|
1779
1787
|
# Gets the currently configured caching rules for the Web Application Firewall configuration of a specified WAAS policy.
|
|
1780
|
-
# The
|
|
1788
|
+
# The rules are processed in the order they are specified in and the first matching rule will be used when processing a request.
|
|
1781
1789
|
# @param [String] waas_policy_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the WAAS policy.
|
|
1782
1790
|
# @param [Hash] opts the optional parameters
|
|
1783
1791
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
@@ -1988,7 +1996,7 @@ module OCI
|
|
|
1988
1996
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
1989
1997
|
|
|
1990
1998
|
|
|
1991
|
-
# Gets a list of
|
|
1999
|
+
# Gets a list of custom protection rules for the specified Web Application Firewall.
|
|
1992
2000
|
# @param [String] compartment_id The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This number is generated when the compartment is created.
|
|
1993
2001
|
# @param [Hash] opts the optional parameters
|
|
1994
2002
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
@@ -1996,16 +2004,16 @@ module OCI
|
|
|
1996
2004
|
# @option opts [String] :opc_request_id The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
1997
2005
|
# @option opts [Integer] :limit The maximum number of items to return in a paginated call. In unspecified, defaults to `10`. (default to 10)
|
|
1998
2006
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous paginated call.
|
|
1999
|
-
# @option opts [String] :sort_by The value by which
|
|
2007
|
+
# @option opts [String] :sort_by The value by which custom protection rules are sorted in a paginated 'List' call. If unspecified, defaults to `timeCreated`.
|
|
2000
2008
|
# Allowed values are: id, compartmentId, displayName, modSecurityRuleId, timeCreated
|
|
2001
2009
|
# @option opts [String] :sort_order The value of the sorting direction of resources in a paginated 'List' call. If unspecified, defaults to `DESC`.
|
|
2002
2010
|
# Allowed values are: ASC, DESC
|
|
2003
|
-
# @option opts [Array<String>] :id Filter
|
|
2004
|
-
# @option opts [Array<String>] :display_name Filter
|
|
2011
|
+
# @option opts [Array<String>] :id Filter custom protection rules using a list of custom protection rule OCIDs.
|
|
2012
|
+
# @option opts [Array<String>] :display_name Filter custom protection rules using a list of display names.
|
|
2005
2013
|
# @option opts [Array<String>] :lifecycle_state Filter Custom Protection rules using a list of lifecycle states.
|
|
2006
2014
|
# Allowed values are: CREATING, ACTIVE, FAILED, UPDATING, DELETING, DELETED
|
|
2007
2015
|
# @option opts [DateTime] :time_created_greater_than_or_equal_to A filter that matches Custom Protection rules created on or after the specified date-time.
|
|
2008
|
-
# @option opts [DateTime] :time_created_less_than A filter that matches
|
|
2016
|
+
# @option opts [DateTime] :time_created_less_than A filter that matches custom protection rules created before the specified date-time.
|
|
2009
2017
|
# @return [Response] A Response object with data of type Array<{OCI::Waas::Models::CustomProtectionRuleSummary CustomProtectionRuleSummary}>
|
|
2010
2018
|
def list_custom_protection_rules(compartment_id, opts = {})
|
|
2011
2019
|
logger.debug 'Calling operation WaasClient#list_custom_protection_rules.' if logger
|
|
@@ -3035,7 +3043,8 @@ module OCI
|
|
|
3035
3043
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
3036
3044
|
|
|
3037
3045
|
|
|
3038
|
-
#
|
|
3046
|
+
# Performs a purge of the cache for each specified resource. If no resources are passed, the cache for the entire Web Application Firewall will be purged.
|
|
3047
|
+
# For more information, see [Caching Rules](https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/cachingrules.htm#purge).
|
|
3039
3048
|
# @param [String] waas_policy_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the WAAS policy.
|
|
3040
3049
|
# @param [Hash] opts the optional parameters
|
|
3041
3050
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
@@ -3215,9 +3224,12 @@ module OCI
|
|
|
3215
3224
|
|
|
3216
3225
|
|
|
3217
3226
|
# Updates the configuration for each specified caching rule.
|
|
3218
|
-
#
|
|
3219
|
-
# Caching rules
|
|
3220
|
-
#
|
|
3227
|
+
#
|
|
3228
|
+
# Caching rules WAF policies allow you to selectively cache content on Oracle Cloud Infrastructure's edge servers, such as webpages or certain file types. For more information about caching rules, see [Caching Rules](https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/cachingrules.htm).
|
|
3229
|
+
#
|
|
3230
|
+
# This operation can create, delete, update, and/or reorder caching rules depending on the structure of the request body. Caching rules can be updated by changing the properties of the caching rule object with the rule's key specified in the key field. Any existing caching rules that are not specified with a key in the list of access rules will be deleted upon update.
|
|
3231
|
+
#
|
|
3232
|
+
# The order the caching rules are specified in is important. The rules are processed in the order they are specified and the first matching rule will be used when processing a request. Use `ListCachingRules` to view a list of all available caching rules in a compartment.
|
|
3221
3233
|
# @param [String] waas_policy_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the WAAS policy.
|
|
3222
3234
|
# @param [Array<OCI::Waas::Models::OCI::Waas::Models::CachingRule>] caching_rules_details
|
|
3223
3235
|
# @param [Hash] opts the optional parameters
|
|
@@ -3399,9 +3411,9 @@ module OCI
|
|
|
3399
3411
|
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines
|
|
3400
3412
|
|
|
3401
3413
|
|
|
3402
|
-
# Updates the
|
|
3403
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
3404
|
-
# @param [OCI::Waas::Models::UpdateCustomProtectionRuleDetails] update_custom_protection_rule_details The details of the
|
|
3414
|
+
# Updates the configuration of a custom protection rule. Only the fields specified in the request body will be updated; all other properties will remain unchanged.
|
|
3415
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
3416
|
+
# @param [OCI::Waas::Models::UpdateCustomProtectionRuleDetails] update_custom_protection_rule_details The details of the custom protection rule to update.
|
|
3405
3417
|
# @param [Hash] opts the optional parameters
|
|
3406
3418
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
3407
3419
|
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
@@ -155,7 +155,7 @@ module OCI
|
|
|
155
155
|
# Calls {OCI::Waas::WaasClient#create_custom_protection_rule} and then waits for the {OCI::Waas::Models::CustomProtectionRule} acted upon
|
|
156
156
|
# to enter the given state(s).
|
|
157
157
|
#
|
|
158
|
-
# @param [OCI::Waas::Models::CreateCustomProtectionRuleDetails] create_custom_protection_rule_details The details of the
|
|
158
|
+
# @param [OCI::Waas::Models::CreateCustomProtectionRuleDetails] create_custom_protection_rule_details The details of the custom protection rule.
|
|
159
159
|
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::CustomProtectionRule#lifecycle_state}
|
|
160
160
|
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::WaasClient#create_custom_protection_rule}
|
|
161
161
|
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
@@ -323,7 +323,7 @@ module OCI
|
|
|
323
323
|
# Calls {OCI::Waas::WaasClient#delete_custom_protection_rule} and then waits for the {OCI::Waas::Models::CustomProtectionRule} acted upon
|
|
324
324
|
# to enter the given state(s).
|
|
325
325
|
#
|
|
326
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
326
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
327
327
|
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::CustomProtectionRule#lifecycle_state}
|
|
328
328
|
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::WaasClient#delete_custom_protection_rule}
|
|
329
329
|
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
|
@@ -689,8 +689,8 @@ module OCI
|
|
|
689
689
|
# Calls {OCI::Waas::WaasClient#update_custom_protection_rule} and then waits for the {OCI::Waas::Models::CustomProtectionRule} acted upon
|
|
690
690
|
# to enter the given state(s).
|
|
691
691
|
#
|
|
692
|
-
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
|
|
693
|
-
# @param [OCI::Waas::Models::UpdateCustomProtectionRuleDetails] update_custom_protection_rule_details The details of the
|
|
692
|
+
# @param [String] custom_protection_rule_id The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the custom protection rule. This number is generated when the custom protection rule is added to the compartment.
|
|
693
|
+
# @param [OCI::Waas::Models::UpdateCustomProtectionRuleDetails] update_custom_protection_rule_details The details of the custom protection rule to update.
|
|
694
694
|
# @param [Array<String>] wait_for_states An array of states to wait on. These should be valid values for {OCI::Waas::Models::CustomProtectionRule#lifecycle_state}
|
|
695
695
|
# @param [Hash] base_operation_opts Any optional arguments accepted by {OCI::Waas::WaasClient#update_custom_protection_rule}
|
|
696
696
|
# @param [Hash] waiter_opts Optional arguments for the waiter. Keys should be symbols, and the following keys are supported:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oci
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oracle
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -216,6 +216,33 @@ extensions: []
|
|
|
216
216
|
extra_rdoc_files: []
|
|
217
217
|
files:
|
|
218
218
|
- "./lib/oci.rb"
|
|
219
|
+
- "./lib/oci/analytics/analytics.rb"
|
|
220
|
+
- "./lib/oci/analytics/analytics_client.rb"
|
|
221
|
+
- "./lib/oci/analytics/analytics_client_composite_operations.rb"
|
|
222
|
+
- "./lib/oci/analytics/models/analytics_instance.rb"
|
|
223
|
+
- "./lib/oci/analytics/models/analytics_instance_lifecycle_state.rb"
|
|
224
|
+
- "./lib/oci/analytics/models/analytics_instance_summary.rb"
|
|
225
|
+
- "./lib/oci/analytics/models/capacity.rb"
|
|
226
|
+
- "./lib/oci/analytics/models/capacity_type.rb"
|
|
227
|
+
- "./lib/oci/analytics/models/change_compartment_details.rb"
|
|
228
|
+
- "./lib/oci/analytics/models/create_analytics_instance_details.rb"
|
|
229
|
+
- "./lib/oci/analytics/models/feature_set.rb"
|
|
230
|
+
- "./lib/oci/analytics/models/license_type.rb"
|
|
231
|
+
- "./lib/oci/analytics/models/scale_analytics_instance_details.rb"
|
|
232
|
+
- "./lib/oci/analytics/models/sort_by.rb"
|
|
233
|
+
- "./lib/oci/analytics/models/sort_order.rb"
|
|
234
|
+
- "./lib/oci/analytics/models/update_analytics_instance_details.rb"
|
|
235
|
+
- "./lib/oci/analytics/models/work_request.rb"
|
|
236
|
+
- "./lib/oci/analytics/models/work_request_action_result.rb"
|
|
237
|
+
- "./lib/oci/analytics/models/work_request_error.rb"
|
|
238
|
+
- "./lib/oci/analytics/models/work_request_log.rb"
|
|
239
|
+
- "./lib/oci/analytics/models/work_request_operation_type.rb"
|
|
240
|
+
- "./lib/oci/analytics/models/work_request_resource.rb"
|
|
241
|
+
- "./lib/oci/analytics/models/work_request_resource_type.rb"
|
|
242
|
+
- "./lib/oci/analytics/models/work_request_sort_by.rb"
|
|
243
|
+
- "./lib/oci/analytics/models/work_request_status.rb"
|
|
244
|
+
- "./lib/oci/analytics/models/work_request_summary.rb"
|
|
245
|
+
- "./lib/oci/analytics/util.rb"
|
|
219
246
|
- "./lib/oci/announcements_service/announcement_client.rb"
|
|
220
247
|
- "./lib/oci/announcements_service/announcement_client_composite_operations.rb"
|
|
221
248
|
- "./lib/oci/announcements_service/announcements_service.rb"
|
|
@@ -233,6 +260,11 @@ files:
|
|
|
233
260
|
- "./lib/oci/audit/audit_client_composite_operations.rb"
|
|
234
261
|
- "./lib/oci/audit/models/audit_event.rb"
|
|
235
262
|
- "./lib/oci/audit/models/configuration.rb"
|
|
263
|
+
- "./lib/oci/audit/models/data.rb"
|
|
264
|
+
- "./lib/oci/audit/models/identity.rb"
|
|
265
|
+
- "./lib/oci/audit/models/request.rb"
|
|
266
|
+
- "./lib/oci/audit/models/response.rb"
|
|
267
|
+
- "./lib/oci/audit/models/state_change.rb"
|
|
236
268
|
- "./lib/oci/audit/models/update_configuration_details.rb"
|
|
237
269
|
- "./lib/oci/audit/util.rb"
|
|
238
270
|
- "./lib/oci/auth/auth.rb"
|
|
@@ -306,16 +338,20 @@ files:
|
|
|
306
338
|
- "./lib/oci/container_engine/models/create_cluster_details.rb"
|
|
307
339
|
- "./lib/oci/container_engine/models/create_cluster_kubeconfig_content_details.rb"
|
|
308
340
|
- "./lib/oci/container_engine/models/create_node_pool_details.rb"
|
|
341
|
+
- "./lib/oci/container_engine/models/create_node_pool_node_config_details.rb"
|
|
309
342
|
- "./lib/oci/container_engine/models/key_value.rb"
|
|
310
343
|
- "./lib/oci/container_engine/models/kubernetes_network_config.rb"
|
|
311
344
|
- "./lib/oci/container_engine/models/node.rb"
|
|
312
345
|
- "./lib/oci/container_engine/models/node_error.rb"
|
|
313
346
|
- "./lib/oci/container_engine/models/node_pool.rb"
|
|
347
|
+
- "./lib/oci/container_engine/models/node_pool_node_config_details.rb"
|
|
314
348
|
- "./lib/oci/container_engine/models/node_pool_options.rb"
|
|
349
|
+
- "./lib/oci/container_engine/models/node_pool_placement_config_details.rb"
|
|
315
350
|
- "./lib/oci/container_engine/models/node_pool_summary.rb"
|
|
316
351
|
- "./lib/oci/container_engine/models/sort_order.rb"
|
|
317
352
|
- "./lib/oci/container_engine/models/update_cluster_details.rb"
|
|
318
353
|
- "./lib/oci/container_engine/models/update_node_pool_details.rb"
|
|
354
|
+
- "./lib/oci/container_engine/models/update_node_pool_node_config_details.rb"
|
|
319
355
|
- "./lib/oci/container_engine/models/work_request.rb"
|
|
320
356
|
- "./lib/oci/container_engine/models/work_request_error.rb"
|
|
321
357
|
- "./lib/oci/container_engine/models/work_request_log_entry.rb"
|
|
@@ -362,11 +398,13 @@ files:
|
|
|
362
398
|
- "./lib/oci/core/models/capture_console_history_details.rb"
|
|
363
399
|
- "./lib/oci/core/models/change_boot_volume_backup_compartment_details.rb"
|
|
364
400
|
- "./lib/oci/core/models/change_boot_volume_compartment_details.rb"
|
|
401
|
+
- "./lib/oci/core/models/change_cluster_network_compartment_details.rb"
|
|
365
402
|
- "./lib/oci/core/models/change_cpe_compartment_details.rb"
|
|
366
403
|
- "./lib/oci/core/models/change_cross_connect_compartment_details.rb"
|
|
367
404
|
- "./lib/oci/core/models/change_cross_connect_group_compartment_details.rb"
|
|
368
405
|
- "./lib/oci/core/models/change_dedicated_vm_host_compartment_details.rb"
|
|
369
406
|
- "./lib/oci/core/models/change_dhcp_options_compartment_details.rb"
|
|
407
|
+
- "./lib/oci/core/models/change_drg_compartment_details.rb"
|
|
370
408
|
- "./lib/oci/core/models/change_image_compartment_details.rb"
|
|
371
409
|
- "./lib/oci/core/models/change_instance_compartment_details.rb"
|
|
372
410
|
- "./lib/oci/core/models/change_instance_configuration_compartment_details.rb"
|
|
@@ -388,6 +426,9 @@ files:
|
|
|
388
426
|
- "./lib/oci/core/models/change_volume_compartment_details.rb"
|
|
389
427
|
- "./lib/oci/core/models/change_volume_group_backup_compartment_details.rb"
|
|
390
428
|
- "./lib/oci/core/models/change_volume_group_compartment_details.rb"
|
|
429
|
+
- "./lib/oci/core/models/cluster_network.rb"
|
|
430
|
+
- "./lib/oci/core/models/cluster_network_placement_configuration_details.rb"
|
|
431
|
+
- "./lib/oci/core/models/cluster_network_summary.rb"
|
|
391
432
|
- "./lib/oci/core/models/compute_instance_details.rb"
|
|
392
433
|
- "./lib/oci/core/models/connect_local_peering_gateways_details.rb"
|
|
393
434
|
- "./lib/oci/core/models/connect_remote_peering_connections_details.rb"
|
|
@@ -397,6 +438,8 @@ files:
|
|
|
397
438
|
- "./lib/oci/core/models/create_app_catalog_subscription_details.rb"
|
|
398
439
|
- "./lib/oci/core/models/create_boot_volume_backup_details.rb"
|
|
399
440
|
- "./lib/oci/core/models/create_boot_volume_details.rb"
|
|
441
|
+
- "./lib/oci/core/models/create_cluster_network_details.rb"
|
|
442
|
+
- "./lib/oci/core/models/create_cluster_network_instance_pool_details.rb"
|
|
400
443
|
- "./lib/oci/core/models/create_cpe_details.rb"
|
|
401
444
|
- "./lib/oci/core/models/create_cross_connect_details.rb"
|
|
402
445
|
- "./lib/oci/core/models/create_cross_connect_group_details.rb"
|
|
@@ -432,6 +475,7 @@ files:
|
|
|
432
475
|
- "./lib/oci/core/models/create_vnic_details.rb"
|
|
433
476
|
- "./lib/oci/core/models/create_volume_backup_details.rb"
|
|
434
477
|
- "./lib/oci/core/models/create_volume_backup_policy_assignment_details.rb"
|
|
478
|
+
- "./lib/oci/core/models/create_volume_backup_policy_details.rb"
|
|
435
479
|
- "./lib/oci/core/models/create_volume_details.rb"
|
|
436
480
|
- "./lib/oci/core/models/create_volume_group_backup_details.rb"
|
|
437
481
|
- "./lib/oci/core/models/create_volume_group_details.rb"
|
|
@@ -467,6 +511,7 @@ files:
|
|
|
467
511
|
- "./lib/oci/core/models/i_scsi_volume_attachment.rb"
|
|
468
512
|
- "./lib/oci/core/models/icmp_options.rb"
|
|
469
513
|
- "./lib/oci/core/models/image.rb"
|
|
514
|
+
- "./lib/oci/core/models/image_shape_compatibility_entry.rb"
|
|
470
515
|
- "./lib/oci/core/models/image_source_details.rb"
|
|
471
516
|
- "./lib/oci/core/models/image_source_via_object_storage_tuple_details.rb"
|
|
472
517
|
- "./lib/oci/core/models/image_source_via_object_storage_uri_details.rb"
|
|
@@ -542,6 +587,7 @@ files:
|
|
|
542
587
|
- "./lib/oci/core/models/update_boot_volume_backup_details.rb"
|
|
543
588
|
- "./lib/oci/core/models/update_boot_volume_details.rb"
|
|
544
589
|
- "./lib/oci/core/models/update_boot_volume_kms_key_details.rb"
|
|
590
|
+
- "./lib/oci/core/models/update_cluster_network_details.rb"
|
|
545
591
|
- "./lib/oci/core/models/update_console_history_details.rb"
|
|
546
592
|
- "./lib/oci/core/models/update_cpe_details.rb"
|
|
547
593
|
- "./lib/oci/core/models/update_cross_connect_details.rb"
|
|
@@ -578,6 +624,7 @@ files:
|
|
|
578
624
|
- "./lib/oci/core/models/update_virtual_circuit_details.rb"
|
|
579
625
|
- "./lib/oci/core/models/update_vnic_details.rb"
|
|
580
626
|
- "./lib/oci/core/models/update_volume_backup_details.rb"
|
|
627
|
+
- "./lib/oci/core/models/update_volume_backup_policy_details.rb"
|
|
581
628
|
- "./lib/oci/core/models/update_volume_details.rb"
|
|
582
629
|
- "./lib/oci/core/models/update_volume_group_backup_details.rb"
|
|
583
630
|
- "./lib/oci/core/models/update_volume_group_details.rb"
|
|
@@ -611,6 +658,8 @@ files:
|
|
|
611
658
|
- "./lib/oci/database/database.rb"
|
|
612
659
|
- "./lib/oci/database/database_client.rb"
|
|
613
660
|
- "./lib/oci/database/database_client_composite_operations.rb"
|
|
661
|
+
- "./lib/oci/database/models/activate_exadata_infrastructure_details.rb"
|
|
662
|
+
- "./lib/oci/database/models/associated_database_details.rb"
|
|
614
663
|
- "./lib/oci/database/models/autonomous_container_database.rb"
|
|
615
664
|
- "./lib/oci/database/models/autonomous_container_database_backup_config.rb"
|
|
616
665
|
- "./lib/oci/database/models/autonomous_container_database_summary.rb"
|
|
@@ -627,14 +676,20 @@ files:
|
|
|
627
676
|
- "./lib/oci/database/models/autonomous_database_connection_urls.rb"
|
|
628
677
|
- "./lib/oci/database/models/autonomous_database_console_token_details.rb"
|
|
629
678
|
- "./lib/oci/database/models/autonomous_database_summary.rb"
|
|
679
|
+
- "./lib/oci/database/models/autonomous_database_wallet.rb"
|
|
630
680
|
- "./lib/oci/database/models/autonomous_db_preview_version_summary.rb"
|
|
631
681
|
- "./lib/oci/database/models/autonomous_exadata_infrastructure.rb"
|
|
632
682
|
- "./lib/oci/database/models/autonomous_exadata_infrastructure_maintenance_window.rb"
|
|
633
683
|
- "./lib/oci/database/models/autonomous_exadata_infrastructure_shape_summary.rb"
|
|
634
684
|
- "./lib/oci/database/models/autonomous_exadata_infrastructure_summary.rb"
|
|
635
685
|
- "./lib/oci/database/models/backup.rb"
|
|
686
|
+
- "./lib/oci/database/models/backup_destination.rb"
|
|
687
|
+
- "./lib/oci/database/models/backup_destination_details.rb"
|
|
688
|
+
- "./lib/oci/database/models/backup_destination_summary.rb"
|
|
636
689
|
- "./lib/oci/database/models/backup_summary.rb"
|
|
637
690
|
- "./lib/oci/database/models/change_compartment_details.rb"
|
|
691
|
+
- "./lib/oci/database/models/change_exadata_infrastructure_compartment_details.rb"
|
|
692
|
+
- "./lib/oci/database/models/change_vm_cluster_compartment_details.rb"
|
|
638
693
|
- "./lib/oci/database/models/complete_external_backup_job_details.rb"
|
|
639
694
|
- "./lib/oci/database/models/create_autonomous_container_database_details.rb"
|
|
640
695
|
- "./lib/oci/database/models/create_autonomous_data_warehouse_backup_details.rb"
|
|
@@ -643,18 +698,25 @@ files:
|
|
|
643
698
|
- "./lib/oci/database/models/create_autonomous_database_base.rb"
|
|
644
699
|
- "./lib/oci/database/models/create_autonomous_database_clone_details.rb"
|
|
645
700
|
- "./lib/oci/database/models/create_autonomous_database_details.rb"
|
|
701
|
+
- "./lib/oci/database/models/create_backup_destination_details.rb"
|
|
646
702
|
- "./lib/oci/database/models/create_backup_details.rb"
|
|
647
703
|
- "./lib/oci/database/models/create_data_guard_association_details.rb"
|
|
648
704
|
- "./lib/oci/database/models/create_data_guard_association_to_existing_db_system_details.rb"
|
|
649
705
|
- "./lib/oci/database/models/create_data_guard_association_with_new_db_system_details.rb"
|
|
650
706
|
- "./lib/oci/database/models/create_database_details.rb"
|
|
651
707
|
- "./lib/oci/database/models/create_database_from_backup_details.rb"
|
|
708
|
+
- "./lib/oci/database/models/create_db_home_base.rb"
|
|
652
709
|
- "./lib/oci/database/models/create_db_home_details.rb"
|
|
653
710
|
- "./lib/oci/database/models/create_db_home_from_backup_details.rb"
|
|
654
|
-
- "./lib/oci/database/models/create_db_home_with_db_system_id_base.rb"
|
|
655
711
|
- "./lib/oci/database/models/create_db_home_with_db_system_id_details.rb"
|
|
656
712
|
- "./lib/oci/database/models/create_db_home_with_db_system_id_from_backup_details.rb"
|
|
713
|
+
- "./lib/oci/database/models/create_db_home_with_vm_cluster_id_details.rb"
|
|
714
|
+
- "./lib/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.rb"
|
|
715
|
+
- "./lib/oci/database/models/create_exadata_infrastructure_details.rb"
|
|
657
716
|
- "./lib/oci/database/models/create_external_backup_job_details.rb"
|
|
717
|
+
- "./lib/oci/database/models/create_nfs_backup_destination_details.rb"
|
|
718
|
+
- "./lib/oci/database/models/create_recovery_appliance_backup_destination_details.rb"
|
|
719
|
+
- "./lib/oci/database/models/create_vm_cluster_details.rb"
|
|
658
720
|
- "./lib/oci/database/models/data_guard_association.rb"
|
|
659
721
|
- "./lib/oci/database/models/data_guard_association_summary.rb"
|
|
660
722
|
- "./lib/oci/database/models/database.rb"
|
|
@@ -669,15 +731,21 @@ files:
|
|
|
669
731
|
- "./lib/oci/database/models/db_node.rb"
|
|
670
732
|
- "./lib/oci/database/models/db_node_summary.rb"
|
|
671
733
|
- "./lib/oci/database/models/db_system.rb"
|
|
734
|
+
- "./lib/oci/database/models/db_system_options.rb"
|
|
672
735
|
- "./lib/oci/database/models/db_system_shape_summary.rb"
|
|
673
736
|
- "./lib/oci/database/models/db_system_summary.rb"
|
|
674
737
|
- "./lib/oci/database/models/db_version_summary.rb"
|
|
738
|
+
- "./lib/oci/database/models/exadata_infrastructure.rb"
|
|
739
|
+
- "./lib/oci/database/models/exadata_infrastructure_summary.rb"
|
|
675
740
|
- "./lib/oci/database/models/exadata_iorm_config.rb"
|
|
676
741
|
- "./lib/oci/database/models/exadata_iorm_config_update_details.rb"
|
|
677
742
|
- "./lib/oci/database/models/external_backup_job.rb"
|
|
678
743
|
- "./lib/oci/database/models/failover_data_guard_association_details.rb"
|
|
679
744
|
- "./lib/oci/database/models/generate_autonomous_data_warehouse_wallet_details.rb"
|
|
680
745
|
- "./lib/oci/database/models/generate_autonomous_database_wallet_details.rb"
|
|
746
|
+
- "./lib/oci/database/models/generate_recommended_network_details.rb"
|
|
747
|
+
- "./lib/oci/database/models/gi_version_summary.rb"
|
|
748
|
+
- "./lib/oci/database/models/info_for_network_gen_details.rb"
|
|
681
749
|
- "./lib/oci/database/models/launch_autonomous_exadata_infrastructure_details.rb"
|
|
682
750
|
- "./lib/oci/database/models/launch_db_system_base.rb"
|
|
683
751
|
- "./lib/oci/database/models/launch_db_system_details.rb"
|
|
@@ -686,6 +754,7 @@ files:
|
|
|
686
754
|
- "./lib/oci/database/models/maintenance_run_summary.rb"
|
|
687
755
|
- "./lib/oci/database/models/maintenance_window.rb"
|
|
688
756
|
- "./lib/oci/database/models/month.rb"
|
|
757
|
+
- "./lib/oci/database/models/node_details.rb"
|
|
689
758
|
- "./lib/oci/database/models/patch.rb"
|
|
690
759
|
- "./lib/oci/database/models/patch_details.rb"
|
|
691
760
|
- "./lib/oci/database/models/patch_history_entry.rb"
|
|
@@ -695,25 +764,41 @@ files:
|
|
|
695
764
|
- "./lib/oci/database/models/restore_autonomous_data_warehouse_details.rb"
|
|
696
765
|
- "./lib/oci/database/models/restore_autonomous_database_details.rb"
|
|
697
766
|
- "./lib/oci/database/models/restore_database_details.rb"
|
|
767
|
+
- "./lib/oci/database/models/scan_details.rb"
|
|
698
768
|
- "./lib/oci/database/models/switchover_data_guard_association_details.rb"
|
|
699
769
|
- "./lib/oci/database/models/update_autonomous_container_database_details.rb"
|
|
700
770
|
- "./lib/oci/database/models/update_autonomous_data_warehouse_details.rb"
|
|
701
771
|
- "./lib/oci/database/models/update_autonomous_database_details.rb"
|
|
772
|
+
- "./lib/oci/database/models/update_autonomous_database_wallet_details.rb"
|
|
702
773
|
- "./lib/oci/database/models/update_autonomous_exadata_infrastructure_details.rb"
|
|
774
|
+
- "./lib/oci/database/models/update_backup_destination_details.rb"
|
|
703
775
|
- "./lib/oci/database/models/update_database_details.rb"
|
|
704
776
|
- "./lib/oci/database/models/update_db_home_details.rb"
|
|
705
777
|
- "./lib/oci/database/models/update_db_system_details.rb"
|
|
778
|
+
- "./lib/oci/database/models/update_exadata_infrastructure_details.rb"
|
|
706
779
|
- "./lib/oci/database/models/update_maintenance_run_details.rb"
|
|
780
|
+
- "./lib/oci/database/models/update_vm_cluster_details.rb"
|
|
781
|
+
- "./lib/oci/database/models/update_vm_cluster_network_details.rb"
|
|
782
|
+
- "./lib/oci/database/models/vm_cluster.rb"
|
|
783
|
+
- "./lib/oci/database/models/vm_cluster_network.rb"
|
|
784
|
+
- "./lib/oci/database/models/vm_cluster_network_details.rb"
|
|
785
|
+
- "./lib/oci/database/models/vm_cluster_network_summary.rb"
|
|
786
|
+
- "./lib/oci/database/models/vm_cluster_summary.rb"
|
|
787
|
+
- "./lib/oci/database/models/vm_network_details.rb"
|
|
707
788
|
- "./lib/oci/database/util.rb"
|
|
708
789
|
- "./lib/oci/dns/dns.rb"
|
|
709
790
|
- "./lib/oci/dns/dns_client.rb"
|
|
710
791
|
- "./lib/oci/dns/dns_client_composite_operations.rb"
|
|
711
792
|
- "./lib/oci/dns/models/change_steering_policy_compartment_details.rb"
|
|
712
793
|
- "./lib/oci/dns/models/change_zone_compartment_details.rb"
|
|
794
|
+
- "./lib/oci/dns/models/create_migrated_dynect_zone_details.rb"
|
|
713
795
|
- "./lib/oci/dns/models/create_steering_policy_attachment_details.rb"
|
|
714
796
|
- "./lib/oci/dns/models/create_steering_policy_details.rb"
|
|
797
|
+
- "./lib/oci/dns/models/create_zone_base_details.rb"
|
|
715
798
|
- "./lib/oci/dns/models/create_zone_details.rb"
|
|
799
|
+
- "./lib/oci/dns/models/dynect_migration_details.rb"
|
|
716
800
|
- "./lib/oci/dns/models/external_master.rb"
|
|
801
|
+
- "./lib/oci/dns/models/migration_replacement.rb"
|
|
717
802
|
- "./lib/oci/dns/models/nameserver.rb"
|
|
718
803
|
- "./lib/oci/dns/models/patch_domain_records_details.rb"
|
|
719
804
|
- "./lib/oci/dns/models/patch_rr_set_details.rb"
|
|
@@ -772,6 +857,7 @@ files:
|
|
|
772
857
|
- "./lib/oci/dts/models/transfer_appliance_certificate.rb"
|
|
773
858
|
- "./lib/oci/dts/models/transfer_appliance_encryption_passphrase.rb"
|
|
774
859
|
- "./lib/oci/dts/models/transfer_appliance_entitlement.rb"
|
|
860
|
+
- "./lib/oci/dts/models/transfer_appliance_entitlement_summary.rb"
|
|
775
861
|
- "./lib/oci/dts/models/transfer_appliance_public_key.rb"
|
|
776
862
|
- "./lib/oci/dts/models/transfer_appliance_summary.rb"
|
|
777
863
|
- "./lib/oci/dts/models/transfer_device.rb"
|
|
@@ -908,6 +994,7 @@ files:
|
|
|
908
994
|
- "./lib/oci/identity/models/auth_token.rb"
|
|
909
995
|
- "./lib/oci/identity/models/authentication_policy.rb"
|
|
910
996
|
- "./lib/oci/identity/models/availability_domain.rb"
|
|
997
|
+
- "./lib/oci/identity/models/base_tag_definition_validator.rb"
|
|
911
998
|
- "./lib/oci/identity/models/change_tag_namespace_compartment_detail.rb"
|
|
912
999
|
- "./lib/oci/identity/models/compartment.rb"
|
|
913
1000
|
- "./lib/oci/identity/models/create_api_key_details.rb"
|
|
@@ -929,7 +1016,9 @@ files:
|
|
|
929
1016
|
- "./lib/oci/identity/models/create_user_details.rb"
|
|
930
1017
|
- "./lib/oci/identity/models/customer_secret_key.rb"
|
|
931
1018
|
- "./lib/oci/identity/models/customer_secret_key_summary.rb"
|
|
1019
|
+
- "./lib/oci/identity/models/default_tag_definition_validator.rb"
|
|
932
1020
|
- "./lib/oci/identity/models/dynamic_group.rb"
|
|
1021
|
+
- "./lib/oci/identity/models/enum_tag_definition_validator.rb"
|
|
933
1022
|
- "./lib/oci/identity/models/fault_domain.rb"
|
|
934
1023
|
- "./lib/oci/identity/models/group.rb"
|
|
935
1024
|
- "./lib/oci/identity/models/identity_provider.rb"
|
|
@@ -954,6 +1043,10 @@ files:
|
|
|
954
1043
|
- "./lib/oci/identity/models/tag_namespace.rb"
|
|
955
1044
|
- "./lib/oci/identity/models/tag_namespace_summary.rb"
|
|
956
1045
|
- "./lib/oci/identity/models/tag_summary.rb"
|
|
1046
|
+
- "./lib/oci/identity/models/tagging_work_request.rb"
|
|
1047
|
+
- "./lib/oci/identity/models/tagging_work_request_error_summary.rb"
|
|
1048
|
+
- "./lib/oci/identity/models/tagging_work_request_log_summary.rb"
|
|
1049
|
+
- "./lib/oci/identity/models/tagging_work_request_summary.rb"
|
|
957
1050
|
- "./lib/oci/identity/models/tenancy.rb"
|
|
958
1051
|
- "./lib/oci/identity/models/ui_password.rb"
|
|
959
1052
|
- "./lib/oci/identity/models/ui_password_information.rb"
|
|
@@ -984,6 +1077,20 @@ files:
|
|
|
984
1077
|
- "./lib/oci/identity/models/work_request_resource.rb"
|
|
985
1078
|
- "./lib/oci/identity/models/work_request_summary.rb"
|
|
986
1079
|
- "./lib/oci/identity/util.rb"
|
|
1080
|
+
- "./lib/oci/integration/integration.rb"
|
|
1081
|
+
- "./lib/oci/integration/integration_instance_client.rb"
|
|
1082
|
+
- "./lib/oci/integration/integration_instance_client_composite_operations.rb"
|
|
1083
|
+
- "./lib/oci/integration/models/change_integration_instance_compartment_details.rb"
|
|
1084
|
+
- "./lib/oci/integration/models/create_integration_instance_details.rb"
|
|
1085
|
+
- "./lib/oci/integration/models/integration_instance.rb"
|
|
1086
|
+
- "./lib/oci/integration/models/integration_instance_summary.rb"
|
|
1087
|
+
- "./lib/oci/integration/models/update_integration_instance_details.rb"
|
|
1088
|
+
- "./lib/oci/integration/models/work_request.rb"
|
|
1089
|
+
- "./lib/oci/integration/models/work_request_error.rb"
|
|
1090
|
+
- "./lib/oci/integration/models/work_request_log_entry.rb"
|
|
1091
|
+
- "./lib/oci/integration/models/work_request_resource.rb"
|
|
1092
|
+
- "./lib/oci/integration/models/work_request_summary.rb"
|
|
1093
|
+
- "./lib/oci/integration/util.rb"
|
|
987
1094
|
- "./lib/oci/internal/internal.rb"
|
|
988
1095
|
- "./lib/oci/internal/util.rb"
|
|
989
1096
|
- "./lib/oci/key_management/key_management.rb"
|
|
@@ -1165,6 +1272,37 @@ files:
|
|
|
1165
1272
|
- "./lib/oci/object_storage/transfer/upload_manager.rb"
|
|
1166
1273
|
- "./lib/oci/object_storage/transfer/upload_manager_config.rb"
|
|
1167
1274
|
- "./lib/oci/object_storage/util.rb"
|
|
1275
|
+
- "./lib/oci/oce/models/change_oce_instance_compartment_details.rb"
|
|
1276
|
+
- "./lib/oci/oce/models/create_oce_instance_details.rb"
|
|
1277
|
+
- "./lib/oci/oce/models/delete_oce_instance_details.rb"
|
|
1278
|
+
- "./lib/oci/oce/models/oce_instance.rb"
|
|
1279
|
+
- "./lib/oci/oce/models/oce_instance_summary.rb"
|
|
1280
|
+
- "./lib/oci/oce/models/update_oce_instance_details.rb"
|
|
1281
|
+
- "./lib/oci/oce/models/work_request.rb"
|
|
1282
|
+
- "./lib/oci/oce/models/work_request_error.rb"
|
|
1283
|
+
- "./lib/oci/oce/models/work_request_log_entry.rb"
|
|
1284
|
+
- "./lib/oci/oce/models/work_request_resource.rb"
|
|
1285
|
+
- "./lib/oci/oce/models/workflow_monitor.rb"
|
|
1286
|
+
- "./lib/oci/oce/models/workflow_step.rb"
|
|
1287
|
+
- "./lib/oci/oce/oce.rb"
|
|
1288
|
+
- "./lib/oci/oce/oce_instance_client.rb"
|
|
1289
|
+
- "./lib/oci/oce/oce_instance_client_composite_operations.rb"
|
|
1290
|
+
- "./lib/oci/oce/util.rb"
|
|
1291
|
+
- "./lib/oci/oda/models/change_oda_instance_compartment_details.rb"
|
|
1292
|
+
- "./lib/oci/oda/models/create_oda_instance_details.rb"
|
|
1293
|
+
- "./lib/oci/oda/models/error_body.rb"
|
|
1294
|
+
- "./lib/oci/oda/models/oda_instance.rb"
|
|
1295
|
+
- "./lib/oci/oda/models/oda_instance_summary.rb"
|
|
1296
|
+
- "./lib/oci/oda/models/update_oda_instance_details.rb"
|
|
1297
|
+
- "./lib/oci/oda/models/work_request.rb"
|
|
1298
|
+
- "./lib/oci/oda/models/work_request_error.rb"
|
|
1299
|
+
- "./lib/oci/oda/models/work_request_log_entry.rb"
|
|
1300
|
+
- "./lib/oci/oda/models/work_request_resource.rb"
|
|
1301
|
+
- "./lib/oci/oda/models/work_request_summary.rb"
|
|
1302
|
+
- "./lib/oci/oda/oda.rb"
|
|
1303
|
+
- "./lib/oci/oda/oda_client.rb"
|
|
1304
|
+
- "./lib/oci/oda/oda_client_composite_operations.rb"
|
|
1305
|
+
- "./lib/oci/oda/util.rb"
|
|
1168
1306
|
- "./lib/oci/ons/models/backoff_retry_policy.rb"
|
|
1169
1307
|
- "./lib/oci/ons/models/change_compartment_details.rb"
|
|
1170
1308
|
- "./lib/oci/ons/models/confirmation_result.rb"
|
|
@@ -1186,19 +1324,36 @@ files:
|
|
|
1186
1324
|
- "./lib/oci/ons/ons.rb"
|
|
1187
1325
|
- "./lib/oci/ons/util.rb"
|
|
1188
1326
|
- "./lib/oci/regions.rb"
|
|
1327
|
+
- "./lib/oci/resource_manager/models/apply_job_operation_details.rb"
|
|
1328
|
+
- "./lib/oci/resource_manager/models/apply_job_operation_details_summary.rb"
|
|
1189
1329
|
- "./lib/oci/resource_manager/models/apply_job_plan_resolution.rb"
|
|
1190
1330
|
- "./lib/oci/resource_manager/models/change_stack_compartment_details.rb"
|
|
1191
1331
|
- "./lib/oci/resource_manager/models/config_source.rb"
|
|
1332
|
+
- "./lib/oci/resource_manager/models/create_apply_job_operation_details.rb"
|
|
1192
1333
|
- "./lib/oci/resource_manager/models/create_config_source_details.rb"
|
|
1334
|
+
- "./lib/oci/resource_manager/models/create_destroy_job_operation_details.rb"
|
|
1335
|
+
- "./lib/oci/resource_manager/models/create_import_tf_state_job_operation_details.rb"
|
|
1193
1336
|
- "./lib/oci/resource_manager/models/create_job_details.rb"
|
|
1337
|
+
- "./lib/oci/resource_manager/models/create_job_operation_details.rb"
|
|
1338
|
+
- "./lib/oci/resource_manager/models/create_plan_job_operation_details.rb"
|
|
1194
1339
|
- "./lib/oci/resource_manager/models/create_stack_details.rb"
|
|
1195
1340
|
- "./lib/oci/resource_manager/models/create_zip_upload_config_source_details.rb"
|
|
1341
|
+
- "./lib/oci/resource_manager/models/destroy_job_operation_details.rb"
|
|
1342
|
+
- "./lib/oci/resource_manager/models/destroy_job_operation_details_summary.rb"
|
|
1196
1343
|
- "./lib/oci/resource_manager/models/failure_details.rb"
|
|
1344
|
+
- "./lib/oci/resource_manager/models/import_tf_state_job_operation_details.rb"
|
|
1345
|
+
- "./lib/oci/resource_manager/models/import_tf_state_job_operation_details_summary.rb"
|
|
1197
1346
|
- "./lib/oci/resource_manager/models/job.rb"
|
|
1347
|
+
- "./lib/oci/resource_manager/models/job_operation_details.rb"
|
|
1348
|
+
- "./lib/oci/resource_manager/models/job_operation_details_summary.rb"
|
|
1198
1349
|
- "./lib/oci/resource_manager/models/job_summary.rb"
|
|
1199
1350
|
- "./lib/oci/resource_manager/models/log_entry.rb"
|
|
1351
|
+
- "./lib/oci/resource_manager/models/plan_job_operation_details.rb"
|
|
1352
|
+
- "./lib/oci/resource_manager/models/plan_job_operation_details_summary.rb"
|
|
1200
1353
|
- "./lib/oci/resource_manager/models/stack.rb"
|
|
1201
1354
|
- "./lib/oci/resource_manager/models/stack_summary.rb"
|
|
1355
|
+
- "./lib/oci/resource_manager/models/terraform_version_collection.rb"
|
|
1356
|
+
- "./lib/oci/resource_manager/models/terraform_version_summary.rb"
|
|
1202
1357
|
- "./lib/oci/resource_manager/models/update_config_source_details.rb"
|
|
1203
1358
|
- "./lib/oci/resource_manager/models/update_job_details.rb"
|
|
1204
1359
|
- "./lib/oci/resource_manager/models/update_stack_details.rb"
|
|
@@ -1281,10 +1436,12 @@ files:
|
|
|
1281
1436
|
- "./lib/oci/waas/models/change_address_list_compartment_details.rb"
|
|
1282
1437
|
- "./lib/oci/waas/models/change_certificate_compartment_details.rb"
|
|
1283
1438
|
- "./lib/oci/waas/models/change_custom_protection_rule_compartment_details.rb"
|
|
1439
|
+
- "./lib/oci/waas/models/change_http_redirect_compartment_details.rb"
|
|
1284
1440
|
- "./lib/oci/waas/models/change_waas_policy_compartment_details.rb"
|
|
1285
1441
|
- "./lib/oci/waas/models/create_address_list_details.rb"
|
|
1286
1442
|
- "./lib/oci/waas/models/create_certificate_details.rb"
|
|
1287
1443
|
- "./lib/oci/waas/models/create_custom_protection_rule_details.rb"
|
|
1444
|
+
- "./lib/oci/waas/models/create_http_redirect_details.rb"
|
|
1288
1445
|
- "./lib/oci/waas/models/create_waas_policy_details.rb"
|
|
1289
1446
|
- "./lib/oci/waas/models/custom_protection_rule.rb"
|
|
1290
1447
|
- "./lib/oci/waas/models/custom_protection_rule_setting.rb"
|
|
@@ -1293,6 +1450,9 @@ files:
|
|
|
1293
1450
|
- "./lib/oci/waas/models/edge_subnet.rb"
|
|
1294
1451
|
- "./lib/oci/waas/models/good_bot.rb"
|
|
1295
1452
|
- "./lib/oci/waas/models/header.rb"
|
|
1453
|
+
- "./lib/oci/waas/models/http_redirect.rb"
|
|
1454
|
+
- "./lib/oci/waas/models/http_redirect_summary.rb"
|
|
1455
|
+
- "./lib/oci/waas/models/http_redirect_target.rb"
|
|
1296
1456
|
- "./lib/oci/waas/models/human_interaction_challenge.rb"
|
|
1297
1457
|
- "./lib/oci/waas/models/js_challenge.rb"
|
|
1298
1458
|
- "./lib/oci/waas/models/lifecycle_states.rb"
|
|
@@ -1311,6 +1471,7 @@ files:
|
|
|
1311
1471
|
- "./lib/oci/waas/models/update_address_list_details.rb"
|
|
1312
1472
|
- "./lib/oci/waas/models/update_certificate_details.rb"
|
|
1313
1473
|
- "./lib/oci/waas/models/update_custom_protection_rule_details.rb"
|
|
1474
|
+
- "./lib/oci/waas/models/update_http_redirect_details.rb"
|
|
1314
1475
|
- "./lib/oci/waas/models/update_waas_policy_details.rb"
|
|
1315
1476
|
- "./lib/oci/waas/models/waas_policy.rb"
|
|
1316
1477
|
- "./lib/oci/waas/models/waas_policy_custom_protection_rule_summary.rb"
|
|
@@ -1330,6 +1491,8 @@ files:
|
|
|
1330
1491
|
- "./lib/oci/waas/models/work_request_resource.rb"
|
|
1331
1492
|
- "./lib/oci/waas/models/work_request_status_values.rb"
|
|
1332
1493
|
- "./lib/oci/waas/models/work_request_summary.rb"
|
|
1494
|
+
- "./lib/oci/waas/redirect_client.rb"
|
|
1495
|
+
- "./lib/oci/waas/redirect_client_composite_operations.rb"
|
|
1333
1496
|
- "./lib/oci/waas/util.rb"
|
|
1334
1497
|
- "./lib/oci/waas/waas.rb"
|
|
1335
1498
|
- "./lib/oci/waas/waas_client.rb"
|