How to use the azure-mgmt-kusto.azure.mgmt.kusto.models.DataConnectionValidation function in azure-mgmt-kusto

To help you get started, we’ve selected a few azure-mgmt-kusto examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-kusto / azure / mgmt / kusto / operations / data_connections_operations.py View on Github external
:param data_connection_name: The name of the data connection.
        :type data_connection_name: str
        :param properties: The data connection properties to validate.
        :type properties: ~azure.mgmt.kusto.models.DataConnection
        :param dict custom_headers: headers that will be added to the request
        :param bool raw: returns the direct response alongside the
         deserialized response
        :param operation_config: :ref:`Operation configuration
         overrides`.
        :return: DataConnectionValidationListResult or ClientRawResponse if
         raw=true
        :rtype: ~azure.mgmt.kusto.models.DataConnectionValidationListResult or
         ~msrest.pipeline.ClientRawResponse
        :raises: :class:`CloudError`
        """
        parameters = models.DataConnectionValidation(data_connection_name=data_connection_name, properties=properties)

        # Construct URL
        url = self.data_connection_validation_method.metadata['url']
        path_format_arguments = {
            'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
            'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'),
            'databaseName': self._serialize.url("database_name", database_name, 'str'),
            'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
        }
        url = self._client.format_url(url, **path_format_arguments)

        # Construct parameters
        query_parameters = {}
        query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')

        # Construct headers