Disabling SSL verification in the Azure Document Intelligence client
Pass `connection_verify=False` when creating the client: `DocumentIntelligenceClient(endpoint=..., credential=..., connection_verify=False)`. This is documented in the azure-core configuration options and was confirmed by the Azure SDK maintainer on this issue. Note the security caveat: with verific…