# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
data_flow_client = oci.data_flow.DataFlowClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_sql_endpoint_response = data_flow_client.create_sql_endpoint(
    create_sql_endpoint_details=oci.data_flow.models.CreateSqlEndpointDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        sql_endpoint_version="EXAMPLE-sqlEndpointVersion-Value",
        driver_shape="EXAMPLE-driverShape-Value",
        executor_shape="EXAMPLE-executorShape-Value",
        min_executor_count=944,
        max_executor_count=788,
        metastore_id="ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
        lake_id="ocid1.test.oc1..<unique_ID>EXAMPLE-lakeId-Value",
        warehouse_bucket_uri="EXAMPLE-warehouseBucketUri-Value",
        network_configuration=oci.data_flow.models.SqlEndpointSecureAccessConfig(
            network_type="SECURE_ACCESS",
            access_control_rules=[
                oci.data_flow.models.SecureAccessControlRule(
                    ip_notation="CIDR",
                    value="EXAMPLE-value-Value",
                    vcn_ips="EXAMPLE-vcnIps-Value")],
            public_endpoint_ip="EXAMPLE-publicEndpointIp-Value"),
        description="EXAMPLE-description-Value",
        driver_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=5573.3354,
            memory_in_gbs=6869.8955),
        executor_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=1024.3713,
            memory_in_gbs=887.4774),
        freeform_tags={
            'EXAMPLE_KEY_5R3aG': 'EXAMPLE_VALUE_7L7G1aO27Ua3oLwvVdqg'},
        defined_tags={
            'EXAMPLE_KEY_JvLAH': {
                'EXAMPLE_KEY_q1S16': 'EXAMPLE--Value'}},
        spark_advanced_configurations={
            'EXAMPLE_KEY_HO1Cd': 'EXAMPLE_VALUE_CiNIQ2x0xSl31fVkJm7R'}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="ZVX4MUHOG2RPUGGMCWXT<unique_ID>")

# Get the data from response
print(create_sql_endpoint_response.data)

Was this article helpful?