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,231 @@
|
|
|
1
|
+
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
require 'date'
|
|
4
|
+
require 'logger'
|
|
5
|
+
|
|
6
|
+
# rubocop:disable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
|
7
|
+
module OCI
|
|
8
|
+
# Details of the client or backup networks in a VM cluster network.
|
|
9
|
+
class Database::Models::VmNetworkDetails
|
|
10
|
+
NETWORK_TYPE_ENUM = [
|
|
11
|
+
NETWORK_TYPE_CLIENT = 'CLIENT'.freeze,
|
|
12
|
+
NETWORK_TYPE_BACKUP = 'BACKUP'.freeze,
|
|
13
|
+
NETWORK_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
|
|
14
|
+
].freeze
|
|
15
|
+
|
|
16
|
+
# **[Required]** The network VLAN ID.
|
|
17
|
+
# @return [String]
|
|
18
|
+
attr_accessor :vlan_id
|
|
19
|
+
|
|
20
|
+
# **[Required]** The network type.
|
|
21
|
+
# @return [String]
|
|
22
|
+
attr_reader :network_type
|
|
23
|
+
|
|
24
|
+
# **[Required]** The network netmask.
|
|
25
|
+
# @return [String]
|
|
26
|
+
attr_accessor :netmask
|
|
27
|
+
|
|
28
|
+
# **[Required]** The network gateway.
|
|
29
|
+
# @return [String]
|
|
30
|
+
attr_accessor :gateway
|
|
31
|
+
|
|
32
|
+
# **[Required]** The network domain name.
|
|
33
|
+
# @return [String]
|
|
34
|
+
attr_accessor :domain_name
|
|
35
|
+
|
|
36
|
+
# **[Required]** The list of node details.
|
|
37
|
+
# @return [Array<OCI::Database::Models::NodeDetails>]
|
|
38
|
+
attr_accessor :nodes
|
|
39
|
+
|
|
40
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
41
|
+
def self.attribute_map
|
|
42
|
+
{
|
|
43
|
+
# rubocop:disable Style/SymbolLiteral
|
|
44
|
+
'vlan_id': :'vlanId',
|
|
45
|
+
'network_type': :'networkType',
|
|
46
|
+
'netmask': :'netmask',
|
|
47
|
+
'gateway': :'gateway',
|
|
48
|
+
'domain_name': :'domainName',
|
|
49
|
+
'nodes': :'nodes'
|
|
50
|
+
# rubocop:enable Style/SymbolLiteral
|
|
51
|
+
}
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Attribute type mapping.
|
|
55
|
+
def self.swagger_types
|
|
56
|
+
{
|
|
57
|
+
# rubocop:disable Style/SymbolLiteral
|
|
58
|
+
'vlan_id': :'String',
|
|
59
|
+
'network_type': :'String',
|
|
60
|
+
'netmask': :'String',
|
|
61
|
+
'gateway': :'String',
|
|
62
|
+
'domain_name': :'String',
|
|
63
|
+
'nodes': :'Array<OCI::Database::Models::NodeDetails>'
|
|
64
|
+
# rubocop:enable Style/SymbolLiteral
|
|
65
|
+
}
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
69
|
+
# rubocop:disable Metrics/MethodLength, Layout/EmptyLines, Style/SymbolLiteral
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# Initializes the object
|
|
73
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
74
|
+
# @option attributes [String] :vlan_id The value to assign to the {#vlan_id} property
|
|
75
|
+
# @option attributes [String] :network_type The value to assign to the {#network_type} property
|
|
76
|
+
# @option attributes [String] :netmask The value to assign to the {#netmask} property
|
|
77
|
+
# @option attributes [String] :gateway The value to assign to the {#gateway} property
|
|
78
|
+
# @option attributes [String] :domain_name The value to assign to the {#domain_name} property
|
|
79
|
+
# @option attributes [Array<OCI::Database::Models::NodeDetails>] :nodes The value to assign to the {#nodes} property
|
|
80
|
+
def initialize(attributes = {})
|
|
81
|
+
return unless attributes.is_a?(Hash)
|
|
82
|
+
|
|
83
|
+
# convert string to symbol for hash key
|
|
84
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
85
|
+
|
|
86
|
+
self.vlan_id = attributes[:'vlanId'] if attributes[:'vlanId']
|
|
87
|
+
|
|
88
|
+
raise 'You cannot provide both :vlanId and :vlan_id' if attributes.key?(:'vlanId') && attributes.key?(:'vlan_id')
|
|
89
|
+
|
|
90
|
+
self.vlan_id = attributes[:'vlan_id'] if attributes[:'vlan_id']
|
|
91
|
+
|
|
92
|
+
self.network_type = attributes[:'networkType'] if attributes[:'networkType']
|
|
93
|
+
|
|
94
|
+
raise 'You cannot provide both :networkType and :network_type' if attributes.key?(:'networkType') && attributes.key?(:'network_type')
|
|
95
|
+
|
|
96
|
+
self.network_type = attributes[:'network_type'] if attributes[:'network_type']
|
|
97
|
+
|
|
98
|
+
self.netmask = attributes[:'netmask'] if attributes[:'netmask']
|
|
99
|
+
|
|
100
|
+
self.gateway = attributes[:'gateway'] if attributes[:'gateway']
|
|
101
|
+
|
|
102
|
+
self.domain_name = attributes[:'domainName'] if attributes[:'domainName']
|
|
103
|
+
|
|
104
|
+
raise 'You cannot provide both :domainName and :domain_name' if attributes.key?(:'domainName') && attributes.key?(:'domain_name')
|
|
105
|
+
|
|
106
|
+
self.domain_name = attributes[:'domain_name'] if attributes[:'domain_name']
|
|
107
|
+
|
|
108
|
+
self.nodes = attributes[:'nodes'] if attributes[:'nodes']
|
|
109
|
+
end
|
|
110
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity
|
|
111
|
+
# rubocop:enable Metrics/MethodLength, Layout/EmptyLines, Style/SymbolLiteral
|
|
112
|
+
|
|
113
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
114
|
+
# @param [Object] network_type Object to be assigned
|
|
115
|
+
def network_type=(network_type)
|
|
116
|
+
# rubocop:disable Style/ConditionalAssignment
|
|
117
|
+
if network_type && !NETWORK_TYPE_ENUM.include?(network_type)
|
|
118
|
+
OCI.logger.debug("Unknown value for 'network_type' [" + network_type + "]. Mapping to 'NETWORK_TYPE_UNKNOWN_ENUM_VALUE'") if OCI.logger
|
|
119
|
+
@network_type = NETWORK_TYPE_UNKNOWN_ENUM_VALUE
|
|
120
|
+
else
|
|
121
|
+
@network_type = network_type
|
|
122
|
+
end
|
|
123
|
+
# rubocop:enable Style/ConditionalAssignment
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity, Layout/EmptyLines
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
# Checks equality by comparing each attribute.
|
|
130
|
+
# @param [Object] other the other object to be compared
|
|
131
|
+
def ==(other)
|
|
132
|
+
return true if equal?(other)
|
|
133
|
+
|
|
134
|
+
self.class == other.class &&
|
|
135
|
+
vlan_id == other.vlan_id &&
|
|
136
|
+
network_type == other.network_type &&
|
|
137
|
+
netmask == other.netmask &&
|
|
138
|
+
gateway == other.gateway &&
|
|
139
|
+
domain_name == other.domain_name &&
|
|
140
|
+
nodes == other.nodes
|
|
141
|
+
end
|
|
142
|
+
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/AbcSize, Metrics/PerceivedComplexity, Layout/EmptyLines
|
|
143
|
+
|
|
144
|
+
# @see the `==` method
|
|
145
|
+
# @param [Object] other the other object to be compared
|
|
146
|
+
def eql?(other)
|
|
147
|
+
self == other
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# rubocop:disable Metrics/AbcSize, Layout/EmptyLines
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
# Calculates hash code according to all attributes.
|
|
154
|
+
# @return [Fixnum] Hash code
|
|
155
|
+
def hash
|
|
156
|
+
[vlan_id, network_type, netmask, gateway, domain_name, nodes].hash
|
|
157
|
+
end
|
|
158
|
+
# rubocop:enable Metrics/AbcSize, Layout/EmptyLines
|
|
159
|
+
|
|
160
|
+
# rubocop:disable Metrics/AbcSize, Layout/EmptyLines
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
# Builds the object from hash
|
|
164
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
165
|
+
# @return [Object] Returns the model itself
|
|
166
|
+
def build_from_hash(attributes)
|
|
167
|
+
return nil unless attributes.is_a?(Hash)
|
|
168
|
+
|
|
169
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
170
|
+
if type =~ /^Array<(.*)>/i
|
|
171
|
+
# check to ensure the input is an array given that the the attribute
|
|
172
|
+
# is documented as an array but the input is not
|
|
173
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
174
|
+
public_method("#{key}=").call(
|
|
175
|
+
attributes[self.class.attribute_map[key]]
|
|
176
|
+
.map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
|
|
177
|
+
)
|
|
178
|
+
end
|
|
179
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
180
|
+
public_method("#{key}=").call(
|
|
181
|
+
OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
|
|
182
|
+
)
|
|
183
|
+
end
|
|
184
|
+
# or else data not found in attributes(hash), not an issue as the data can be optional
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
self
|
|
188
|
+
end
|
|
189
|
+
# rubocop:enable Metrics/AbcSize, Layout/EmptyLines
|
|
190
|
+
|
|
191
|
+
# Returns the string representation of the object
|
|
192
|
+
# @return [String] String presentation of the object
|
|
193
|
+
def to_s
|
|
194
|
+
to_hash.to_s
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
# Returns the object in the form of hash
|
|
198
|
+
# @return [Hash] Returns the object in the form of hash
|
|
199
|
+
def to_hash
|
|
200
|
+
hash = {}
|
|
201
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
202
|
+
value = public_method(attr).call
|
|
203
|
+
next if value.nil? && !instance_variable_defined?("@#{attr}")
|
|
204
|
+
|
|
205
|
+
hash[param] = _to_hash(value)
|
|
206
|
+
end
|
|
207
|
+
hash
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
private
|
|
211
|
+
|
|
212
|
+
# Outputs non-array value in the form of hash
|
|
213
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
214
|
+
# @param [Object] value Any valid value
|
|
215
|
+
# @return [Hash] Returns the value in the form of hash
|
|
216
|
+
def _to_hash(value)
|
|
217
|
+
if value.is_a?(Array)
|
|
218
|
+
value.compact.map { |v| _to_hash(v) }
|
|
219
|
+
elsif value.is_a?(Hash)
|
|
220
|
+
{}.tap do |hash|
|
|
221
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
222
|
+
end
|
|
223
|
+
elsif value.respond_to? :to_hash
|
|
224
|
+
value.to_hash
|
|
225
|
+
else
|
|
226
|
+
value
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
# rubocop:enable Lint/UnneededCopDisableDirective, Metrics/LineLength
|
data/lib/oci/dns/dns.rb
CHANGED
|
@@ -12,10 +12,14 @@ end
|
|
|
12
12
|
# Require models
|
|
13
13
|
require 'oci/dns/models/change_steering_policy_compartment_details'
|
|
14
14
|
require 'oci/dns/models/change_zone_compartment_details'
|
|
15
|
+
require 'oci/dns/models/create_migrated_dynect_zone_details'
|
|
15
16
|
require 'oci/dns/models/create_steering_policy_attachment_details'
|
|
16
17
|
require 'oci/dns/models/create_steering_policy_details'
|
|
18
|
+
require 'oci/dns/models/create_zone_base_details'
|
|
17
19
|
require 'oci/dns/models/create_zone_details'
|
|
20
|
+
require 'oci/dns/models/dynect_migration_details'
|
|
18
21
|
require 'oci/dns/models/external_master'
|
|
22
|
+
require 'oci/dns/models/migration_replacement'
|
|
19
23
|
require 'oci/dns/models/nameserver'
|
|
20
24
|
require 'oci/dns/models/patch_domain_records_details'
|
|
21
25
|
require 'oci/dns/models/patch_rr_set_details'
|
data/lib/oci/dns/dns_client.rb
CHANGED
|
@@ -120,14 +120,14 @@ module OCI
|
|
|
120
120
|
# when the field-value is `*`, or having a current representation of the
|
|
121
121
|
# target resource that has an entity-tag matching a member of the list of
|
|
122
122
|
# entity-tags provided in the field-value.
|
|
123
|
-
#
|
|
123
|
+
# (default to nil)
|
|
124
124
|
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case
|
|
125
125
|
# of a timeout or server error without risk of executing that same action
|
|
126
126
|
# again. Retry tokens expire after 24 hours, but can be invalidated before
|
|
127
127
|
# then due to conflicting operations (for example, if a resource has been
|
|
128
128
|
# deleted and purged from the system, then a retry of the original creation
|
|
129
129
|
# request may be rejected).
|
|
130
|
-
#
|
|
130
|
+
# (default to nil)
|
|
131
131
|
# @return [Response] A Response object with data of type nil
|
|
132
132
|
def change_steering_policy_compartment(steering_policy_id, change_steering_policy_compartment_details, opts = {})
|
|
133
133
|
logger.debug 'Calling operation DnsClient#change_steering_policy_compartment.' if logger
|
|
@@ -189,14 +189,14 @@ module OCI
|
|
|
189
189
|
# when the field-value is `*`, or having a current representation of the
|
|
190
190
|
# target resource that has an entity-tag matching a member of the list of
|
|
191
191
|
# entity-tags provided in the field-value.
|
|
192
|
-
#
|
|
192
|
+
# (default to nil)
|
|
193
193
|
# @option opts [String] :opc_retry_token A token that uniquely identifies a request so it can be retried in case
|
|
194
194
|
# of a timeout or server error without risk of executing that same action
|
|
195
195
|
# again. Retry tokens expire after 24 hours, but can be invalidated before
|
|
196
196
|
# then due to conflicting operations (for example, if a resource has been
|
|
197
197
|
# deleted and purged from the system, then a retry of the original creation
|
|
198
198
|
# request may be rejected).
|
|
199
|
-
#
|
|
199
|
+
# (default to nil)
|
|
200
200
|
# @return [Response] A Response object with data of type nil
|
|
201
201
|
def change_zone_compartment(zone_id, change_zone_compartment_details, opts = {})
|
|
202
202
|
logger.debug 'Calling operation DnsClient#change_zone_compartment.' if logger
|
|
@@ -259,7 +259,7 @@ module OCI
|
|
|
259
259
|
# then due to conflicting operations (for example, if a resource has been
|
|
260
260
|
# deleted and purged from the system, then a retry of the original creation
|
|
261
261
|
# request may be rejected).
|
|
262
|
-
#
|
|
262
|
+
# (default to nil)
|
|
263
263
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicy SteeringPolicy}
|
|
264
264
|
def create_steering_policy(create_steering_policy_details, opts = {})
|
|
265
265
|
logger.debug 'Calling operation DnsClient#create_steering_policy.' if logger
|
|
@@ -324,7 +324,7 @@ module OCI
|
|
|
324
324
|
# then due to conflicting operations (for example, if a resource has been
|
|
325
325
|
# deleted and purged from the system, then a retry of the original creation
|
|
326
326
|
# request may be rejected).
|
|
327
|
-
#
|
|
327
|
+
# (default to nil)
|
|
328
328
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicyAttachment SteeringPolicyAttachment}
|
|
329
329
|
def create_steering_policy_attachment(create_steering_policy_attachment_details, opts = {})
|
|
330
330
|
logger.debug 'Calling operation DnsClient#create_steering_policy_attachment.' if logger
|
|
@@ -376,11 +376,11 @@ module OCI
|
|
|
376
376
|
# query parameter is required if the `Content-Type` header for the
|
|
377
377
|
# request is `text/dns`.
|
|
378
378
|
#
|
|
379
|
-
# @param [OCI::Dns::Models::
|
|
379
|
+
# @param [OCI::Dns::Models::CreateZoneBaseDetails] create_zone_details Details for creating a new zone.
|
|
380
380
|
# @param [Hash] opts the optional parameters
|
|
381
381
|
# @option opts [OCI::Retry::RetryConfig] :retry_config The retry configuration to apply to this operation. If no key is provided then the service-level
|
|
382
382
|
# retry configuration defined by {#retry_config} will be used. If an explicit `nil` value is provided then the operation will not retry
|
|
383
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
383
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
384
384
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::Zone Zone}
|
|
385
385
|
def create_zone(create_zone_details, opts = {})
|
|
386
386
|
logger.debug 'Calling operation DnsClient#create_zone.' if logger
|
|
@@ -438,14 +438,14 @@ module OCI
|
|
|
438
438
|
# when the field-value is `*`, or having a current representation of the
|
|
439
439
|
# target resource that has an entity-tag matching a member of the list of
|
|
440
440
|
# entity-tags provided in the field-value.
|
|
441
|
-
#
|
|
441
|
+
# (default to nil)
|
|
442
442
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
443
443
|
# conditional on the selected representation's last modification date being
|
|
444
444
|
# earlier than or equal to the date provided in the field-value. This
|
|
445
445
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
446
446
|
# agent does not have an entity-tag for the representation.
|
|
447
|
-
#
|
|
448
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
447
|
+
# (default to nil)
|
|
448
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
449
449
|
# @return [Response] A Response object with data of type nil
|
|
450
450
|
def delete_domain_records(zone_name_or_id, domain, opts = {})
|
|
451
451
|
logger.debug 'Calling operation DnsClient#delete_domain_records.' if logger
|
|
@@ -509,14 +509,14 @@ module OCI
|
|
|
509
509
|
# when the field-value is `*`, or having a current representation of the
|
|
510
510
|
# target resource that has an entity-tag matching a member of the list of
|
|
511
511
|
# entity-tags provided in the field-value.
|
|
512
|
-
#
|
|
512
|
+
# (default to nil)
|
|
513
513
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
514
514
|
# conditional on the selected representation's last modification date being
|
|
515
515
|
# earlier than or equal to the date provided in the field-value. This
|
|
516
516
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
517
517
|
# agent does not have an entity-tag for the representation.
|
|
518
|
-
#
|
|
519
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
518
|
+
# (default to nil)
|
|
519
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
520
520
|
# @return [Response] A Response object with data of type nil
|
|
521
521
|
def delete_rr_set(zone_name_or_id, domain, rtype, opts = {})
|
|
522
522
|
logger.debug 'Calling operation DnsClient#delete_rr_set.' if logger
|
|
@@ -583,13 +583,13 @@ module OCI
|
|
|
583
583
|
# when the field-value is `*`, or having a current representation of the
|
|
584
584
|
# target resource that has an entity-tag matching a member of the list of
|
|
585
585
|
# entity-tags provided in the field-value.
|
|
586
|
-
#
|
|
586
|
+
# (default to nil)
|
|
587
587
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
588
588
|
# conditional on the selected representation's last modification date being
|
|
589
589
|
# earlier than or equal to the date provided in the field-value. This
|
|
590
590
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
591
591
|
# agent does not have an entity-tag for the representation.
|
|
592
|
-
#
|
|
592
|
+
# (default to nil)
|
|
593
593
|
# @return [Response] A Response object with data of type nil
|
|
594
594
|
def delete_steering_policy(steering_policy_id, opts = {})
|
|
595
595
|
logger.debug 'Calling operation DnsClient#delete_steering_policy.' if logger
|
|
@@ -649,13 +649,13 @@ module OCI
|
|
|
649
649
|
# when the field-value is `*`, or having a current representation of the
|
|
650
650
|
# target resource that has an entity-tag matching a member of the list of
|
|
651
651
|
# entity-tags provided in the field-value.
|
|
652
|
-
#
|
|
652
|
+
# (default to nil)
|
|
653
653
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
654
654
|
# conditional on the selected representation's last modification date being
|
|
655
655
|
# earlier than or equal to the date provided in the field-value. This
|
|
656
656
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
657
657
|
# agent does not have an entity-tag for the representation.
|
|
658
|
-
#
|
|
658
|
+
# (default to nil)
|
|
659
659
|
# @return [Response] A Response object with data of type nil
|
|
660
660
|
def delete_steering_policy_attachment(steering_policy_attachment_id, opts = {})
|
|
661
661
|
logger.debug 'Calling operation DnsClient#delete_steering_policy_attachment.' if logger
|
|
@@ -715,14 +715,14 @@ module OCI
|
|
|
715
715
|
# when the field-value is `*`, or having a current representation of the
|
|
716
716
|
# target resource that has an entity-tag matching a member of the list of
|
|
717
717
|
# entity-tags provided in the field-value.
|
|
718
|
-
#
|
|
718
|
+
# (default to nil)
|
|
719
719
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
720
720
|
# conditional on the selected representation's last modification date being
|
|
721
721
|
# earlier than or equal to the date provided in the field-value. This
|
|
722
722
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
723
723
|
# agent does not have an entity-tag for the representation.
|
|
724
|
-
#
|
|
725
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
724
|
+
# (default to nil)
|
|
725
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
726
726
|
# @return [Response] A Response object with data of type nil
|
|
727
727
|
def delete_zone(zone_name_or_id, opts = {})
|
|
728
728
|
logger.debug 'Calling operation DnsClient#delete_zone.' if logger
|
|
@@ -784,26 +784,26 @@ module OCI
|
|
|
784
784
|
# the absence of any current representation of the target resource, when
|
|
785
785
|
# the field-value is `*`, or having a selected representation with an
|
|
786
786
|
# entity-tag that does not match any of those listed in the field-value.
|
|
787
|
-
#
|
|
787
|
+
# (default to nil)
|
|
788
788
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
789
789
|
# conditional on the selected representation's modification date being more
|
|
790
790
|
# recent than the date provided in the field-value. Transfer of the
|
|
791
791
|
# selected representation's data is avoided if that data has not changed.
|
|
792
|
-
#
|
|
792
|
+
# (default to nil)
|
|
793
793
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
794
794
|
# (default to 50)
|
|
795
795
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
796
|
-
#
|
|
796
|
+
# (default to nil)
|
|
797
797
|
# @option opts [String] :zone_version The version of the zone for which data is requested.
|
|
798
|
-
#
|
|
798
|
+
# (default to nil)
|
|
799
799
|
# @option opts [String] :rtype Search by record type.
|
|
800
800
|
# Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
|
801
|
-
#
|
|
801
|
+
# (default to nil)
|
|
802
802
|
# @option opts [String] :sort_by The field by which to sort records. (default to rtype)
|
|
803
803
|
# Allowed values are: rtype, ttl
|
|
804
804
|
# @option opts [String] :sort_order The order to sort the resources.
|
|
805
|
-
#
|
|
806
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
805
|
+
# (default to DESC)
|
|
806
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
807
807
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
808
808
|
def get_domain_records(zone_name_or_id, domain, opts = {})
|
|
809
809
|
logger.debug 'Calling operation DnsClient#get_domain_records.' if logger
|
|
@@ -882,19 +882,19 @@ module OCI
|
|
|
882
882
|
# the absence of any current representation of the target resource, when
|
|
883
883
|
# the field-value is `*`, or having a selected representation with an
|
|
884
884
|
# entity-tag that does not match any of those listed in the field-value.
|
|
885
|
-
#
|
|
885
|
+
# (default to nil)
|
|
886
886
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
887
887
|
# conditional on the selected representation's modification date being more
|
|
888
888
|
# recent than the date provided in the field-value. Transfer of the
|
|
889
889
|
# selected representation's data is avoided if that data has not changed.
|
|
890
|
-
#
|
|
890
|
+
# (default to nil)
|
|
891
891
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
892
892
|
# (default to 50)
|
|
893
893
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
894
|
-
#
|
|
894
|
+
# (default to nil)
|
|
895
895
|
# @option opts [String] :zone_version The version of the zone for which data is requested.
|
|
896
|
-
#
|
|
897
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
896
|
+
# (default to nil)
|
|
897
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
898
898
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RRSet RRSet}
|
|
899
899
|
def get_rr_set(zone_name_or_id, domain, rtype, opts = {})
|
|
900
900
|
logger.debug 'Calling operation DnsClient#get_rr_set.' if logger
|
|
@@ -961,12 +961,12 @@ module OCI
|
|
|
961
961
|
# the absence of any current representation of the target resource, when
|
|
962
962
|
# the field-value is `*`, or having a selected representation with an
|
|
963
963
|
# entity-tag that does not match any of those listed in the field-value.
|
|
964
|
-
#
|
|
964
|
+
# (default to nil)
|
|
965
965
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
966
966
|
# conditional on the selected representation's modification date being more
|
|
967
967
|
# recent than the date provided in the field-value. Transfer of the
|
|
968
968
|
# selected representation's data is avoided if that data has not changed.
|
|
969
|
-
#
|
|
969
|
+
# (default to nil)
|
|
970
970
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicy SteeringPolicy}
|
|
971
971
|
def get_steering_policy(steering_policy_id, opts = {})
|
|
972
972
|
logger.debug 'Calling operation DnsClient#get_steering_policy.' if logger
|
|
@@ -1025,12 +1025,12 @@ module OCI
|
|
|
1025
1025
|
# the absence of any current representation of the target resource, when
|
|
1026
1026
|
# the field-value is `*`, or having a selected representation with an
|
|
1027
1027
|
# entity-tag that does not match any of those listed in the field-value.
|
|
1028
|
-
#
|
|
1028
|
+
# (default to nil)
|
|
1029
1029
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
1030
1030
|
# conditional on the selected representation's modification date being more
|
|
1031
1031
|
# recent than the date provided in the field-value. Transfer of the
|
|
1032
1032
|
# selected representation's data is avoided if that data has not changed.
|
|
1033
|
-
#
|
|
1033
|
+
# (default to nil)
|
|
1034
1034
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicyAttachment SteeringPolicyAttachment}
|
|
1035
1035
|
def get_steering_policy_attachment(steering_policy_attachment_id, opts = {})
|
|
1036
1036
|
logger.debug 'Calling operation DnsClient#get_steering_policy_attachment.' if logger
|
|
@@ -1090,13 +1090,13 @@ module OCI
|
|
|
1090
1090
|
# the absence of any current representation of the target resource, when
|
|
1091
1091
|
# the field-value is `*`, or having a selected representation with an
|
|
1092
1092
|
# entity-tag that does not match any of those listed in the field-value.
|
|
1093
|
-
#
|
|
1093
|
+
# (default to nil)
|
|
1094
1094
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
1095
1095
|
# conditional on the selected representation's modification date being more
|
|
1096
1096
|
# recent than the date provided in the field-value. Transfer of the
|
|
1097
1097
|
# selected representation's data is avoided if that data has not changed.
|
|
1098
|
-
#
|
|
1099
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1098
|
+
# (default to nil)
|
|
1099
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1100
1100
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::Zone Zone}
|
|
1101
1101
|
def get_zone(zone_name_or_id, opts = {})
|
|
1102
1102
|
logger.debug 'Calling operation DnsClient#get_zone.' if logger
|
|
@@ -1158,32 +1158,32 @@ module OCI
|
|
|
1158
1158
|
# the absence of any current representation of the target resource, when
|
|
1159
1159
|
# the field-value is `*`, or having a selected representation with an
|
|
1160
1160
|
# entity-tag that does not match any of those listed in the field-value.
|
|
1161
|
-
#
|
|
1161
|
+
# (default to nil)
|
|
1162
1162
|
# @option opts [String] :if_modified_since The `If-Modified-Since` header field makes a GET or HEAD request method
|
|
1163
1163
|
# conditional on the selected representation's modification date being more
|
|
1164
1164
|
# recent than the date provided in the field-value. Transfer of the
|
|
1165
1165
|
# selected representation's data is avoided if that data has not changed.
|
|
1166
|
-
#
|
|
1166
|
+
# (default to nil)
|
|
1167
1167
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
1168
1168
|
# (default to 50)
|
|
1169
1169
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
1170
|
-
#
|
|
1170
|
+
# (default to nil)
|
|
1171
1171
|
# @option opts [String] :zone_version The version of the zone for which data is requested.
|
|
1172
|
-
#
|
|
1172
|
+
# (default to nil)
|
|
1173
1173
|
# @option opts [String] :domain Search by domain.
|
|
1174
1174
|
# Will match any record whose domain (case-insensitive) equals the provided value.
|
|
1175
|
-
#
|
|
1175
|
+
# (default to nil)
|
|
1176
1176
|
# @option opts [String] :domain_contains Search by domain.
|
|
1177
1177
|
# Will match any record whose domain (case-insensitive) contains the provided value.
|
|
1178
|
-
#
|
|
1178
|
+
# (default to nil)
|
|
1179
1179
|
# @option opts [String] :rtype Search by record type.
|
|
1180
1180
|
# Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
|
1181
|
-
#
|
|
1181
|
+
# (default to nil)
|
|
1182
1182
|
# @option opts [String] :sort_by The field by which to sort records. (default to domain)
|
|
1183
1183
|
# Allowed values are: domain, rtype, ttl
|
|
1184
1184
|
# @option opts [String] :sort_order The order to sort the resources.
|
|
1185
|
-
#
|
|
1186
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1185
|
+
# (default to DESC)
|
|
1186
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1187
1187
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1188
1188
|
def get_zone_records(zone_name_or_id, opts = {})
|
|
1189
1189
|
logger.debug 'Calling operation DnsClient#get_zone_records.' if logger
|
|
@@ -1258,29 +1258,29 @@ module OCI
|
|
|
1258
1258
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
1259
1259
|
# (default to 50)
|
|
1260
1260
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
1261
|
-
#
|
|
1262
|
-
# @option opts [String] :id The OCID of a resource.
|
|
1263
|
-
# @option opts [String] :display_name The displayName of a resource.
|
|
1261
|
+
# (default to nil)
|
|
1262
|
+
# @option opts [String] :id The OCID of a resource. (default to nil)
|
|
1263
|
+
# @option opts [String] :display_name The displayName of a resource. (default to nil)
|
|
1264
1264
|
# @option opts [String] :display_name_contains The partial displayName of a resource. Will match any resource whose name
|
|
1265
1265
|
# (case-insensitive) contains the provided value.
|
|
1266
|
-
#
|
|
1266
|
+
# (default to nil)
|
|
1267
1267
|
# @option opts [String] :health_check_monitor_id Search by health check monitor OCID.
|
|
1268
1268
|
# Will match any resource whose health check monitor ID matches the provided value.
|
|
1269
|
-
#
|
|
1269
|
+
# (default to nil)
|
|
1270
1270
|
# @option opts [DateTime] :time_created_greater_than_or_equal_to An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1271
1271
|
# all returned resources were created on or after the indicated time.
|
|
1272
|
-
#
|
|
1272
|
+
# (default to nil)
|
|
1273
1273
|
# @option opts [DateTime] :time_created_less_than An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1274
1274
|
# all returned resources were created before the indicated time.
|
|
1275
|
-
#
|
|
1275
|
+
# (default to nil)
|
|
1276
1276
|
# @option opts [String] :template Search by steering template type.
|
|
1277
1277
|
# Will match any resource whose template type matches the provided value.
|
|
1278
|
-
#
|
|
1279
|
-
# @option opts [String] :lifecycle_state The state of a resource.
|
|
1278
|
+
# (default to nil)
|
|
1279
|
+
# @option opts [String] :lifecycle_state The state of a resource. (default to ACTIVE)
|
|
1280
1280
|
# @option opts [String] :sort_by The field by which to sort steering policies. If unspecified, defaults to `timeCreated`. (default to timeCreated)
|
|
1281
1281
|
# Allowed values are: displayName, timeCreated, template
|
|
1282
1282
|
# @option opts [String] :sort_order The order to sort the resources.
|
|
1283
|
-
#
|
|
1283
|
+
# (default to DESC)
|
|
1284
1284
|
# @return [Response] A Response object with data of type Array<{OCI::Dns::Models::SteeringPolicySummary SteeringPolicySummary}>
|
|
1285
1285
|
def list_steering_policies(compartment_id, opts = {})
|
|
1286
1286
|
logger.debug 'Calling operation DnsClient#list_steering_policies.' if logger
|
|
@@ -1360,32 +1360,32 @@ module OCI
|
|
|
1360
1360
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
1361
1361
|
# (default to 50)
|
|
1362
1362
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
1363
|
-
#
|
|
1364
|
-
# @option opts [String] :id The OCID of a resource.
|
|
1365
|
-
# @option opts [String] :display_name The displayName of a resource.
|
|
1363
|
+
# (default to nil)
|
|
1364
|
+
# @option opts [String] :id The OCID of a resource. (default to nil)
|
|
1365
|
+
# @option opts [String] :display_name The displayName of a resource. (default to nil)
|
|
1366
1366
|
# @option opts [String] :steering_policy_id Search by steering policy OCID.
|
|
1367
1367
|
# Will match any resource whose steering policy ID matches the provided value.
|
|
1368
|
-
#
|
|
1368
|
+
# (default to nil)
|
|
1369
1369
|
# @option opts [String] :zone_id Search by zone OCID.
|
|
1370
1370
|
# Will match any resource whose zone ID matches the provided value.
|
|
1371
|
-
#
|
|
1371
|
+
# (default to nil)
|
|
1372
1372
|
# @option opts [String] :domain Search by domain.
|
|
1373
1373
|
# Will match any record whose domain (case-insensitive) equals the provided value.
|
|
1374
|
-
#
|
|
1374
|
+
# (default to nil)
|
|
1375
1375
|
# @option opts [String] :domain_contains Search by domain.
|
|
1376
1376
|
# Will match any record whose domain (case-insensitive) contains the provided value.
|
|
1377
|
-
#
|
|
1377
|
+
# (default to nil)
|
|
1378
1378
|
# @option opts [DateTime] :time_created_greater_than_or_equal_to An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1379
1379
|
# all returned resources were created on or after the indicated time.
|
|
1380
|
-
#
|
|
1380
|
+
# (default to nil)
|
|
1381
1381
|
# @option opts [DateTime] :time_created_less_than An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1382
1382
|
# all returned resources were created before the indicated time.
|
|
1383
|
-
#
|
|
1384
|
-
# @option opts [String] :lifecycle_state The state of a resource.
|
|
1383
|
+
# (default to nil)
|
|
1384
|
+
# @option opts [String] :lifecycle_state The state of a resource. (default to ACTIVE)
|
|
1385
1385
|
# @option opts [String] :sort_by The field by which to sort steering policy attachments. If unspecified, defaults to `timeCreated`. (default to timeCreated)
|
|
1386
1386
|
# Allowed values are: displayName, timeCreated, domainName
|
|
1387
1387
|
# @option opts [String] :sort_order The order to sort the resources.
|
|
1388
|
-
#
|
|
1388
|
+
# (default to DESC)
|
|
1389
1389
|
# @return [Response] A Response object with data of type Array<{OCI::Dns::Models::SteeringPolicyAttachmentSummary SteeringPolicyAttachmentSummary}>
|
|
1390
1390
|
def list_steering_policy_attachments(compartment_id, opts = {})
|
|
1391
1391
|
logger.debug 'Calling operation DnsClient#list_steering_policy_attachments.' if logger
|
|
@@ -1467,29 +1467,29 @@ module OCI
|
|
|
1467
1467
|
# @option opts [Integer] :limit The maximum number of items to return in a page of the collection.
|
|
1468
1468
|
# (default to 50)
|
|
1469
1469
|
# @option opts [String] :page The value of the `opc-next-page` response header from the previous \"List\" call.
|
|
1470
|
-
#
|
|
1470
|
+
# (default to nil)
|
|
1471
1471
|
# @option opts [String] :name A case-sensitive filter for zone names.
|
|
1472
1472
|
# Will match any zone with a name that equals the provided value.
|
|
1473
|
-
#
|
|
1473
|
+
# (default to nil)
|
|
1474
1474
|
# @option opts [String] :name_contains Search by zone name.
|
|
1475
1475
|
# Will match any zone whose name (case-insensitive) contains the provided value.
|
|
1476
|
-
#
|
|
1476
|
+
# (default to nil)
|
|
1477
1477
|
# @option opts [String] :zone_type Search by zone type, `PRIMARY` or `SECONDARY`.
|
|
1478
1478
|
# Will match any zone whose type equals the provided value.
|
|
1479
|
-
#
|
|
1479
|
+
# (default to nil)
|
|
1480
1480
|
# Allowed values are: PRIMARY, SECONDARY
|
|
1481
1481
|
# @option opts [DateTime] :time_created_greater_than_or_equal_to An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1482
1482
|
# all returned resources were created on or after the indicated time.
|
|
1483
|
-
#
|
|
1483
|
+
# (default to nil)
|
|
1484
1484
|
# @option opts [DateTime] :time_created_less_than An [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
|
|
1485
1485
|
# all returned resources were created before the indicated time.
|
|
1486
|
-
#
|
|
1487
|
-
# @option opts [String] :lifecycle_state The state of a resource.
|
|
1486
|
+
# (default to nil)
|
|
1487
|
+
# @option opts [String] :lifecycle_state The state of a resource. (default to ACTIVE)
|
|
1488
1488
|
# Allowed values are: ACTIVE, CREATING, DELETED, DELETING, FAILED
|
|
1489
1489
|
# @option opts [String] :sort_by The field by which to sort zones. (default to timeCreated)
|
|
1490
1490
|
# Allowed values are: name, zoneType, timeCreated
|
|
1491
1491
|
# @option opts [String] :sort_order The order to sort the resources.
|
|
1492
|
-
#
|
|
1492
|
+
# (default to DESC)
|
|
1493
1493
|
# @return [Response] A Response object with data of type Array<{OCI::Dns::Models::ZoneSummary ZoneSummary}>
|
|
1494
1494
|
def list_zones(compartment_id, opts = {})
|
|
1495
1495
|
logger.debug 'Calling operation DnsClient#list_zones.' if logger
|
|
@@ -1578,14 +1578,14 @@ module OCI
|
|
|
1578
1578
|
# when the field-value is `*`, or having a current representation of the
|
|
1579
1579
|
# target resource that has an entity-tag matching a member of the list of
|
|
1580
1580
|
# entity-tags provided in the field-value.
|
|
1581
|
-
#
|
|
1581
|
+
# (default to nil)
|
|
1582
1582
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1583
1583
|
# conditional on the selected representation's last modification date being
|
|
1584
1584
|
# earlier than or equal to the date provided in the field-value. This
|
|
1585
1585
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1586
1586
|
# agent does not have an entity-tag for the representation.
|
|
1587
|
-
#
|
|
1588
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1587
|
+
# (default to nil)
|
|
1588
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1589
1589
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1590
1590
|
def patch_domain_records(zone_name_or_id, domain, patch_domain_records_details, opts = {})
|
|
1591
1591
|
logger.debug 'Calling operation DnsClient#patch_domain_records.' if logger
|
|
@@ -1651,14 +1651,14 @@ module OCI
|
|
|
1651
1651
|
# when the field-value is `*`, or having a current representation of the
|
|
1652
1652
|
# target resource that has an entity-tag matching a member of the list of
|
|
1653
1653
|
# entity-tags provided in the field-value.
|
|
1654
|
-
#
|
|
1654
|
+
# (default to nil)
|
|
1655
1655
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1656
1656
|
# conditional on the selected representation's last modification date being
|
|
1657
1657
|
# earlier than or equal to the date provided in the field-value. This
|
|
1658
1658
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1659
1659
|
# agent does not have an entity-tag for the representation.
|
|
1660
|
-
#
|
|
1661
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1660
|
+
# (default to nil)
|
|
1661
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1662
1662
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1663
1663
|
def patch_rr_set(zone_name_or_id, domain, rtype, patch_rr_set_details, opts = {})
|
|
1664
1664
|
logger.debug 'Calling operation DnsClient#patch_rr_set.' if logger
|
|
@@ -1729,14 +1729,14 @@ module OCI
|
|
|
1729
1729
|
# when the field-value is `*`, or having a current representation of the
|
|
1730
1730
|
# target resource that has an entity-tag matching a member of the list of
|
|
1731
1731
|
# entity-tags provided in the field-value.
|
|
1732
|
-
#
|
|
1732
|
+
# (default to nil)
|
|
1733
1733
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1734
1734
|
# conditional on the selected representation's last modification date being
|
|
1735
1735
|
# earlier than or equal to the date provided in the field-value. This
|
|
1736
1736
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1737
1737
|
# agent does not have an entity-tag for the representation.
|
|
1738
|
-
#
|
|
1739
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1738
|
+
# (default to nil)
|
|
1739
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1740
1740
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1741
1741
|
def patch_zone_records(zone_name_or_id, patch_zone_records_details, opts = {})
|
|
1742
1742
|
logger.debug 'Calling operation DnsClient#patch_zone_records.' if logger
|
|
@@ -1805,14 +1805,14 @@ module OCI
|
|
|
1805
1805
|
# when the field-value is `*`, or having a current representation of the
|
|
1806
1806
|
# target resource that has an entity-tag matching a member of the list of
|
|
1807
1807
|
# entity-tags provided in the field-value.
|
|
1808
|
-
#
|
|
1808
|
+
# (default to nil)
|
|
1809
1809
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1810
1810
|
# conditional on the selected representation's last modification date being
|
|
1811
1811
|
# earlier than or equal to the date provided in the field-value. This
|
|
1812
1812
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1813
1813
|
# agent does not have an entity-tag for the representation.
|
|
1814
|
-
#
|
|
1815
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1814
|
+
# (default to nil)
|
|
1815
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1816
1816
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1817
1817
|
def update_domain_records(zone_name_or_id, domain, update_domain_records_details, opts = {})
|
|
1818
1818
|
logger.debug 'Calling operation DnsClient#update_domain_records.' if logger
|
|
@@ -1878,14 +1878,14 @@ module OCI
|
|
|
1878
1878
|
# when the field-value is `*`, or having a current representation of the
|
|
1879
1879
|
# target resource that has an entity-tag matching a member of the list of
|
|
1880
1880
|
# entity-tags provided in the field-value.
|
|
1881
|
-
#
|
|
1881
|
+
# (default to nil)
|
|
1882
1882
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1883
1883
|
# conditional on the selected representation's last modification date being
|
|
1884
1884
|
# earlier than or equal to the date provided in the field-value. This
|
|
1885
1885
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1886
1886
|
# agent does not have an entity-tag for the representation.
|
|
1887
|
-
#
|
|
1888
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
1887
|
+
# (default to nil)
|
|
1888
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
1889
1889
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
1890
1890
|
def update_rr_set(zone_name_or_id, domain, rtype, update_rr_set_details, opts = {})
|
|
1891
1891
|
logger.debug 'Calling operation DnsClient#update_rr_set.' if logger
|
|
@@ -1952,13 +1952,13 @@ module OCI
|
|
|
1952
1952
|
# when the field-value is `*`, or having a current representation of the
|
|
1953
1953
|
# target resource that has an entity-tag matching a member of the list of
|
|
1954
1954
|
# entity-tags provided in the field-value.
|
|
1955
|
-
#
|
|
1955
|
+
# (default to nil)
|
|
1956
1956
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
1957
1957
|
# conditional on the selected representation's last modification date being
|
|
1958
1958
|
# earlier than or equal to the date provided in the field-value. This
|
|
1959
1959
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
1960
1960
|
# agent does not have an entity-tag for the representation.
|
|
1961
|
-
#
|
|
1961
|
+
# (default to nil)
|
|
1962
1962
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicy SteeringPolicy}
|
|
1963
1963
|
def update_steering_policy(steering_policy_id, update_steering_policy_details, opts = {})
|
|
1964
1964
|
logger.debug 'Calling operation DnsClient#update_steering_policy.' if logger
|
|
@@ -2020,13 +2020,13 @@ module OCI
|
|
|
2020
2020
|
# when the field-value is `*`, or having a current representation of the
|
|
2021
2021
|
# target resource that has an entity-tag matching a member of the list of
|
|
2022
2022
|
# entity-tags provided in the field-value.
|
|
2023
|
-
#
|
|
2023
|
+
# (default to nil)
|
|
2024
2024
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
2025
2025
|
# conditional on the selected representation's last modification date being
|
|
2026
2026
|
# earlier than or equal to the date provided in the field-value. This
|
|
2027
2027
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
2028
2028
|
# agent does not have an entity-tag for the representation.
|
|
2029
|
-
#
|
|
2029
|
+
# (default to nil)
|
|
2030
2030
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::SteeringPolicyAttachment SteeringPolicyAttachment}
|
|
2031
2031
|
def update_steering_policy_attachment(steering_policy_attachment_id, update_steering_policy_attachment_details, opts = {})
|
|
2032
2032
|
logger.debug 'Calling operation DnsClient#update_steering_policy_attachment.' if logger
|
|
@@ -2090,14 +2090,14 @@ module OCI
|
|
|
2090
2090
|
# when the field-value is `*`, or having a current representation of the
|
|
2091
2091
|
# target resource that has an entity-tag matching a member of the list of
|
|
2092
2092
|
# entity-tags provided in the field-value.
|
|
2093
|
-
#
|
|
2093
|
+
# (default to nil)
|
|
2094
2094
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
2095
2095
|
# conditional on the selected representation's last modification date being
|
|
2096
2096
|
# earlier than or equal to the date provided in the field-value. This
|
|
2097
2097
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
2098
2098
|
# agent does not have an entity-tag for the representation.
|
|
2099
|
-
#
|
|
2100
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
2099
|
+
# (default to nil)
|
|
2100
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
2101
2101
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::Zone Zone}
|
|
2102
2102
|
def update_zone(zone_name_or_id, update_zone_details, opts = {})
|
|
2103
2103
|
logger.debug 'Calling operation DnsClient#update_zone.' if logger
|
|
@@ -2164,14 +2164,14 @@ module OCI
|
|
|
2164
2164
|
# when the field-value is `*`, or having a current representation of the
|
|
2165
2165
|
# target resource that has an entity-tag matching a member of the list of
|
|
2166
2166
|
# entity-tags provided in the field-value.
|
|
2167
|
-
#
|
|
2167
|
+
# (default to nil)
|
|
2168
2168
|
# @option opts [String] :if_unmodified_since The `If-Unmodified-Since` header field makes the request method
|
|
2169
2169
|
# conditional on the selected representation's last modification date being
|
|
2170
2170
|
# earlier than or equal to the date provided in the field-value. This
|
|
2171
2171
|
# field accomplishes the same purpose as If-Match for cases where the user
|
|
2172
2172
|
# agent does not have an entity-tag for the representation.
|
|
2173
|
-
#
|
|
2174
|
-
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to.
|
|
2173
|
+
# (default to nil)
|
|
2174
|
+
# @option opts [String] :compartment_id The OCID of the compartment the resource belongs to. (default to nil)
|
|
2175
2175
|
# @return [Response] A Response object with data of type {OCI::Dns::Models::RecordCollection RecordCollection}
|
|
2176
2176
|
def update_zone_records(zone_name_or_id, update_zone_records_details, opts = {})
|
|
2177
2177
|
logger.debug 'Calling operation DnsClient#update_zone_records.' if logger
|