fn create_client()

in azure-kusto-ingest/src/resource_manager/resource_uri.rs [100:111]


    fn create_client(resource_uri: ResourceUri, client_options: ClientOptions) -> Self {
        QueueServiceClientBuilder::with_location(
            azure_storage::CloudLocation::Custom {
                uri: resource_uri.service_uri,
                account: resource_uri.account_name,
            },
            resource_uri.sas_token,
        )
        .client_options(client_options)
        .build()
        .queue_client(resource_uri.object_name)
    }