# 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=990,
        max_executor_count=419,
        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="VCN",
                    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=9331.657,
            memory_in_gbs=2626.5747),
        executor_shape_config=oci.data_flow.models.ShapeConfig(
            ocpus=9429.482,
            memory_in_gbs=4908.449),
        freeform_tags={
            'EXAMPLE_KEY_DhlDd': 'EXAMPLE_VALUE_zJmN8AcHti7qmseL117Q'},
        defined_tags={
            'EXAMPLE_KEY_pRekm': {
                'EXAMPLE_KEY_xpPFA': 'EXAMPLE--Value'}},
        spark_advanced_configurations={
            'EXAMPLE_KEY_ym6dw': 'EXAMPLE_VALUE_aHwu1xSK7JbunxScIBNm'}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="YA3Y2R3O4Y9J8I21X7RU<unique_ID>")

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

Was this article helpful?